summaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/cbi.js2
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/firewall.js12
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/form.js24
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/luci.js2
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/network.js2
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/tools/widgets.js18
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/ui.js14
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/validation.js17
-rw-r--r--modules/luci-base/po/ar/base.po407
-rw-r--r--modules/luci-base/po/bg/base.po407
-rw-r--r--modules/luci-base/po/bn_BD/base.po407
-rw-r--r--modules/luci-base/po/ca/base.po407
-rw-r--r--modules/luci-base/po/cs/base.po407
-rw-r--r--modules/luci-base/po/da/base.po9291
-rw-r--r--modules/luci-base/po/de/base.po407
-rw-r--r--modules/luci-base/po/el/base.po407
-rw-r--r--modules/luci-base/po/en/base.po407
-rw-r--r--modules/luci-base/po/es/base.po414
-rw-r--r--modules/luci-base/po/fi/base.po476
-rw-r--r--modules/luci-base/po/fr/base.po477
-rw-r--r--modules/luci-base/po/he/base.po407
-rw-r--r--modules/luci-base/po/hi/base.po407
-rw-r--r--modules/luci-base/po/hu/base.po407
-rw-r--r--modules/luci-base/po/it/base.po423
-rw-r--r--modules/luci-base/po/ja/base.po463
-rw-r--r--modules/luci-base/po/ko/base.po407
-rw-r--r--modules/luci-base/po/mr/base.po407
-rw-r--r--modules/luci-base/po/ms/base.po407
-rw-r--r--modules/luci-base/po/nb_NO/base.po624
-rw-r--r--modules/luci-base/po/nl/base.po407
-rw-r--r--modules/luci-base/po/pl/base.po412
-rw-r--r--modules/luci-base/po/pt/base.po479
-rw-r--r--modules/luci-base/po/pt_BR/base.po413
-rw-r--r--modules/luci-base/po/ro/base.po1230
-rw-r--r--modules/luci-base/po/ru/base.po407
-rw-r--r--modules/luci-base/po/sk/base.po421
-rw-r--r--modules/luci-base/po/sv/base.po415
-rw-r--r--modules/luci-base/po/templates/base.pot407
-rw-r--r--modules/luci-base/po/tr/base.po407
-rw-r--r--modules/luci-base/po/uk/base.po407
-rw-r--r--modules/luci-base/po/vi/base.po407
-rw-r--r--modules/luci-base/po/zh_Hans/base.po465
-rw-r--r--modules/luci-base/po/zh_Hant/base.po407
-rw-r--r--modules/luci-base/root/www/index.html23
-rw-r--r--modules/luci-mod-battstatus/po/ro/battstatus.po15
-rw-r--r--modules/luci-mod-dashboard/po/da/dashboard.po220
-rw-r--r--modules/luci-mod-dashboard/po/it/dashboard.po8
-rw-r--r--modules/luci-mod-dashboard/po/ro/dashboard.po14
-rw-r--r--modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js2
-rw-r--r--modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js51
50 files changed, 17833 insertions, 7141 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/cbi.js b/modules/luci-base/htdocs/luci-static/resources/cbi.js
index aef64d577e..9200954d1e 100644
--- a/modules/luci-base/htdocs/luci-static/resources/cbi.js
+++ b/modules/luci-base/htdocs/luci-static/resources/cbi.js
@@ -777,7 +777,7 @@ function cbi_update_table(table, data, placeholder) {
var td = trow.appendChild(E('td', {
'class': titles[i].className,
'data-title': (text !== '') ? text : null
- }, row[i] || ''));
+ }, (row[i] != null) ? row[i] : ''));
td.classList.remove('th');
td.classList.add('td');
diff --git a/modules/luci-base/htdocs/luci-static/resources/firewall.js b/modules/luci-base/htdocs/luci-static/resources/firewall.js
index 4fa4954ba6..a682af46d0 100644
--- a/modules/luci-base/htdocs/luci-static/resources/firewall.js
+++ b/modules/luci-base/htdocs/luci-static/resources/firewall.js
@@ -224,7 +224,17 @@ Firewall = L.Class.extend({
}, this));
},
- getColorForName: getColorForName
+ getColorForName: getColorForName,
+
+ getZoneColorStyle: function(zone) {
+ var hex = (zone instanceof Zone) ? zone.getColor() : getColorForName((zone != null && zone != '*') ? zone : null);
+
+ return '--zone-color-rgb:%d, %d, %d; background-color:rgb(var(--zone-color-rgb))'.format(
+ parseInt(hex.substring(1, 3), 16),
+ parseInt(hex.substring(3, 5), 16),
+ parseInt(hex.substring(5, 7), 16)
+ );
+ },
});
diff --git a/modules/luci-base/htdocs/luci-static/resources/form.js b/modules/luci-base/htdocs/luci-static/resources/form.js
index 4016007742..cf09a1da90 100644
--- a/modules/luci-base/htdocs/luci-static/resources/form.js
+++ b/modules/luci-base/htdocs/luci-static/resources/form.js
@@ -601,7 +601,7 @@ var CBIMap = CBIAbstractElement.extend(/** @lends LuCI.form.Map.prototype */ {
if (!silent) {
ui.showModal(_('Save error'), [
E('p', {}, [ _('An error occurred while saving the form:') ]),
- E('p', {}, [ E('em', { 'style': 'white-space:pre' }, [ e.message ]) ]),
+ E('p', {}, [ E('em', { 'style': 'white-space:pre-wrap' }, [ e.message ]) ]),
E('div', { 'class': 'right' }, [
E('button', { 'class': 'cbi-button', 'click': ui.hideModal }, [ _('Dismiss') ])
])
@@ -1911,6 +1911,20 @@ var CBIAbstractValue = CBIAbstractElement.extend(/** @lends LuCI.form.AbstractVa
},
/**
+ * Returns the current validation error for this input.
+ *
+ * @param {string} section_id
+ * The configuration section ID
+ *
+ * @returns {string}
+ * The validation error at this time
+ */
+ getValidationError: function (section_id) {
+ var elem = this.getUIElement(section_id);
+ return elem ? elem.getValidationError() : '';
+ },
+
+ /**
* Test whether the option element is currently active.
*
* An element is active when it is not hidden due to unsatisfied dependency
@@ -1971,7 +1985,9 @@ var CBIAbstractValue = CBIAbstractElement.extend(/** @lends LuCI.form.AbstractVa
if (active && !this.isValid(section_id)) {
var title = this.stripTags(this.title).trim();
- return Promise.reject(new TypeError(_('Option "%s" contains an invalid input value.').format(title || this.option)));
+ var error = this.getValidationError(section_id);
+ return Promise.reject(new TypeError(
+ _('Option "%s" contains an invalid input value.').format(title || this.option) + ' ' + error));
}
if (fval != '' && fval != null) {
@@ -3877,7 +3893,9 @@ var CBIFlagValue = CBIValue.extend(/** @lends LuCI.form.FlagValue.prototype */ {
if (!this.isValid(section_id)) {
var title = this.stripTags(this.title).trim();
- return Promise.reject(new TypeError(_('Option "%s" contains an invalid input value.').format(title || this.option)));
+ var error = this.getValidationError(section_id);
+ return Promise.reject(new TypeError(
+ _('Option "%s" contains an invalid input value.').format(title || this.option) + ' ' + error));
}
if (fval == this.default && (this.optional || this.rmempty))
diff --git a/modules/luci-base/htdocs/luci-static/resources/luci.js b/modules/luci-base/htdocs/luci-static/resources/luci.js
index 5699c9eb92..fcab3a4018 100644
--- a/modules/luci-base/htdocs/luci-static/resources/luci.js
+++ b/modules/luci-base/htdocs/luci-static/resources/luci.js
@@ -764,7 +764,7 @@
if (opt.content != null) {
switch (typeof(opt.content)) {
case 'function':
- content = opt.content(xhr);
+ content = opt.content(opt.xhr);
break;
case 'object':
diff --git a/modules/luci-base/htdocs/luci-static/resources/network.js b/modules/luci-base/htdocs/luci-static/resources/network.js
index 2a402bcd57..8c9ee255ff 100644
--- a/modules/luci-base/htdocs/luci-static/resources/network.js
+++ b/modules/luci-base/htdocs/luci-static/resources/network.js
@@ -1149,7 +1149,7 @@ Network = baseclass.extend(/** @lends LuCI.network.prototype */ {
if (name == null)
return null;
- if (_state.netdevs.hasOwnProperty(name) || isWifiIfname(name))
+ if (_state.netdevs.hasOwnProperty(name))
return this.instantiateDevice(name);
var netid = getWifiNetidBySid(name);
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 35a4dc8ec9..10b65be8ec 100644
--- a/modules/luci-base/htdocs/luci-static/resources/tools/widgets.js
+++ b/modules/luci-base/htdocs/luci-static/resources/tools/widgets.js
@@ -62,27 +62,27 @@ var CBIZoneSelect = form.ListValue.extend({
if (this.allowlocal) {
choices[''] = E('span', {
'class': 'zonebadge',
- 'style': 'background-color:' + firewall.getColorForName(null)
+ 'style': firewall.getZoneColorStyle(null)
}, [
E('strong', _('Device')),
(this.allowany || this.allowlocal)
- ? ' (%s)'.format(this.option != 'dest' ? _('output') : _('input')) : ''
+ ? E('span', ' (%s)'.format(this.option != 'dest' ? _('output') : _('input'))) : ''
]);
}
else if (!this.multiple && (this.rmempty || this.optional)) {
choices[''] = E('span', {
'class': 'zonebadge',
- 'style': 'background-color:' + firewall.getColorForName(null)
+ 'style': firewall.getZoneColorStyle(null)
}, E('em', _('unspecified')));
}
if (this.allowany) {
choices['*'] = E('span', {
'class': 'zonebadge',
- 'style': 'background-color:' + firewall.getColorForName(null)
+ 'style': firewall.getZoneColorStyle(null)
}, [
E('strong', _('Any zone')),
- (this.allowany && this.allowlocal && !isOutputOnly) ? ' (%s)'.format(_('forward')) : ''
+ (this.allowany && this.allowlocal && !isOutputOnly) ? E('span', ' (%s)'.format(_('forward'))) : ''
]);
}
@@ -125,7 +125,7 @@ var CBIZoneSelect = form.ListValue.extend({
choices[name] = E('span', {
'class': 'zonebadge',
- 'style': 'background-color:' + zone.getColor()
+ 'style': firewall.getZoneColorStyle(zone)
}, [ E('strong', name) ].concat(ifaces));
}
@@ -188,11 +188,11 @@ var CBIZoneSelect = form.ListValue.extend({
}
L.dom.content(emptyval.querySelector('span'), [
- E('strong', _('Device')), ' (%s)'.format(_('input'))
+ E('strong', _('Device')), E('span', ' (%s)'.format(_('input')))
]);
L.dom.content(anyval.querySelector('span'), [
- E('strong', _('Any zone')), ' (%s)'.format(_('forward'))
+ E('strong', _('Any zone')), E('span', ' (%s)'.format(_('forward')))
]);
anyval.parentNode.insertBefore(emptyval, anyval);
@@ -283,7 +283,7 @@ var CBIZoneForwards = form.DummyValue.extend({
return E('label', {
'class': 'zonebadge cbi-tooltip-container',
- 'style': 'background-color:' + zone.getColor()
+ 'style': firewall.getZoneColorStyle(zone)
}, [
E('strong', name),
E('div', { 'class': 'cbi-tooltip' }, ifaces)
diff --git a/modules/luci-base/htdocs/luci-static/resources/ui.js b/modules/luci-base/htdocs/luci-static/resources/ui.js
index 9cc62c12db..9f3e74b935 100644
--- a/modules/luci-base/htdocs/luci-static/resources/ui.js
+++ b/modules/luci-base/htdocs/luci-static/resources/ui.js
@@ -156,6 +156,18 @@ var UIElement = baseclass.extend(/** @lends LuCI.ui.AbstractElement.prototype */
},
/**
+ * Returns the current validation error
+ *
+ * @instance
+ * @memberof LuCI.ui.AbstractElement
+ * @returns {string}
+ * The validation error at this time
+ */
+ getValidationError: function() {
+ return this.validationError || '';
+ },
+
+ /**
* Force validation of the current input value.
*
* Usually input validation is automatically triggered by various DOM events
@@ -243,10 +255,12 @@ var UIElement = baseclass.extend(/** @lends LuCI.ui.AbstractElement.prototype */
this.node.addEventListener('validation-success', L.bind(function(ev) {
this.validState = true;
+ this.validationError = '';
}, this));
this.node.addEventListener('validation-failure', L.bind(function(ev) {
this.validState = false;
+ this.validationError = ev.detail.message;
}, this));
},
diff --git a/modules/luci-base/htdocs/luci-static/resources/validation.js b/modules/luci-base/htdocs/luci-static/resources/validation.js
index fccce4ab0b..6dddf964fb 100644
--- a/modules/luci-base/htdocs/luci-static/resources/validation.js
+++ b/modules/luci-base/htdocs/luci-static/resources/validation.js
@@ -61,9 +61,15 @@ var Validator = baseclass.extend({
valid = this.vstack[0].apply(this, this.vstack[1]);
if (valid !== true) {
- this.field.setAttribute('data-tooltip', _('Expecting: %s').format(this.error));
+ var message = _('Expecting: %s').format(this.error);
+ this.field.setAttribute('data-tooltip', message);
this.field.setAttribute('data-tooltip-style', 'error');
- this.field.dispatchEvent(new CustomEvent('validation-failure', { bubbles: true }));
+ this.field.dispatchEvent(new CustomEvent('validation-failure', {
+ bubbles: true,
+ detail: {
+ message: message
+ }
+ }));
return false;
}
@@ -74,7 +80,12 @@ var Validator = baseclass.extend({
this.assert(false, valid);
this.field.setAttribute('data-tooltip', valid);
this.field.setAttribute('data-tooltip-style', 'error');
- this.field.dispatchEvent(new CustomEvent('validation-failure', { bubbles: true }));
+ this.field.dispatchEvent(new CustomEvent('validation-failure', {
+ bubbles: true,
+ detail: {
+ message: valid
+ }
+ }));
return false;
}
diff --git a/modules/luci-base/po/ar/base.po b/modules/luci-base/po/ar/base.po
index 45df50e987..a8f07413e2 100644
--- a/modules/luci-base/po/ar/base.po
+++ b/modules/luci-base/po/ar/base.po
@@ -19,7 +19,7 @@ msgstr "%.1f ديسيبل"
msgid "%d Bit"
msgstr "%d بت"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d حقل غير صحيح"
@@ -55,19 +55,19 @@ msgid "-- Additional Field --"
msgstr "--ميدانية إضافية --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- اختر من فضلك --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- إعداد--"
@@ -215,7 +215,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "يوجد دليل بنفس الاسم."
@@ -223,7 +223,7 @@ msgstr "يوجد دليل بنفس الاسم."
msgid "A new login is required since the authentication session expired."
msgstr "يجب الدخول مجدداً لئن صلاحية جلسة قد انتهت."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -399,11 +399,11 @@ msgstr "موازنة الحمل التكيفية(balance-alb, 6)"
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "موازنة تحميل الإرسال التكيفي (balance-tlb, 5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -628,7 +628,7 @@ msgstr "السماح بفحص ميزات النظام"
msgid "Allow the <em>root</em> user to login with password"
msgstr "اسمح للمستخدم <em> root </ em> بتسجيل الدخول باستخدام كلمة المرور"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "عناوين IP المسموح بها"
@@ -786,16 +786,16 @@ msgstr ""
msgid "Apply backup?"
msgstr "تطبيق النسخ الاحتياطي؟"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "فشل تطبيق الطلب بالحالة <code> h% </code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "تطبيق ملحوظ"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "جاري تطبيق تغييرات التكوين ... %ds"
@@ -850,6 +850,7 @@ msgid "Authoritative"
msgstr "موثوق"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "التفويض مطلوب"
@@ -1067,8 +1068,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr "سياسة البث (البث ، 3)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "تصفح…"
@@ -1098,8 +1099,8 @@ msgstr "مخبأ"
msgid "Call failed"
msgstr "الاتصال فشل"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1173,11 +1174,11 @@ msgstr ""
msgid "Chain"
msgstr "سلسلة"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "التغييرات"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "تم التراجع عن التغييرات."
@@ -1277,7 +1278,7 @@ msgstr "العميل"
msgid "Client ID to send when requesting DHCP"
msgstr "معرّف العميل لإرساله عند طلب DHCP"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1344,16 +1345,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "حساب المجموع الاختباري الصادر (اختياري)."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "إعدادات"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "تم تطبيق تغييرات التكوين."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "تم التراجع عن تغييرات التكوين!"
@@ -1459,7 +1460,7 @@ msgstr "تم حفظ المحتويات."
msgid "Continue"
msgstr "يكمل"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1699,11 +1700,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1715,7 +1716,7 @@ msgstr "احدف"
msgid "Delete key"
msgstr "احدف المفتاح"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "فشل طلب الحذف: %s"
@@ -1729,11 +1730,11 @@ msgstr "الفاصل الزمني لرسالة إشارة حركة التسلي
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "الوصف"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "إلغاء"
@@ -1806,7 +1807,7 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "الجهاز لا يمكن الوصول إليه!"
@@ -1827,7 +1828,7 @@ msgstr "التشخيص"
msgid "Dial number"
msgstr "رقم الاتصال الهاتفي"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "الدليل"
@@ -1901,10 +1902,14 @@ msgstr "فشلت محاولة قطع الاتصال"
msgid "Disconnection attempt failed."
msgstr "فشلت محاولة قطع الاتصال."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1991,7 +1996,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "هل تريد حقًا حذف \" %s\"؟"
@@ -2003,7 +2008,7 @@ msgstr "هل تريد حقًا حذف مفتاح SSH التالي؟"
msgid "Do you really want to erase all settings?"
msgstr "هل تريد حقًا مسح جميع الإعدادات؟"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "هل تريد حقًا حذف الدليل \" s%\" بشكل متكرر؟"
@@ -2045,7 +2050,7 @@ msgstr "تحميل mtdblock"
msgid "Downstream SNR offset"
msgstr "تعويض مصب SNR"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "اسحب لإعادة ترتيب"
@@ -2095,9 +2100,9 @@ msgstr "طول EA بت"
msgid "EAP-Method"
msgstr "طريقة EAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2144,6 +2149,10 @@ msgstr "طوارئ"
msgid "Enable"
msgstr "شغل"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2345,11 +2354,11 @@ msgstr "وضع التغليف"
msgid "Encryption"
msgstr "التشفير"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr "مضيف نقطة النهاية"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr "منفذ نقطة النهاية"
@@ -2451,7 +2460,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2531,7 +2540,7 @@ msgstr "بروتوكول FT"
msgid "Failed to change the system password."
msgstr "فشل تغيير كلمة مرور النظام."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "فشل التأكيد على التطبيق خلال %ds ، في انتظار التراجع…"
@@ -2539,7 +2548,7 @@ msgstr "فشل التأكيد على التطبيق خلال %ds ، في انت
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "فشل تنفيذ الإجراء\"%‎/etc/init.d/s% s\""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "ملف"
@@ -2552,7 +2561,7 @@ msgstr ""
"1.2.3.4' لخوادم <abbr title = \"Domain Name System\"> DNS </abbr> الخاصة "
"بالمجال أو للخوادم."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "الملف لا يمكن الوصول إليه"
@@ -2566,7 +2575,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr "الملف محلي <abbr title=\"Domain Name System\">DNS</abbr>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "اسم الملف"
@@ -2675,7 +2684,7 @@ msgstr "عمليات الفلاش"
msgid "Flashing…"
msgstr "تتبيت الصورة …"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2859,7 +2868,7 @@ msgstr "توليد التكوين"
msgid "Generate Key"
msgstr "توليد مفتاح"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2871,7 +2880,7 @@ msgstr "إنشاء PMK محليًا"
msgid "Generate archive"
msgstr "إنشاء أرشيف"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2887,21 +2896,20 @@ msgstr "الاعدادات العامة"
msgid "Global network options"
msgstr "خيارات الشبكة العالمية"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "انتقل إلى تكوين كلمة المرور ..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3055,7 +3063,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "إخفاء <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3240,7 +3248,7 @@ msgstr "بوابة IPv4"
msgid "IPv4 netmask"
msgstr "قناع الشبكة IPv4"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr "شبكة IPv4 في تدوين العنوان / قناع الشبكة"
@@ -3341,7 +3349,7 @@ msgstr "طول تعيين IPv6"
msgid "IPv6 gateway"
msgstr "بوابة IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr "شبكة IPv6 في تدوين العنوان / قناع الشبكة"
@@ -3412,7 +3420,7 @@ msgstr "IPv6-over-IPv4 (6to4)"
msgid "Identity"
msgstr "هوية"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3451,7 +3459,7 @@ msgstr ""
"إذا تم تحديد ذلك ، فقم بتركيب الجهاز من خلال تسمية القسم بدلاً من عقدة الجهاز "
"الثابت"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3769,6 +3777,8 @@ msgid "Invalid hexadecimal value"
msgstr "قيمة سداسية عشرية غير صالحة"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "اسم المستخدم و / أو كلمة المرور غير صالحة! حاول مرة اخرى."
@@ -3788,7 +3798,7 @@ msgstr ""
"يبدو أنك تحاول وميض صورة لا تتناسب مع ذاكرة الفلاش ، يرجى التحقق من ملف "
"الصورة!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3964,7 +3974,7 @@ msgstr ""
"للتشغيل البيني. قد يتم تقليل كفاءة وقت الهواء بشكل كبير حيث يتم استخدامها. "
"يوصى بعدم السماح بمعدلات 802.11b حيثما أمكن ذلك."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "عنوان تفسيري:"
@@ -4084,17 +4094,19 @@ msgstr "حمولة"
msgid "Load Average"
msgstr "متوسط الحمولة"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "تحميل محتويات الدليل …"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "جارٍ تحميل العرض…"
@@ -4202,6 +4214,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr "الشبكة المنطقية التي سيتم إضافة النفق إليها (جسور) (اختياري)."
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "تسجيل الدخول"
@@ -4557,7 +4570,7 @@ msgstr "مراقب"
msgid "More Characters"
msgstr "المزيد من الأحرف"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "المزيد…"
@@ -4662,8 +4675,8 @@ msgstr "مجال NT"
msgid "NTP server candidates"
msgstr "المرشحين لخادم NTP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4761,7 +4774,7 @@ msgstr "اسم الواجهة الجديد …"
msgid "Next »"
msgstr "التالي \""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4791,7 +4804,6 @@ msgstr "لا يوجد NAT-T"
msgid "No RX signal"
msgstr "لا توجد إشارة RX"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4822,7 +4834,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "لا توجد إدخالات في هذا الدليل"
@@ -4862,7 +4874,7 @@ msgstr "لا مزيد من المستخدمين متاحين ، لا يمكن ح
msgid "No negative cache"
msgstr "لا توجد ذاكرة تخزين مؤقت سلبية"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -5030,7 +5042,7 @@ msgstr "طريق على الارتباط"
msgid "One of hostname or MAC address must be specified!"
msgstr "يجب تحديد اسم مضيف أو عنوان mac!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "واحد مما يلي: s%"
@@ -5094,20 +5106,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "تردد التشغيل"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr "يحتوي الخيار \" s%\" على قيمة إدخال غير صالحة."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr "يجب ألا يكون الخيار \" s%\" فارغًا."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "تغير الخيار"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "تمت إزالة الخيار"
@@ -5138,7 +5150,7 @@ msgstr ""
"1: 2'. عند استلام بادئة IPv6 (مثل \"a: b: c: d ::\") من خادم مفوض ، استخدم "
"اللاحقة (مثل \":: 1\") لتشكيل عنوان IPv6 ('a: b: c: d: : 1 ') للواجهة."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
@@ -5146,11 +5158,11 @@ msgstr ""
"خياري. مفتاح مشفر باستخدام Base64. يضيف طبقة إضافية من تشفير المفتاح "
"المتماثل لمقاومة ما بعد الكم."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr "خياري. إنشاء مسارات لعناوين IP المسموح بها لهذا النظير."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "خياري. وصف الأقران."
@@ -5158,13 +5170,13 @@ msgstr "خياري. وصف الأقران."
msgid "Optional. Do not create host routes to peers."
msgstr "خياري. لا تقم بإنشاء مسارات مضيفة للأقران."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr "خياري. مضيف الأقران. يتم حل الأسماء قبل إحضار الواجهة."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5175,11 +5187,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "خياري. وحدة النقل القصوى لواجهة النفق."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "خياري. بوابة الأقران."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5324,7 +5336,7 @@ msgstr "تجاوز الجدول المستخدم للتوجيهات الداخل
msgid "Overview"
msgstr "نظرة عامة"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "هل تريد الكتابة فوق الملف الموجود \" %s\"؟"
@@ -5459,6 +5471,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "كلمة المرور"
@@ -5548,6 +5561,10 @@ msgstr "عنوان النظير مفقود"
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "الأقران"
@@ -5575,7 +5592,7 @@ msgstr "إجراء إعادة تعيين"
msgid "Permission denied"
msgstr "طلب الاذن مرفوض"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "مثابرة على البقاء حيا"
@@ -5606,7 +5623,7 @@ msgstr "الحزم."
msgid "Please enter your username and password."
msgstr "الرجاء إدخال اسم المستخدم وكلمة المرور الخاصة بك."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "الرجاء تحديد الملف المراد تحميله."
@@ -5626,7 +5643,7 @@ msgstr ""
msgid "Port status:"
msgstr "حالة المنفذ:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr "النفي المحتمل ل: s%"
@@ -5654,7 +5671,7 @@ msgstr "تفويض البادئة"
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "مفتاح مشترك مسبقًا"
@@ -5749,7 +5766,7 @@ msgstr "توفير شبكة جديدة"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Pseudo Ad-Hoc (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "المفتاح العمومي"
@@ -5773,8 +5790,8 @@ msgstr "البادئة العامة موجهة إلى هذا الجهاز لتو
msgid "QMI Cellular"
msgstr "QMI الخلوية"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -6010,7 +6027,7 @@ msgstr "مطلوب لبعض مزودي خدمة الإنترنت ، على سب
msgid "Required. Base64-encoded private key for this interface."
msgstr "مطلوب. المفتاح الخاص بترميز Base64 لهذه الواجهة."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr "مطلوب. تشفير Base64 للمفتاح العام للنظير."
@@ -6140,8 +6157,8 @@ msgstr ""
"ابحث عن اسم المضيف بناءً على الشبكة الفرعية المطلوبة في حالة توفر عدة عناوين "
"IP"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "كشف / إخفاء كلمة المرور"
@@ -6149,19 +6166,19 @@ msgstr "كشف / إخفاء كلمة المرور"
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "يرجع"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "التغيرات المرتدة"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr "فشل طلب العودة مع الحالة <code> h% </code>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "جارٍ إعادة التكوين …"
@@ -6184,7 +6201,7 @@ msgstr "تحضير الجذر"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr "سياسة Round-Robin (Balance-rr، 0)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "توجيه عناوين IP المسموح بها"
@@ -6290,7 +6307,7 @@ msgstr "خادم SSTP"
msgid "SWAP"
msgstr "ذاكرة المبادلة"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6301,7 +6318,7 @@ msgid "Save"
msgstr "إحفض"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "حفظ وتطبيق"
@@ -6327,11 +6344,11 @@ msgstr "مسح"
msgid "Scheduled Tasks"
msgstr "المهام المجدولة"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "تمت إضافة القسم"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "تمت إزالة القسم"
@@ -6348,9 +6365,9 @@ msgstr ""
"حدد \"فرض الترقية\" وميض الصورة حتى إذا فشل فحص تنسيق الصورة. استخدمه فقط "
"إذا كنت متأكدًا من أن البرنامج الثابت صحيح ومخصص لجهازك!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "حدد ملفًا …"
@@ -6536,7 +6553,7 @@ msgstr "معدل تحديث الإشارة"
msgid "Signal:"
msgstr "الإشارة:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "مقاس"
@@ -6906,7 +6923,7 @@ msgstr "أولوية البدء"
msgid "Start refresh"
msgstr "ابدأ التحديث"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "بدء تطبيق التكوين …"
@@ -6978,6 +6995,10 @@ msgstr "وقف WPS"
msgid "Stop refresh"
msgstr "توقف عن التحديث"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -7040,7 +7061,7 @@ msgstr "بروتوكول التبديل"
msgid "Switch to CIDR list notation"
msgstr "قم بالتبديل إلى تدوين قائمة CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "ارتباط رمزي"
@@ -7077,7 +7098,6 @@ msgstr "خصائص النظام"
msgid "System log buffer size"
msgstr "حجم المخزن المؤقت لسجل النظام"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7131,11 +7151,15 @@ msgstr ""
msgid "Target network"
msgstr "الشبكة المستهدفة"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "إنهاء"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7252,7 +7276,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7280,7 +7304,7 @@ msgid ""
"network"
msgstr "يجب تحديد SSID الصحيح يدويًا عند الانضمام إلى شبكة لاسلكية مخفية"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7380,7 +7404,7 @@ msgstr "طول بادئة IPv4 بالبتات ، ويستخدم الباقي ف
msgid "The length of the IPv6 prefix in bits"
msgstr "طول بادئة IPv6 بالبتات"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7407,6 +7431,10 @@ msgstr "قناع شبكة IPv4 المحلي"
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr "عنوان IPv6 المحلي الذي تم إنشاء النفق من خلاله (اختياري)."
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7549,11 +7577,11 @@ msgstr ""
msgid "There are no active leases"
msgstr "لا توجد إيجارات نشطة"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "لا توجد تغييرات لتطبيقها"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7646,8 +7674,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr "لا يمكن استخدام هذا الخيار نظرًا لعدم تثبيت حزمة ca-bundle."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7918,7 +7946,7 @@ msgstr "قم بإلغاء التحميل"
msgid "Unnamed key"
msgstr "مفتاح بدون اسم"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "تغييرات غير محفوظة"
@@ -7948,7 +7976,7 @@ msgstr "يشتغل"
msgid "Up Delay"
msgstr "تأخير التشغيل"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "تحميل"
@@ -7965,21 +7993,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "تحميل أرشيف ..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "رفع ملف"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "رفع ملف…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "فشل طلب التحميل: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "جارٍ تحميل الملف …"
@@ -8183,6 +8211,7 @@ msgstr "مفتاح المستخدم (مشفر PEM)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "اسم المستخدم"
@@ -8486,7 +8515,7 @@ msgstr "اكتب سجل النظام إلى ملف"
msgid "XOR policy (balance-xor, 2)"
msgstr "سياسة XOR (Balance-xor، 2)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8513,7 +8542,7 @@ msgstr ""
"إعادة تشغيل الجهاز. <br /> <strong> تحذير: إذا عطلت البرامج النصية الأساسية "
"للبادئ مثل \"الشبكة\" ، فقد يتعذر الوصول إلى جهازك! </ strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8676,7 +8705,7 @@ msgstr "الازدواج الكامل"
msgid "half-duplex"
msgstr "نصف مزدوج"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "قيمة مشفرة سداسية عشرية"
@@ -8701,11 +8730,11 @@ msgstr "تجاهل"
msgid "input"
msgstr "إدخال"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "مفتاح بين 8 و 63 حرفًا"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "مفتاح مكون من 5 أو 13 حرفًا"
@@ -8738,12 +8767,12 @@ msgstr "لا"
msgid "no link"
msgstr "لا يوجد ارتباط"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "قيمة غير فارغة"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "لا شيء"
@@ -8777,11 +8806,11 @@ msgstr ""
msgid "output"
msgstr "الحاصل"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "قيمة عشرية موجبة"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "قيمة عدد صحيح موجب"
@@ -8832,7 +8861,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "قيمة فريدة"
@@ -8850,7 +8879,7 @@ msgstr "غير معروف"
msgid "unlimited"
msgstr "غير محدود"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8871,175 +8900,175 @@ msgstr "غير محدد - أو - إنشاء:"
msgid "untagged"
msgstr "بدون علامات"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "عنوان IP صالح"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "عنوان IP صالح أو بادئة"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "IPv4 CIDR صالح"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "عنوان IPv4 صالح"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "عنوان IPv4 أو شبكة صالحة"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "عنوان IPv4 صالح: المنفذ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "شبكة IPv4 صالحة"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "IPv4 أو IPv6 CIDR صالح"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "قيمة بادئة IPv4 صالحة (0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "IPv6 CIDR صالح"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "عنوان IPv6 صالح"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "عنوان IPv6 صالح أو بادئة"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "معرف مضيف IPv6 صالح"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "شبكة IPv6 صالحة"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "قيمة بادئة IPv6 صالحة (0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "عنوان MAC صالح"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "معرف UCI صالح"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "معرف UCI صالح أو اسم مضيف أو عنوان IP"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "عنوان صالح: المنفذ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "تاريخ صالح (YYYY-MM-DD)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "قيمة عشرية صالحة"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "مفتاح WEP سداسي عشري صالح"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "مفتاح WPA سداسي عشري صالح"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "مضيف صالح: المنفذ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "اسم مضيف صالح"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "اسم مضيف أو عنوان IP صالح"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "قيمة عدد صحيح"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "شبكة صالحة في تدوين العنوان / قناع الشبكة"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "رقم هاتف صالح (0-9 ، \"*\" ، \"#\" ، \"!\" أو \".\")"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "منفذ أو نطاق منفذ صالح (port1-port2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "قيمة منفذ صالحة"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "الوقت الصالح (HH: MM: SS)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "قيمة بين %d و%d حرف"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "قيمة بين %f و %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "قيمة أكبر أو تساوي %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "قيمة أصغر أو تساوي %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "قيمة مع %d حرف"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "قيمة تحتوي على d% حرفًا على الأقل"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "قيمة بحد أقصى d% حرف"
diff --git a/modules/luci-base/po/bg/base.po b/modules/luci-base/po/bg/base.po
index dfae26e350..456bc71ad5 100644
--- a/modules/luci-base/po/bg/base.po
+++ b/modules/luci-base/po/bg/base.po
@@ -18,7 +18,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Бита"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d невалидни полета"
@@ -54,19 +54,19 @@ msgid "-- Additional Field --"
msgstr "-- Допълнително поле --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Моля изберете --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- персонализиран --"
@@ -213,7 +213,7 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-Сървис"
msgid "A configuration for the device \"%s\" already exists"
msgstr "Конфигурация за устройството „%s“ вече съществува"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Вече съществува директория със същото име."
@@ -222,7 +222,7 @@ msgid "A new login is required since the authentication session expired."
msgstr ""
"Необходимо е ново влизане, тъй като сесията за удостоверяване е изтекла."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -396,11 +396,11 @@ msgstr ""
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -622,7 +622,7 @@ msgstr ""
msgid "Allow the <em>root</em> user to login with password"
msgstr "Разрешаване на потребителя <em>root</em> да влезе с парола"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "Разрешени IPs"
@@ -778,16 +778,16 @@ msgstr ""
msgid "Apply backup?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr ""
@@ -842,6 +842,7 @@ msgid "Authoritative"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr ""
@@ -1059,8 +1060,8 @@ msgstr "Вдигнае на бриджа дори при липса на зак
msgid "Broadcast policy (broadcast, 3)"
msgstr "Броудкаст политика (броудкаст, 3)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Преглед…"
@@ -1090,8 +1091,8 @@ msgstr "Кеширана"
msgid "Call failed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1157,11 +1158,11 @@ msgstr ""
msgid "Chain"
msgstr "Чейн"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Промени"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "Промените бяха върнати."
@@ -1264,7 +1265,7 @@ msgstr "Клиент"
msgid "Client ID to send when requesting DHCP"
msgstr "ИД на клиент за изпращане при заявяване на DHCP"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1328,16 +1329,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "Изчисляване на изходяща контролна сума (по избор)."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Конфигурация"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "Промените по конфигурацията са приложени."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "Промените в конфигурацията са отменени!"
@@ -1435,7 +1436,7 @@ msgstr "Съдържанието е записано."
msgid "Continue"
msgstr "Продължи"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1669,11 +1670,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1685,7 +1686,7 @@ msgstr "Изтрий"
msgid "Delete key"
msgstr "Премахни ключ"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "Неуспешна заявка за изтриване: %s"
@@ -1699,11 +1700,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Описание"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Размаркирай"
@@ -1776,7 +1777,7 @@ msgstr "Устройството не е налично"
msgid "Device type"
msgstr "Тип на устройството"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Устройството е недостъпно!"
@@ -1797,7 +1798,7 @@ msgstr "Диагностики"
msgid "Dial number"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr ""
@@ -1874,10 +1875,14 @@ msgstr "Опитът за прекъсване на връзката е неус
msgid "Disconnection attempt failed."
msgstr "Опитът за прекъсване е неуспешен."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1966,7 +1971,7 @@ msgstr ""
"Не изпращай никакви <abbr title=\"Router Advertisement, ICMPv6 Type "
"134\">RA</abbr> съобщения на този интерфейс."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "Наистина ли искате да изтриете %s ?"
@@ -1978,7 +1983,7 @@ msgstr "Наистина ли искате да изтриете следния
msgid "Do you really want to erase all settings?"
msgstr "Наистина ли искате да изтриете всички настройки?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Наистина ли искате да изтриете рекурсивно директорията \"%s\" ?"
@@ -2020,7 +2025,7 @@ msgstr "Изтегляне на mtdblock"
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "Плъзнете, за да пренаредите"
@@ -2071,9 +2076,9 @@ msgstr "Дължина на EA-бита"
msgid "EAP-Method"
msgstr "EAP-метод"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2122,6 +2127,10 @@ msgstr "Спешен случай"
msgid "Enable"
msgstr "Разрешаване"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
#, fuzzy
msgid ""
@@ -2324,12 +2333,12 @@ msgstr ""
msgid "Encryption"
msgstr "Криптиране"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
#, fuzzy
msgid "Endpoint Host"
msgstr "Хост на крайна точка"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
#, fuzzy
msgid "Endpoint Port"
msgstr "Порт на крайна точка"
@@ -2435,7 +2444,7 @@ msgstr "Очакване на валиден IPv6 адрес"
msgid "Expecting two priority values separated by a colon"
msgstr "Очакване на две стойности на приоритет, разделени с двоеточие"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2515,7 +2524,7 @@ msgstr ""
msgid "Failed to change the system password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2523,7 +2532,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr ""
@@ -2533,7 +2542,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr ""
@@ -2545,7 +2554,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr ""
@@ -2652,7 +2661,7 @@ msgstr ""
msgid "Flashing…"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2834,7 +2843,7 @@ msgstr ""
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2846,7 +2855,7 @@ msgstr ""
msgid "Generate archive"
msgstr "Създай архив"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2862,21 +2871,20 @@ msgstr "Глобални настройки"
msgid "Global network options"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3029,7 +3037,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3214,7 +3222,7 @@ msgstr ""
msgid "IPv4 netmask"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3315,7 +3323,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3385,7 +3393,7 @@ msgstr ""
msgid "Identity"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3420,7 +3428,7 @@ msgid ""
"device node"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3726,6 +3734,8 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Невалидно потребителско име и/или парола! Моля, опитайте отново."
@@ -3745,7 +3755,7 @@ msgstr ""
"Изглежда, че се опитвате да флашнете фирмуеър, което не се побира във флаш "
"паметта, моля, проверете файла с изображението!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3918,7 +3928,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr ""
@@ -4028,17 +4038,19 @@ msgstr ""
msgid "Load Average"
msgstr "Средно натоварване"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr ""
@@ -4144,6 +4156,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr ""
@@ -4496,7 +4509,7 @@ msgstr ""
msgid "More Characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr ""
@@ -4602,8 +4615,8 @@ msgstr ""
msgid "NTP server candidates"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4699,7 +4712,7 @@ msgstr ""
msgid "Next »"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4729,7 +4742,6 @@ msgstr ""
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4760,7 +4772,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr ""
@@ -4800,7 +4812,7 @@ msgstr ""
msgid "No negative cache"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4965,7 +4977,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr ""
@@ -5029,20 +5041,20 @@ msgstr ""
msgid "Operating frequency"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr ""
@@ -5068,17 +5080,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr ""
@@ -5086,13 +5098,13 @@ msgstr ""
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5103,11 +5115,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5248,7 +5260,7 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5383,6 +5395,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr ""
@@ -5472,6 +5485,10 @@ msgstr ""
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr ""
@@ -5499,7 +5516,7 @@ msgstr ""
msgid "Permission denied"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
@@ -5530,7 +5547,7 @@ msgstr ""
msgid "Please enter your username and password."
msgstr "Моля, въведете потребителско име и парола."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr ""
@@ -5550,7 +5567,7 @@ msgstr ""
msgid "Port status:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5578,7 +5595,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr ""
@@ -5669,7 +5686,7 @@ msgstr ""
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Публичен ключ"
@@ -5694,8 +5711,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5926,7 +5943,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -6054,8 +6071,8 @@ msgid ""
"received if multiple IPs are available."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr ""
@@ -6063,19 +6080,19 @@ msgstr ""
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr ""
@@ -6098,7 +6115,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6203,7 +6220,7 @@ msgstr ""
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6214,7 +6231,7 @@ msgid "Save"
msgstr "Запази"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Запиши & Приложи"
@@ -6240,11 +6257,11 @@ msgstr ""
msgid "Scheduled Tasks"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr ""
@@ -6259,9 +6276,9 @@ msgid ""
"your device!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr ""
@@ -6443,7 +6460,7 @@ msgstr ""
msgid "Signal:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Размер"
@@ -6779,7 +6796,7 @@ msgstr ""
msgid "Start refresh"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr ""
@@ -6848,6 +6865,10 @@ msgstr ""
msgid "Stop refresh"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -6910,7 +6931,7 @@ msgstr ""
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr ""
@@ -6947,7 +6968,6 @@ msgstr ""
msgid "System log buffer size"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7001,11 +7021,15 @@ msgstr ""
msgid "Target network"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7120,7 +7144,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7146,7 +7170,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7236,7 +7260,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7263,6 +7287,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7389,11 +7417,11 @@ msgstr ""
msgid "There are no active leases"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7473,8 +7501,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7746,7 +7774,7 @@ msgstr ""
msgid "Unnamed key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr ""
@@ -7776,7 +7804,7 @@ msgstr ""
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Качване"
@@ -7791,21 +7819,21 @@ msgstr ""
msgid "Upload archive..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr ""
@@ -7992,6 +8020,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Потребителско име"
@@ -8283,7 +8312,7 @@ msgstr ""
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8306,7 +8335,7 @@ msgid ""
"scripts like \"network\", your device might become inaccessible!</strong>"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8469,7 +8498,7 @@ msgstr ""
msgid "half-duplex"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr ""
@@ -8494,11 +8523,11 @@ msgstr ""
msgid "input"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr ""
@@ -8531,12 +8560,12 @@ msgstr "не"
msgid "no link"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr ""
@@ -8570,11 +8599,11 @@ msgstr ""
msgid "output"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr ""
@@ -8625,7 +8654,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr ""
@@ -8643,7 +8672,7 @@ msgstr "неизвестен"
msgid "unlimited"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8664,175 +8693,175 @@ msgstr ""
msgid "untagged"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr ""
diff --git a/modules/luci-base/po/bn_BD/base.po b/modules/luci-base/po/bn_BD/base.po
index 051736f36e..67398fc650 100644
--- a/modules/luci-base/po/bn_BD/base.po
+++ b/modules/luci-base/po/bn_BD/base.po
@@ -18,7 +18,7 @@ msgstr "%.1f ডিবি"
msgid "%d Bit"
msgstr "%d বিট"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d ফিল্ড(গুলো) সঠিক নয়"
@@ -54,19 +54,19 @@ msgid "-- Additional Field --"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr ""
@@ -213,7 +213,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr ""
@@ -221,7 +221,7 @@ msgstr ""
msgid "A new login is required since the authentication session expired."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -395,11 +395,11 @@ msgstr ""
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -621,7 +621,7 @@ msgstr ""
msgid "Allow the <em>root</em> user to login with password"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "অনুমোদিত আইপি"
@@ -777,16 +777,16 @@ msgstr ""
msgid "Apply backup?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr ""
@@ -841,6 +841,7 @@ msgid "Authoritative"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr ""
@@ -1053,8 +1054,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr ""
@@ -1084,8 +1085,8 @@ msgstr ""
msgid "Call failed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1151,11 +1152,11 @@ msgstr ""
msgid "Chain"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr ""
@@ -1248,7 +1249,7 @@ msgstr ""
msgid "Client ID to send when requesting DHCP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1310,16 +1311,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "কনফিগারেশন"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr ""
@@ -1417,7 +1418,7 @@ msgstr ""
msgid "Continue"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1647,11 +1648,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1663,7 +1664,7 @@ msgstr ""
msgid "Delete key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr ""
@@ -1677,11 +1678,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "বর্ণনা"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr ""
@@ -1754,7 +1755,7 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr ""
@@ -1775,7 +1776,7 @@ msgstr ""
msgid "Dial number"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr ""
@@ -1847,10 +1848,14 @@ msgstr ""
msgid "Disconnection attempt failed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1929,7 +1934,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -1941,7 +1946,7 @@ msgstr ""
msgid "Do you really want to erase all settings?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr ""
@@ -1983,7 +1988,7 @@ msgstr ""
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr ""
@@ -2028,9 +2033,9 @@ msgstr ""
msgid "EAP-Method"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2075,6 +2080,10 @@ msgstr ""
msgid "Enable"
msgstr "সক্রিয় করুন"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2273,11 +2282,11 @@ msgstr ""
msgid "Encryption"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2378,7 +2387,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2456,7 +2465,7 @@ msgstr ""
msgid "Failed to change the system password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2464,7 +2473,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr ""
@@ -2474,7 +2483,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr ""
@@ -2486,7 +2495,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr ""
@@ -2593,7 +2602,7 @@ msgstr ""
msgid "Flashing…"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2775,7 +2784,7 @@ msgstr ""
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2787,7 +2796,7 @@ msgstr ""
msgid "Generate archive"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2803,21 +2812,20 @@ msgstr ""
msgid "Global network options"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -2970,7 +2978,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3155,7 +3163,7 @@ msgstr ""
msgid "IPv4 netmask"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3256,7 +3264,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3326,7 +3334,7 @@ msgstr ""
msgid "Identity"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3361,7 +3369,7 @@ msgid ""
"device node"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3667,6 +3675,8 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr ""
@@ -3684,7 +3694,7 @@ msgid ""
"flash memory, please verify the image file!"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3857,7 +3867,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr ""
@@ -3967,17 +3977,19 @@ msgstr ""
msgid "Load Average"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr ""
@@ -4083,6 +4095,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr ""
@@ -4433,7 +4446,7 @@ msgstr ""
msgid "More Characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr ""
@@ -4537,8 +4550,8 @@ msgstr ""
msgid "NTP server candidates"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4634,7 +4647,7 @@ msgstr ""
msgid "Next »"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4664,7 +4677,6 @@ msgstr ""
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4695,7 +4707,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr ""
@@ -4735,7 +4747,7 @@ msgstr ""
msgid "No negative cache"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4900,7 +4912,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr ""
@@ -4964,20 +4976,20 @@ msgstr ""
msgid "Operating frequency"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr ""
@@ -5003,17 +5015,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr ""
@@ -5021,13 +5033,13 @@ msgstr ""
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5038,11 +5050,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5183,7 +5195,7 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5318,6 +5330,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr ""
@@ -5407,6 +5420,10 @@ msgstr ""
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "পিয়ার"
@@ -5434,7 +5451,7 @@ msgstr ""
msgid "Permission denied"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
@@ -5465,7 +5482,7 @@ msgstr ""
msgid "Please enter your username and password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr ""
@@ -5485,7 +5502,7 @@ msgstr ""
msgid "Port status:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5513,7 +5530,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr ""
@@ -5604,7 +5621,7 @@ msgstr ""
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "পাবলিক কী"
@@ -5625,8 +5642,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5857,7 +5874,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -5985,8 +6002,8 @@ msgid ""
"received if multiple IPs are available."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr ""
@@ -5994,19 +6011,19 @@ msgstr ""
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr ""
@@ -6029,7 +6046,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6134,7 +6151,7 @@ msgstr ""
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6145,7 +6162,7 @@ msgid "Save"
msgstr "সংরক্ষণ করুন"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr ""
@@ -6171,11 +6188,11 @@ msgstr ""
msgid "Scheduled Tasks"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr ""
@@ -6190,9 +6207,9 @@ msgid ""
"your device!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr ""
@@ -6374,7 +6391,7 @@ msgstr ""
msgid "Signal:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr ""
@@ -6710,7 +6727,7 @@ msgstr ""
msgid "Start refresh"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr ""
@@ -6779,6 +6796,10 @@ msgstr ""
msgid "Stop refresh"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -6841,7 +6862,7 @@ msgstr ""
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr ""
@@ -6878,7 +6899,6 @@ msgstr ""
msgid "System log buffer size"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -6932,11 +6952,15 @@ msgstr ""
msgid "Target network"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7051,7 +7075,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7077,7 +7101,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7165,7 +7189,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7192,6 +7216,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7318,11 +7346,11 @@ msgstr ""
msgid "There are no active leases"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7402,8 +7430,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7671,7 +7699,7 @@ msgstr ""
msgid "Unnamed key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr ""
@@ -7701,7 +7729,7 @@ msgstr ""
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr ""
@@ -7716,21 +7744,21 @@ msgstr ""
msgid "Upload archive..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr ""
@@ -7917,6 +7945,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr ""
@@ -8208,7 +8237,7 @@ msgstr ""
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8231,7 +8260,7 @@ msgid ""
"scripts like \"network\", your device might become inaccessible!</strong>"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8394,7 +8423,7 @@ msgstr ""
msgid "half-duplex"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr ""
@@ -8419,11 +8448,11 @@ msgstr ""
msgid "input"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr ""
@@ -8456,12 +8485,12 @@ msgstr ""
msgid "no link"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr ""
@@ -8495,11 +8524,11 @@ msgstr ""
msgid "output"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr ""
@@ -8550,7 +8579,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr ""
@@ -8568,7 +8597,7 @@ msgstr "অজ্ঞাত"
msgid "unlimited"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8589,175 +8618,175 @@ msgstr ""
msgid "untagged"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr ""
diff --git a/modules/luci-base/po/ca/base.po b/modules/luci-base/po/ca/base.po
index b9e39c6295..3896daf3a5 100644
--- a/modules/luci-base/po/ca/base.po
+++ b/modules/luci-base/po/ca/base.po
@@ -22,7 +22,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d camp(s) invàlid(s)"
@@ -58,19 +58,19 @@ msgid "-- Additional Field --"
msgstr "-- Camp addicional --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Escolliu, si us plau --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- personalitzat --"
@@ -221,7 +221,7 @@ msgstr "Servei <abbr title=\"Router Advertisement\">RA</abbr>"
msgid "A configuration for the device \"%s\" already exists"
msgstr "Ja existeix una configuració pel dispositiu\"%s\""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Ja existeix un directori amb aquest mateix nom."
@@ -229,7 +229,7 @@ msgstr "Ja existeix un directori amb aquest mateix nom."
msgid "A new login is required since the authentication session expired."
msgstr "Cal un inici de sessió nou ja que la sessió d'autenticació ha caducat."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -408,11 +408,11 @@ msgstr "Equilibri de càrrega adaptatiu (balance-alb, 6)"
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "Equilibri de càrrega de transmissió adaptativa (balance-tlb, 5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -644,7 +644,7 @@ msgstr ""
msgid "Allow the <em>root</em> user to login with password"
msgstr "Permetre l'accés de l'usurari <em>root</em> amb contrasenya"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "IPs permeses"
@@ -800,16 +800,16 @@ msgstr ""
msgid "Apply backup?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr ""
@@ -864,6 +864,7 @@ msgid "Authoritative"
msgstr "Autoritzada"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Es requereix autenticació"
@@ -1079,8 +1080,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr ""
@@ -1110,8 +1111,8 @@ msgstr "En cau"
msgid "Call failed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1180,11 +1181,11 @@ msgstr ""
msgid "Chain"
msgstr "Cadena"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Canvis"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr ""
@@ -1285,7 +1286,7 @@ msgstr "Client"
msgid "Client ID to send when requesting DHCP"
msgstr "ID de client a enviar en les sol·licituds DHCP"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1347,16 +1348,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Configuració"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr ""
@@ -1454,7 +1455,7 @@ msgstr ""
msgid "Continue"
msgstr "Continua"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1687,11 +1688,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1703,7 +1704,7 @@ msgstr "Suprimeix"
msgid "Delete key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr ""
@@ -1717,11 +1718,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Descripció"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Deselecciona"
@@ -1794,7 +1795,7 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr ""
@@ -1815,7 +1816,7 @@ msgstr "Diagnòstics"
msgid "Dial number"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Directori"
@@ -1889,10 +1890,14 @@ msgstr ""
msgid "Disconnection attempt failed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1977,7 +1982,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -1989,7 +1994,7 @@ msgstr ""
msgid "Do you really want to erase all settings?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr ""
@@ -2031,7 +2036,7 @@ msgstr ""
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr ""
@@ -2079,9 +2084,9 @@ msgstr ""
msgid "EAP-Method"
msgstr "Mètode EAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2126,6 +2131,10 @@ msgstr "Emergència"
msgid "Enable"
msgstr "Activa"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2324,11 +2333,11 @@ msgstr "Mode d'encapsulació"
msgid "Encryption"
msgstr "Xifratge"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2429,7 +2438,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2507,7 +2516,7 @@ msgstr ""
msgid "Failed to change the system password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2515,7 +2524,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Fitxer"
@@ -2525,7 +2534,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "No hi ha accés al fitxer"
@@ -2539,7 +2548,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr "fitxer <abbr title=\"Domain Name System\">DNS</abbr> local"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "Nom de fitxer"
@@ -2646,7 +2655,7 @@ msgstr "Operacions a la memòria flaix"
msgid "Flashing…"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2828,7 +2837,7 @@ msgstr ""
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2840,7 +2849,7 @@ msgstr ""
msgid "Generate archive"
msgstr "Genera l'arxiu"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2858,21 +2867,20 @@ msgstr "Configuració global"
msgid "Global network options"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Vés a la configuració de contrasenya"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3028,7 +3036,7 @@ msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr ""
"No mostris l'<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3213,7 +3221,7 @@ msgstr "Passarel·la IPv4"
msgid "IPv4 netmask"
msgstr "Màscara de xarxa IPv4"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3314,7 +3322,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr "Passarel·la IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3384,7 +3392,7 @@ msgstr "IPv6-sobre-IPv4 (6to4)"
msgid "Identity"
msgstr "Identitat"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3419,7 +3427,7 @@ msgid ""
"device node"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3731,6 +3739,8 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Usuari i/o contrasenya invàlids! Si us plau prova-ho de nou."
@@ -3751,7 +3761,7 @@ msgstr ""
"Sembla que intentes actualitzar una imatge que no hi cap a la memòria flaix, "
"si us plau verifica el fitxer d'imatge!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3924,7 +3934,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "Llegenda:"
@@ -4036,17 +4046,19 @@ msgstr "Càrrega"
msgid "Load Average"
msgstr "Càrrega mitjana"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr ""
@@ -4152,6 +4164,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Entra"
@@ -4506,7 +4519,7 @@ msgstr "Monitor"
msgid "More Characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "Més…"
@@ -4612,8 +4625,8 @@ msgstr ""
msgid "NTP server candidates"
msgstr "Candidats de servidor NTP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4709,7 +4722,7 @@ msgstr ""
msgid "Next »"
msgstr "Següent"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4739,7 +4752,6 @@ msgstr ""
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4770,7 +4782,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr ""
@@ -4810,7 +4822,7 @@ msgstr ""
msgid "No negative cache"
msgstr "Sense memòria cau negativa"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4975,7 +4987,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr "Cal especificar o el nom de host o l'adreça MAC!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr ""
@@ -5039,20 +5051,20 @@ msgstr ""
msgid "Operating frequency"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Opció canviada"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Opció treta"
@@ -5078,17 +5090,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr ""
@@ -5096,13 +5108,13 @@ msgstr ""
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5113,11 +5125,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5258,7 +5270,7 @@ msgstr ""
msgid "Overview"
msgstr "Visió de conjunt"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5393,6 +5405,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Contrasenya"
@@ -5482,6 +5495,10 @@ msgstr ""
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr ""
@@ -5509,7 +5526,7 @@ msgstr "Executa un reinici"
msgid "Permission denied"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
@@ -5540,7 +5557,7 @@ msgstr "Paquets"
msgid "Please enter your username and password."
msgstr "Si us plau entra el teu nom d'usuari i contrasenya."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr ""
@@ -5560,7 +5577,7 @@ msgstr ""
msgid "Port status:"
msgstr "Estatus de port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5588,7 +5605,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr ""
@@ -5679,7 +5696,7 @@ msgstr ""
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Pseudo Ad-Hoc (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr ""
@@ -5700,8 +5717,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5934,7 +5951,7 @@ msgstr "Alguns ISP ho requereixen, per exemple el Charter amb DOCSIS 3"
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -6062,8 +6079,8 @@ msgid ""
"received if multiple IPs are available."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Mostra/amaga la contrasenya"
@@ -6071,19 +6088,19 @@ msgstr "Mostra/amaga la contrasenya"
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Reverteix"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr ""
@@ -6106,7 +6123,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6213,7 +6230,7 @@ msgstr ""
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6224,7 +6241,7 @@ msgid "Save"
msgstr "Desar"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Desa i aplica"
@@ -6250,11 +6267,11 @@ msgstr "Escaneja"
msgid "Scheduled Tasks"
msgstr "Tasques programades"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Secció afegida"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Secció treta"
@@ -6269,9 +6286,9 @@ msgid ""
"your device!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr ""
@@ -6453,7 +6470,7 @@ msgstr ""
msgid "Signal:"
msgstr "Senyal:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Mida"
@@ -6789,7 +6806,7 @@ msgstr "Prioritat d'inici"
msgid "Start refresh"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr ""
@@ -6858,6 +6875,10 @@ msgstr ""
msgid "Stop refresh"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -6920,7 +6941,7 @@ msgstr "Protocol de commutador"
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr ""
@@ -6957,7 +6978,6 @@ msgstr "Propietats del sistema"
msgid "System log buffer size"
msgstr "Mida de la memòria intermèdia per al registre del sistema"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7011,11 +7031,15 @@ msgstr ""
msgid "Target network"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Acaba"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7130,7 +7154,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7158,7 +7182,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7249,7 +7273,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr "La longitud del prefix IPv6 en bits"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7276,6 +7300,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7412,11 +7440,11 @@ msgstr ""
msgid "There are no active leases"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7509,8 +7537,8 @@ msgstr ""
"Aquesta opció no es pot utilitzar perquè el paquet ca-bundle no està "
"instal·lat."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7782,7 +7810,7 @@ msgstr "Desmunta"
msgid "Unnamed key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Canvis sense desar"
@@ -7812,7 +7840,7 @@ msgstr "Amunt"
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Puja"
@@ -7827,21 +7855,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Puja un arxiu..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr ""
@@ -8030,6 +8058,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Nom d'usuari"
@@ -8323,7 +8352,7 @@ msgstr "Escriure el registre del sistema al fitxer"
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8350,7 +8379,7 @@ msgstr ""
"Si desactives scripts d'inici necessaris com el \"network\", el teu "
"dispositiu pot resultar inaccessible!</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8515,7 +8544,7 @@ msgstr ""
msgid "half-duplex"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr ""
@@ -8540,11 +8569,11 @@ msgstr "ignora"
msgid "input"
msgstr "entrada"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr ""
@@ -8577,12 +8606,12 @@ msgstr "no"
msgid "no link"
msgstr "cap enllaç"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "cap"
@@ -8616,11 +8645,11 @@ msgstr ""
msgid "output"
msgstr "sortida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr ""
@@ -8671,7 +8700,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr ""
@@ -8689,7 +8718,7 @@ msgstr "desconegut"
msgid "unlimited"
msgstr "il·limitat"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8710,175 +8739,175 @@ msgstr "sense espeficicar -o- crear:"
msgid "untagged"
msgstr "sense etiquetar"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr ""
diff --git a/modules/luci-base/po/cs/base.po b/modules/luci-base/po/cs/base.po
index 8d20d30dfd..366d2add05 100644
--- a/modules/luci-base/po/cs/base.po
+++ b/modules/luci-base/po/cs/base.po
@@ -19,7 +19,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d bitů"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d neplatných kolonek"
@@ -55,19 +55,19 @@ msgid "-- Additional Field --"
msgstr "-- Doplňující pole --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Vyberte --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- vlastní --"
@@ -214,7 +214,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr "Konfigurace zařízení \"%s\" již existuje"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Složka se stejným názvem už existuje."
@@ -223,7 +223,7 @@ msgid "A new login is required since the authentication session expired."
msgstr ""
"Je třeba se znovu přihlásit, protože platnost relace přihlášení skončila."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -405,11 +405,11 @@ msgstr "Adaptivní vyvažování zátěže (balance-alb, 6)"
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "Adaptivní vyvažování přenosové zátěže (balance-tlb, 5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -635,7 +635,7 @@ msgstr "Povolit zkoumání funkcí systému"
msgid "Allow the <em>root</em> user to login with password"
msgstr "Povolit <em>root</em> účtu přihlášení bez nastaveného hesla"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "IP adresy, ze kterých umožnit přístup"
@@ -793,16 +793,16 @@ msgstr ""
msgid "Apply backup?"
msgstr "Aplikovat zálohu?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "Provádění požadavku selhalo se stavem <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "Použít nezkontrolované"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "Aplikuji změny nastavení… %ds"
@@ -863,6 +863,7 @@ msgid "Authoritative"
msgstr "Autoritativní"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Vyžadováno ověření se"
@@ -1082,8 +1083,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Procházet…"
@@ -1115,8 +1116,8 @@ msgstr "Mezipaměť"
msgid "Call failed"
msgstr "Volání se nezdařilo"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1182,11 +1183,11 @@ msgstr ""
msgid "Chain"
msgstr "Řetěz"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Změny"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "Změny byly vzaty zpět."
@@ -1290,7 +1291,7 @@ msgstr "Klient"
msgid "Client ID to send when requesting DHCP"
msgstr "Identifikátor klienta, odesílaný v DHCP požadavku"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1359,16 +1360,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "Vypočítat odchozí kontrolní součet (volitelné)."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Nastavení"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "Změny nastavení byly provedeny."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "Změny nastavení byly vráceny zpět!"
@@ -1466,7 +1467,7 @@ msgstr "Obsah byl uložen."
msgid "Continue"
msgstr "Pokračovat"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1705,11 +1706,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr "Delegovat prefix IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1721,7 +1722,7 @@ msgstr "Odstranit"
msgid "Delete key"
msgstr "Smazat klíč"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "Odstranění se nezdařilo: %s"
@@ -1735,11 +1736,11 @@ msgstr "Interval zprávy Delivery Traffic Indication"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Popis"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Zrušit označení"
@@ -1812,7 +1813,7 @@ msgstr "Zařízení není přítomné"
msgid "Device type"
msgstr "Druh zařízení"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Zařízení nedostupné!"
@@ -1833,7 +1834,7 @@ msgstr "Diagnostika"
msgid "Dial number"
msgstr "Vytáčené číslo"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Adresář"
@@ -1907,10 +1908,14 @@ msgstr "Pokud o odpojení se nezdařil"
msgid "Disconnection attempt failed."
msgstr "Pokud o odpojení se nezdařil."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1997,7 +2002,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "Opravdu chcete „%s“ smazat?"
@@ -2009,7 +2014,7 @@ msgstr "Opravdu chcete smazat následující SSH klíč?"
msgid "Do you really want to erase all settings?"
msgstr "Opravdu chcete smazat veškeré nastavení?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Opravdu chcete smazat složku „%s“ a tím i vše, co obsahuje?"
@@ -2051,7 +2056,7 @@ msgstr "Stáhnout si mtdblock"
msgid "Downstream SNR offset"
msgstr "Downstream SNR offset"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "Pořadí změníte přetažením"
@@ -2102,9 +2107,9 @@ msgstr "EA bitová délka"
msgid "EAP-Method"
msgstr "Metoda EAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2151,6 +2156,10 @@ msgstr "Záchrana"
msgid "Enable"
msgstr "Povolit"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2353,11 +2362,11 @@ msgstr "Režim zapouzdřování"
msgid "Encryption"
msgstr "Šifrování"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr "Koncový bod"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr "Port koncového bodu"
@@ -2460,7 +2469,7 @@ msgstr "Očekávání platné adresy IPv6"
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2540,7 +2549,7 @@ msgstr "FT protokol"
msgid "Failed to change the system password."
msgstr "Nepodařilo se změnit systémové heslo."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
#, fuzzy
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2551,7 +2560,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Nepodařilo se vykonat „/etc/init.d/%s %s“ akce: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Soubor"
@@ -2564,7 +2573,7 @@ msgstr ""
"nebo <code>'server=1.2.3.4'</code> pro konkrétní doménové nebo plně "
"nadřazené <abbr title=\"Domain Name System\">DNS</abbr> servery."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "Soubor není přístupný"
@@ -2578,7 +2587,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr "Soubor s nadřazenými resolvery."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "Název souboru"
@@ -2687,7 +2696,7 @@ msgstr "Operace nad flash pamětí"
msgid "Flashing…"
msgstr "Flashování…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2872,7 +2881,7 @@ msgstr "Vytvořit konfiguraci"
msgid "Generate Key"
msgstr "Vygenerovat klíč"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2884,7 +2893,7 @@ msgstr "Generovat klíč PMK lokálně"
msgid "Generate archive"
msgstr "Vytvorǐt archív"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2900,21 +2909,20 @@ msgstr "Obecná nastavení"
msgid "Global network options"
msgstr "Globální možnosti sítě"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Přejít na nastavení hesla..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3069,7 +3077,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "Skrývat <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3254,7 +3262,7 @@ msgstr "IPv4 brána"
msgid "IPv4 netmask"
msgstr "IPv4 maska sítě"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr "Síť IPv4 v notaci adresa/maska sítě"
@@ -3356,7 +3364,7 @@ msgstr "Velikost přídělu IPv6"
msgid "IPv6 gateway"
msgstr "IPv6 brána"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr "Síť IPv6 v notaci adresa/maska sítě"
@@ -3428,7 +3436,7 @@ msgstr "IPv6-over-IPv4 (6to4)"
msgid "Identity"
msgstr "Identita"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3463,7 +3471,7 @@ msgid ""
"device node"
msgstr "Namísto pevného uzlu zařízení připojovat pomocí názvu oddílu"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3782,6 +3790,8 @@ msgid "Invalid hexadecimal value"
msgstr "Neplatná šestnáctková hodnota"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Špatné uživatelské jméno a/nebo heslo! Prosím zkuste to znovu."
@@ -3801,7 +3811,7 @@ msgstr ""
"Vypadadá to, že se pokoušíte zapsat obraz, který se nevejde do flash paměti. "
"Prosím ověřte soubor s obrazem!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3978,7 +3988,7 @@ msgstr ""
"efektivita. Doporučuje se, pokud možno, nepovolovat rychlosti přenosu "
"802.11b."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "Legenda:"
@@ -4105,17 +4115,19 @@ msgstr "Zátěž"
msgid "Load Average"
msgstr "Průměrná zátěž"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "Načítání obsahu adresáře…"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "Načítání zobrazení…"
@@ -4225,6 +4237,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Přihlásit"
@@ -4587,7 +4600,7 @@ msgstr "Sledování"
msgid "More Characters"
msgstr "Více znaků"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "Více…"
@@ -4694,8 +4707,8 @@ msgstr "NT doména"
msgid "NTP server candidates"
msgstr "Kandidáti NTP serveru"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4793,7 +4806,7 @@ msgstr "Nový název rozhraní…"
msgid "Next »"
msgstr "Další »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4823,7 +4836,6 @@ msgstr "Žádné NAT-T"
msgid "No RX signal"
msgstr "Žádný signál RX"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4854,7 +4866,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "V tomto adresáři nejsou žádné položky"
@@ -4894,7 +4906,7 @@ msgstr ""
msgid "No negative cache"
msgstr "Žádná negativní mezipaměť"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -5064,7 +5076,7 @@ msgstr "Link-local trasa"
msgid "One of hostname or MAC address must be specified!"
msgstr "Jedno jméno nebo mac adresa, musí být zadáno!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "Jeden z následujících: %s"
@@ -5128,20 +5140,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "Provozní frekvence"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr "Volba \"%s\" obsahuje neplatnou vstupní hodnotu."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr "Volba \"%s\" nesmí být prázdná."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Volba změněna"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Volba odstraněna"
@@ -5173,7 +5185,7 @@ msgstr ""
"b:c:d::\"), použijte k vytvoření IPv6 adresy (\"a:b:c:d::1\") pro dané "
"rozhraní suffix (např. '::1')."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
@@ -5181,12 +5193,12 @@ msgstr ""
"Volitelné. Předsdílený klíč v kódování Base64. Přidává další vrstvu "
"symetrické kryptografie pro post-kvantovou odolnost."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
#, fuzzy
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr "Volitelné. Vytvořte trasy pro povolené IP adresy této protistrany."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "Volitelné. Popis protistrany."
@@ -5194,7 +5206,7 @@ msgstr "Volitelné. Popis protistrany."
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
@@ -5202,7 +5214,7 @@ msgstr ""
"Volitelné. Hostitel protistrany. Názvy jsou překládány před spuštěním "
"síťového rozhraní."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5213,11 +5225,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "Volitelné. Maximální přenosová jednotka (MTU) tunelového rozhraní."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "Volitelné. Port protistrany."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5363,7 +5375,7 @@ msgstr "Přepsat tabulku, používanou pro vnitřní cesty"
msgid "Overview"
msgstr "Přehled"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "Přepsat existující soubor \"%s\"?"
@@ -5498,6 +5510,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Heslo"
@@ -5587,6 +5600,10 @@ msgstr "Adresa protistrany chybí"
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "Protistrany"
@@ -5614,7 +5631,7 @@ msgstr "Provést reset"
msgid "Permission denied"
msgstr "Přístup zamítnut"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "Trvalé udržování spojení (Keep Alive)"
@@ -5645,7 +5662,7 @@ msgstr "paketů"
msgid "Please enter your username and password."
msgstr "Prosím vložte vaše uživatelské jméno a heslo."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "Vyberte soubor, který chcete nahrát."
@@ -5665,7 +5682,7 @@ msgstr ""
msgid "Port status:"
msgstr "Stav portu:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr "Potenciální negace: %s"
@@ -5693,7 +5710,7 @@ msgstr "Delegovaný prefix"
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "Předsdílený klíč"
@@ -5786,7 +5803,7 @@ msgstr "Poskytování nové sítě"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Pseudo Ad-Hoc (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Veřejný klíč"
@@ -5811,8 +5828,8 @@ msgstr "Veřejný prefix směrovaná k tomuto zařízení pro distribuci klient
msgid "QMI Cellular"
msgstr "Mobilní QMI"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -6050,7 +6067,7 @@ msgstr "Vyžadováno u některých ISP, např. Charter s DocSIS 3"
msgid "Required. Base64-encoded private key for this interface."
msgstr "Povinné. Soukromý klíč tohoto rozhraní v kódování Base64."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr "Povinné. Veřejný klíč protistrany v kódování Base64."
@@ -6180,8 +6197,8 @@ msgstr ""
"Lokalizovat jméno v závislosti na dotazující se podsíti, pokud bylo nalezeno "
"více IP adres."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Odhalit/skrýt heslo"
@@ -6189,19 +6206,19 @@ msgstr "Odhalit/skrýt heslo"
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Vrátit zpět"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "Vrátit změny"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr "Požadavek na vrácení se nezdařil se stavem <code>%h</code>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "Vracení konfigurace…"
@@ -6224,7 +6241,7 @@ msgstr "Příprava kořenového adresáře"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr "Politika Round-Robin (balance-rr, 0)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "Směrovat povolené IP adresy"
@@ -6330,7 +6347,7 @@ msgstr "Server SSTP"
msgid "SWAP"
msgstr "Odkládací soubor/oddíl"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6341,7 +6358,7 @@ msgid "Save"
msgstr "Uložit"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Uložit & použít"
@@ -6367,11 +6384,11 @@ msgstr "Skenovat"
msgid "Scheduled Tasks"
msgstr "Naplánované úlohy"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Přidána sekce"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Sekce odebrána"
@@ -6389,9 +6406,9 @@ msgstr ""
"kontrola formátu firmware. Použijte, pouze pokud jste si jisti, že firmware "
"je správný a určený pro vaše zařízení!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "Vybrat soubor…"
@@ -6577,7 +6594,7 @@ msgstr ""
msgid "Signal:"
msgstr "Signál:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Velikost"
@@ -6925,7 +6942,7 @@ msgstr "Priorita spouštění"
msgid "Start refresh"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "Provádění konfiguračních změn…"
@@ -6997,6 +7014,10 @@ msgstr ""
msgid "Stop refresh"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -7060,7 +7081,7 @@ msgstr "Směrovací protokol"
msgid "Switch to CIDR list notation"
msgstr "Přepnout na notaci seznamu CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "Symbolický odkaz"
@@ -7097,7 +7118,6 @@ msgstr "Vlastnosti systému"
msgid "System log buffer size"
msgstr "Velikost bufferu systémového logu"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7151,11 +7171,15 @@ msgstr ""
msgid "Target network"
msgstr "Cílová síť"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Ukončit"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7272,7 +7296,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7300,7 +7324,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7403,7 +7427,7 @@ msgstr "Délka IPv4 prefixu v bitech, zbytek se používá v IPv6 adresách."
msgid "The length of the IPv6 prefix in bits"
msgstr "Délka IPv6 prefixu v bitech"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7430,6 +7454,10 @@ msgstr "Síťová maska místní IPv4 adresy"
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7576,11 +7604,11 @@ msgstr ""
msgid "There are no active leases"
msgstr "Žádné aktivní zápůjčky"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "Žádné změny k provedení"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7682,8 +7710,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7954,7 +7982,7 @@ msgstr "Odpojit"
msgid "Unnamed key"
msgstr "Nepojmenovaný klíč"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Neuložené změny"
@@ -7984,7 +8012,7 @@ msgstr "Nahoru"
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Nahrát"
@@ -8001,21 +8029,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Nahrát archiv..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "Nahrát soubor"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "Nahrát soubor…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "Požadavek na nahrání selhal: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "Nahrávání souboru…"
@@ -8215,6 +8243,7 @@ msgstr "Uživatelský klíč (PEM formát)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Uživatelské jméno"
@@ -8520,7 +8549,7 @@ msgstr "Zapisovat systémový protokol do souboru"
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8548,7 +8577,7 @@ msgstr ""
"zařízení.<br /><strong>Varování: Pokud zakážete základní init skripty jako "
"\"network\", vaše zařízení se může stát nepřístupným!</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8715,7 +8744,7 @@ msgstr "plný-duplex"
msgid "half-duplex"
msgstr "poloviční-duplex"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "hexadecimální hodnota"
@@ -8740,11 +8769,11 @@ msgstr "ignorovat"
msgid "input"
msgstr "vstup"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "délka klíče v rozmezí 8 až 63 znaků"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "délka klíče 8, nebo 13 znaků"
@@ -8777,12 +8806,12 @@ msgstr "ne"
msgid "no link"
msgstr "žádné spojení"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "neprázdná hodnota"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "žádný"
@@ -8816,11 +8845,11 @@ msgstr ""
msgid "output"
msgstr "výstup"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "kladná desítková hodnota"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "kladná celočíselná hodnota"
@@ -8871,7 +8900,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "jedinečná hodnota"
@@ -8889,7 +8918,7 @@ msgstr "neznámý"
msgid "unlimited"
msgstr "neomezený"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8910,175 +8939,175 @@ msgstr "nespecifikovaný -nebo- vytvořit:"
msgid "untagged"
msgstr "neoznačený"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "platná IP adresa"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "platná IP adresa nebo prefix"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "platný IPv4 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "platná IPv4 adresa"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "platná IPv4 adresa nebo síť"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "platná IPv4 adresa:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "platná IPv4 síť"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "platný IPv4 nebo IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "platná hodnota IPv4 prefixu (0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "platný IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "platná IPv6 adresa"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "platná IPv6 adresa nebo prefix"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "platný identifikátor hostitele IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "platná IPv6 síť"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "platná hodnota prefixu IPv6 (0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "platná MAC adresa"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "platný UCI identifikátor"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "platný identifikátor UCI, název hostitele nebo IP adresa"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "platná adresa:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "platné datum (RRRR-MM-DD)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "platná desítková hodnota"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "platný šestnáctkový klíč WEP"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "platný šestnáctkový klíč WPA"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "platný hostitel:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "platný název hostitele"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "platný název hostitele nebo IP adresa"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "platná celočíselná hodnota"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "platná síť v notaci adresa/maska sítě"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "platná telefonní číslice (0-9, \"*\", \"#\", \"!\" or \".\")"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "platný port nebo rozsah portů (port1-port2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "platná hodnota portu"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "platný čas (HH:MM:SS)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "hodnota mezi %d a %d znaky"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "hodnota mezi %f a %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "hodnota větší nebo rovna %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "hodnota menší nebo rovna %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "hodnota s %d znaky"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "hodnota s alespoň %d znaky"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "hodnota s nejvýše %d znaky"
diff --git a/modules/luci-base/po/da/base.po b/modules/luci-base/po/da/base.po
new file mode 100644
index 0000000000..4242e60cfa
--- /dev/null
+++ b/modules/luci-base/po/da/base.po
@@ -0,0 +1,9291 @@
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2021-11-23 20:37+0000\n"
+"Last-Translator: drax red <drax@outlook.dk>\n"
+"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/luci/da/>"
+"\n"
+"Language: da\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.10-dev\n"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
+msgid "%.1f dB"
+msgstr "%.1f dB"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:117
+msgid "%d Bit"
+msgstr "%d Bit"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
+msgid "%d invalid field(s)"
+msgstr "%d ugyldigt(e) felt(er)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
+msgid "%s is untagged in multiple VLANs!"
+msgstr "%s er umærket i flere VLANs!"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:296
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:405
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:272
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:309
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:327
+msgid "(%d minute window, %d second interval)"
+msgstr "(%d minut vindue, %d sekund interval)"
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:258
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:282
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
+msgid "(empty)"
+msgstr "(tom)"
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:351
+#: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
+#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
+msgid "(no interfaces attached)"
+msgstr "(ingen interfaces tilknyttet)"
+
+#: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
+msgid "-- Additional Field --"
+msgstr "-- Yderligere felt --"
+
+#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
+#: modules/luci-compat/luasrc/view/cbi/header.htm:8
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
+msgid "-- Please choose --"
+msgstr "-- Vælg venligst --"
+
+#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
+#: modules/luci-compat/luasrc/view/cbi/header.htm:9
+msgid "-- custom --"
+msgstr "-- brugerdefineret --"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:270
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379
+msgid "-- match by label --"
+msgstr "-- match efter etiket --"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:256
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362
+msgid "-- match by uuid --"
+msgstr "-- match efter uuid --"
+
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
+#: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
+#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
+msgid "-- please select --"
+msgstr "-- vælg venligst --"
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
+msgctxt "sstp log level value"
+msgid "0"
+msgstr "0"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1003
+msgid "0 = not using RSSI threshold, 1 = do not change driver default"
+msgstr ""
+"0 = bruger ikke RSSI-tærskel, 1 = ændrer ikke driverens standardindstilling"
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
+msgctxt "sstp log level value"
+msgid "1"
+msgstr "1"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:233
+msgid "1 Minute Load:"
+msgstr "1 minuts belastning:"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:253
+msgid "15 Minute Load:"
+msgstr "15 minutters belastning:"
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
+msgctxt "sstp log level value"
+msgid "2"
+msgstr "2"
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
+msgctxt "sstp log level value"
+msgid "3"
+msgstr "3"
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
+msgctxt "sstp log level value"
+msgid "4"
+msgstr "4"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1515
+msgid "4-character hexadecimal ID"
+msgstr "4 tegn hexadecimalt ID"
+
+#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
+msgid "464XLAT (CLAT)"
+msgstr "464XLAT (CLAT)"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:243
+msgid "5 Minute Load:"
+msgstr "5 minutters belastning:"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1544
+msgid "6-octet identifier as a hex string - no colons"
+msgstr "6-oktet-identifikator som en hex-streng - ingen kolon"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1504
+msgid "802.11r Fast Transition"
+msgstr "802.11r hurtig overgang"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1698
+msgid "802.11w Association SA Query maximum timeout"
+msgstr "802.11w Association SA Query maksimal timeout"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1705
+msgid "802.11w Association SA Query retry timeout"
+msgstr ""
+"802.11w Association SA-forespørgsel efter timeout for fornyet forespørgsel"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
+msgid "802.11w Management Frame Protection"
+msgstr "802.11w Management Frame Beskyttelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1698
+msgid "802.11w maximum timeout"
+msgstr "802.11w maksimal timeout"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1705
+msgid "802.11w retry timeout"
+msgstr "802.11w genforsøg timeout"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1020
+msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
+msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1009
+msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
+msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
+msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
+msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
+
+#: 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> Konfiguration"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:70
+msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
+msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Navn"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897
+msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
+msgstr "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:791
+msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
+msgstr "<abbr title=\"Router Advertisement\">RA</abbr> Flag"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
+msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
+msgstr "<abbr title=\"Router Advertisement\">RA</abbr> Hopgrænse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
+msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
+msgstr "<abbr title=\"Router Advertisement\">RA</abbr> Levetid"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
+msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
+msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:763
+msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
+msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-tjeneste"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:370
+msgid "A configuration for the device \"%s\" already exists"
+msgstr "Der findes allerede en konfiguration for enheden \"%s\""
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
+msgid "A directory with the same name already exists."
+msgstr "Der findes allerede en mappe med samme navn."
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2671
+msgid "A new login is required since the authentication session expired."
+msgstr "Der er behov for et nyt login, da godkendelsessessionen er udløbet."
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
+msgid ""
+"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
+"the router"
+msgstr ""
+"En tilfældig, genereret \"PrivateKey\", nøglen vil ikke blive gemt på "
+"routeren"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1483
+msgid "A43C + J43 + A43"
+msgstr "A43C + J43 + A43"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484
+msgid "A43C + J43 + A43 + V43"
+msgstr "A43C + J43 + A43 + V43"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1496
+msgid "ADSL"
+msgstr "ADSL"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1472
+msgid "ANSI T1.413"
+msgstr "ANSI T1.413"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68
+msgid "APN"
+msgstr "APN"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353
+msgid "ARP"
+msgstr "ARP"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366
+msgid "ARP IP Targets"
+msgstr "ARP IP-mål"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
+msgid "ARP Interval"
+msgstr "ARP-interval"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
+msgid "ARP Validation"
+msgstr "ARP-validering"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374
+msgid "ARP mode to consider a slave as being up"
+msgstr "ARP-tilstand for at betragte en slave som værende oppe"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:79
+msgid "ARP monitoring is not supported for the selected policy!"
+msgstr "ARP-overvågning er ikke understøttet for den valgte politik!"
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
+msgid "ARP retry threshold"
+msgstr "ARP-tærskel for genforsøg"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1491
+msgid "ATM (Asynchronous Transfer Mode)"
+msgstr "ATM (asynkron overførselstilstand)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1512
+msgid "ATM Bridges"
+msgstr "ATM-broer"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1544
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
+msgid "ATM Virtual Channel Identifier (VCI)"
+msgstr "ATM Virtual Channel Identifier (VCI)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1545
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
+msgid "ATM Virtual Path Identifier (VPI)"
+msgstr "ATM Virtual Path Identifier (VPI)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1512
+msgid ""
+"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
+"Linux network interfaces which can be used in conjunction with DHCP or PPP "
+"to dial into the provider network."
+msgstr ""
+"ATM-broer udsætter indkapslet ethernet i AAL5-forbindelser som virtuelle "
+"Linux-netværks interfaces , der kan bruges sammen med DHCP eller PPP til at "
+"ringe ind på udbyderens netværk."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1551
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
+msgid "ATM device number"
+msgstr "ATM-enhedsnummer"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36
+msgid "ATU-C System Vendor ID"
+msgstr "ATU-C-systemleverandør-id"
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:265
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:547
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:551
+msgid "Absent Interface"
+msgstr "Fraværende Interface"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320
+msgid "Accept DNS queries only from hosts whose address is on a local subnet."
+msgstr ""
+"Accepter kun DNS-forespørgsler fra værter, hvis adresse er i et lokalt "
+"subnet."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
+msgid "Accept local"
+msgstr "Accepter lokalt"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
+msgid "Accept packets with local source addresses"
+msgstr "Accepter pakker med lokale kildeadresser"
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
+msgid "Access Concentrator"
+msgstr "Adgangskoncentrator"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:991
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
+msgid "Access Point"
+msgstr "Access Point"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:388
+msgid "Actions"
+msgstr "Handlinger"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
+msgid "Active"
+msgstr "Aktiv"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
+msgid "Active Connections"
+msgstr "Aktive forbindelser"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:35
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:174
+msgid "Active DHCP Leases"
+msgstr "Aktive DHCP leases"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:54
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:176
+msgid "Active DHCPv6 Leases"
+msgstr "Aktive DHCPv6 Leases"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:255
+msgid "Active IPv4 Routes"
+msgstr "Aktive IPv4-ruter"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:258
+msgid "Active IPv4 Rules"
+msgstr "Aktive IPv4-regler"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:265
+msgid "Active IPv6 Routes"
+msgstr "Aktive IPv6-ruter"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:268
+msgid "Active IPv6 Rules"
+msgstr "Aktive IPv6-regler"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
+msgid "Active-Backup policy (active-backup, 1)"
+msgstr "Politik for aktiv sikkerhedskopiering (active-backup, 1)"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3874
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:993
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
+msgid "Ad-Hoc"
+msgstr "Ad-hoc"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:210
+msgid "Adaptive load balancing (balance-alb, 6)"
+msgstr "Adaptiv load balancing (balance-alb, 6)"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:209
+msgid "Adaptive transmit load balancing (balance-tlb, 5)"
+msgstr "Adaptiv load balancing af transmission (balance-tlb, 5)"
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
+#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
+#: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
+#: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
+#: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:885
+msgid "Add"
+msgstr "Tilføj"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1516
+msgid "Add ATM Bridge"
+msgstr "Tilføj ATM-bro"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
+msgid "Add IPv4 address…"
+msgstr "Tilføj IPv4-adresse…"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
+msgid "Add IPv6 address…"
+msgstr "Tilføj IPv6-adresse…"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
+msgid "Add LED action"
+msgstr "Tilføj LED-handling"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:221
+msgid "Add VLAN"
+msgstr "Tilføj VLAN"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1292
+msgid "Add device configuration"
+msgstr "Tilføj enhedskonfiguration"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1232
+msgid "Add device configuration…"
+msgstr "Tilføj enhedskonfiguration…"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
+msgid "Add instance"
+msgstr "Tilføj Instans"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:165
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268
+msgid "Add key"
+msgstr "Tilføj nøgle"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409
+msgid "Add local domain suffix to names served from hosts files."
+msgstr "Tilføj lokalt domæne-suffiks til navne, der serveres fra hosts-filer."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:465
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1119
+msgid "Add new interface..."
+msgstr "Tilføj nyt interface..."
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:145
+msgid "Add peer"
+msgstr "Tilføj peer"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:326
+msgid "Add to Blacklist"
+msgstr "Tilføj til sortliste"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:326
+msgid "Add to Whitelist"
+msgstr "Tilføj til hvidliste"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367
+msgid "Additional hosts files"
+msgstr "Yderligere værtsfiler"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:416
+msgid "Additional servers file"
+msgstr "Yderligere servere fil"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43
+msgid "Address"
+msgstr "Adresse"
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
+msgid "Address to access local relay bridge"
+msgstr "Adresse for at få adgang til lokal relæbro"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289
+msgid "Addresses"
+msgstr "Adresser"
+
+#: 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 "Administration"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:255
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:478
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1542
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
+msgid "Advanced Settings"
+msgstr "Avancerede indstillinger"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:337
+msgid "Advanced device options"
+msgstr "Avancerede enhedsindstillinger"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:513
+msgid "Ageing time"
+msgstr "Aldringstid"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27
+msgid "Aggregate Transmit Power (ACTATP)"
+msgstr "ACTATP (Aggregate Transmit Power)"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:260
+msgid "Aggregation Selection Logic"
+msgstr "Aggregationsvalgslogik"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
+msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
+msgstr "Aggregator: Alle slaver er nede eller har ingen slaver (stabil, 0)"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:265
+msgid ""
+"Aggregator: Chosen by the largest number of ports + slave added/removed or "
+"state changes (count, 2)"
+msgstr ""
+"Aggregator: Valgt efter det største antal porte + tilføjede/fjernede slaver "
+"eller tilstandsændringer (antal, 2)"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:264
+msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
+msgstr ""
+"Aggregator: Slave tilføjet/fjernet eller tilstandsændringer (båndbredde, 1)"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:191
+msgid "Alert"
+msgstr "Advarsel"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2995
+#: modules/luci-compat/luasrc/model/network.lua:1417
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
+msgid "Alias Interface"
+msgstr "Alias Interface"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
+msgid "Alias of \"%s\""
+msgstr "Alias for \"%s\""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:426
+msgid "All servers"
+msgstr "Alle servere"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378
+msgid ""
+"Allocate IP addresses sequentially, starting from the lowest available "
+"address."
+msgstr ""
+"Tildel IP-adresser sekventielt, startende fra den lavest tilgængelige "
+"adresse."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377
+msgid "Allocate IPs sequentially"
+msgstr "Tildel IP'er sekventielt"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
+msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
+msgstr ""
+"Tillad <abbr title=\"Secure Shell\">SSH</abbr>SSH</abbr> "
+"adgangskodegodkendelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1185
+msgid "Allow AP mode to disconnect STAs based on low ACK condition"
+msgstr "Tillad AP-tilstand til at afbryde STA'er baseret på lav ACK-tilstand"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1089
+msgid "Allow all except listed"
+msgstr "Tillad alle undtagen angivet"
+
+#: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
+msgid "Allow full UCI access for legacy applications"
+msgstr "Tillad fuld UCI-adgang for ældre applikationer"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:944
+msgid "Allow legacy 802.11b rates"
+msgstr "Tillader gamle 802.11b-hastigheder"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1088
+msgid "Allow listed only"
+msgstr "Tillad kun anførte"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306
+msgid "Allow localhost"
+msgstr "Tillad localhost"
+
+#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:179
+msgid "Allow rebooting the device"
+msgstr "Tillad genstart af enheden"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
+msgid "Allow remote hosts to connect to local SSH forwarded ports"
+msgstr ""
+"Tillad fjernværter at oprette forbindelse til lokale SSH-porte, der er "
+"videresendt"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
+msgid "Allow root logins with password"
+msgstr "Tillad rodlogon med adgangskode"
+
+#: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
+msgid "Allow system feature probing"
+msgstr "Tillad undersøgelse af systemfunktioner"
+
+#: 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 "Tillad brugeren <em>root</em> at logge ind med adgangskode"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+msgid "Allowed IPs"
+msgstr "Tilladte IP'er"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:708
+msgid "Always"
+msgstr "Altid"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:6
+msgid "Always off (kernel: none)"
+msgstr "Altid slukket (kerne: ingen)"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:5
+msgid "Always on (kernel: default-on)"
+msgstr "Altid tændt (kerne: standard tændt)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537
+msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux."
+msgstr ""
+"Altid sende DHCP-indstillinger. Nogle gange er det nødvendigt, f.eks. med "
+"PXELinux."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:971
+msgid ""
+"Always use 40MHz channels even if the secondary channel overlaps. Using this "
+"option does not comply with IEEE 802.11n-2009!"
+msgstr ""
+"Brug altid 40 MHz-kanaler, selv om den sekundære kanal overlapper hinanden. "
+"Brug af denne indstilling er ikke i overensstemmelse med IEEE 802.11n-2009!"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
+msgid "Amount of Duplicate Address Detection probes to send"
+msgstr "Antallet af prober til detektion af dobbeltadresse, der skal sendes"
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:603
+msgid "An error occurred while saving the form:"
+msgstr "Der opstod en fejl under lagring af formularen:"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
+msgid "An optional, short description for this device"
+msgstr "En valgfri, kort beskrivelse af denne enhed"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1464
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20
+msgid "Annex"
+msgstr "Bilag"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1465
+msgid "Annex A + L + M (all)"
+msgstr "Bilag A + L + M (alle)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1473
+msgid "Annex A G.992.1"
+msgstr "Bilag A G.992.1"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1474
+msgid "Annex A G.992.2"
+msgstr "Bilag A G.992.2"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1475
+msgid "Annex A G.992.3"
+msgstr "Bilag A G.992.3"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476
+msgid "Annex A G.992.5"
+msgstr "Bilag A G.992.5"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
+msgid "Annex B (all)"
+msgstr "Bilag B (alle)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1469
+msgid "Annex B G.992.1"
+msgstr "Bilag B G.992.1"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1470
+msgid "Annex B G.992.3"
+msgstr "Bilag B G.992.3"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471
+msgid "Annex B G.992.5"
+msgstr "Bilag B G.992.5"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1467
+msgid "Annex J (all)"
+msgstr "Bilag J (alle)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1477
+msgid "Annex L G.992.3 POTS 1"
+msgstr "Bilag L G.992.3 POTS 1"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1468
+msgid "Annex M (all)"
+msgstr "Bilag M (alle)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1478
+msgid "Annex M G.992.3"
+msgstr "Bilag M G.992.3"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1479
+msgid "Annex M G.992.5"
+msgstr "Bilag M G.992.5"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:885
+msgid "Announce this device as IPv6 DNS server."
+msgstr "Annoncer denne enhed som IPv6 DNS-server."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777
+msgid ""
+"Announce this device as default router if a local IPv6 default route is "
+"present."
+msgstr ""
+"Annoncer denne enhed som standardrouter, hvis der findes en lokal IPv6-"
+"standardrute."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:779
+msgid ""
+"Announce this device as default router if a public IPv6 prefix is available, "
+"regardless of local default route availability."
+msgstr ""
+"Annoncer denne enhed som standardrouter, hvis der er et offentligt IPv6-"
+"præfiks tilgængeligt, uanset om der findes en lokal standardrute."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:781
+msgid ""
+"Announce this device as default router regardless of whether a prefix or "
+"default route is present."
+msgstr ""
+"Annoncer denne enhed som standardrouter, uanset om der er et præfiks eller "
+"en standardrute."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
+msgid "Announced DNS domains"
+msgstr "Annoncerede DNS-domæner"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:878
+msgid "Announced IPv6 DNS servers"
+msgstr "Annoncerede IPv6 DNS-servere"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1669
+msgid "Anonymous Identity"
+msgstr "Anonym identitet"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
+msgid "Anonymous Mount"
+msgstr "Anonymt Mount"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
+msgid "Anonymous Swap"
+msgstr "Anonym Swap"
+
+#: 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 "Enhver zone"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
+msgid "Apply DHCP Options to this net. (Empty = all clients)."
+msgstr "Anvend DHCP-indstillinger på dette net. (Tomt = alle klienter)."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
+msgid "Apply backup?"
+msgstr "Anvend backup?"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
+msgid "Apply request failed with status <code>%h</code>"
+msgstr "Anvendelse af anmodning mislykkedes med status <code>%h</code>"
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
+msgid "Apply unchecked"
+msgstr "Anvend ikke afkrydset"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
+msgid "Applying configuration changes… %ds"
+msgstr "Anvendelse af konfigurationsændringer... %ds"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
+msgid "Architecture"
+msgstr "Arkitektur"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:155
+msgid "Arp-scan"
+msgstr "Arp-scan"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
+msgid ""
+"Assign a part of given length of every public IPv6-prefix to this interface"
+msgstr ""
+"Tildele en del af en given længde af hvert offentligt IPv6-præfiks til dette "
+"interface"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:968
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
+msgid ""
+"Assign prefix parts using this hexadecimal subprefix ID for this interface."
+msgstr ""
+"Tildel præfiksdele ved hjælp af dette hexadecimale subprefiks-id til dette "
+"interface."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2166
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:357
+msgid "Associated Stations"
+msgstr "Tilknyttede stationer"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
+msgid "Associations"
+msgstr "Foreninger"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
+msgid "Attempt to enable configured mount points for attached devices"
+msgstr ""
+"Forsøg på at aktivere konfigurerede monteringspunkter for tilsluttede enheder"
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:110
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
+msgid "Auth Group"
+msgstr "Auth gruppe"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1608
+msgid "Authentication"
+msgstr "Godkendelse"
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:82
+msgid "Authentication Type"
+msgstr "Godkendelsestype"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265
+msgid "Authoritative"
+msgstr "Autoritativ"
+
+#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
+msgid "Authorization Required"
+msgstr "Autorisation påkrævet"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:120
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:112
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
+msgid "Automatic"
+msgstr "Automatisk"
+
+#: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
+msgid "Automatic Homenet (HNCP)"
+msgstr "Automatisk Homenet (HNCP)"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
+msgid "Automatically check filesystem for errors before mounting"
+msgstr "Kontroller automatisk filsystemet for fejl før montering"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:956
+msgid ""
+"Automatically handle multiple uplink interfaces using source-based policy "
+"routing."
+msgstr ""
+"Automatisk håndtering af flere uplink-interfaces ved hjælp af kildebaseret "
+"policy-routing."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
+msgid "Automatically mount filesystems on hotplug"
+msgstr "Automatisk montering af filsystemer ved hotplug"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
+msgid "Automatically mount swap on hotplug"
+msgstr "Automatisk montering af swap ved hotplug"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
+msgid "Automount Filesystem"
+msgstr "Automount filsystem"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
+msgid "Automount Swap"
+msgstr "Automount Swap"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
+msgid "Available"
+msgstr "Tilgængelig"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:331
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:341
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:351
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:236
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:246
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:256
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:265
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:275
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:293
+msgid "Average:"
+msgstr "Gennemsnit:"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1485
+msgid "B43 + B43C"
+msgstr "B43 + B43C"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1486
+msgid "B43 + B43C + V43"
+msgstr "B43 + B43C + V43"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
+msgid "BR / DMR / AFTR"
+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:1743
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:379
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
+msgid "BSSID"
+msgstr "BSSID"
+
+#: modules/luci-compat/luasrc/view/cbi/footer.htm:14
+#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
+msgid "Back to Overview"
+msgstr "Tilbage til Oversigt"
+
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48
+msgid "Back to configuration"
+msgstr "Tilbage til konfiguration"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:391
+msgid "Backup"
+msgstr "Backup"
+
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:128
+msgid "Backup / Flash Firmware"
+msgstr "Backup / Flash Firmware"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12
+msgid "Backup file list"
+msgstr "Liste over backup-filer"
+
+#: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:502
+msgid "Band"
+msgstr "Bånd"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:377
+msgid "Base device"
+msgstr "Basisenhed"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:974
+msgid "Beacon Interval"
+msgstr "Beacon-interval"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46
+msgid ""
+"Below is the determined list of files to backup. It consists of changed "
+"configuration files marked by opkg, essential base files and the user "
+"defined backup patterns."
+msgstr ""
+"Nedenfor er den bestemte liste over de filer, der skal sikkerhedskopieres. "
+"Den består af ændrede konfigurationsfiler markeret af opkg, vigtige "
+"basisfiler og de brugerdefinerede sikkerhedskopieringsmønstre."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326
+msgid "Bind dynamically to interfaces rather than wildcard address."
+msgstr "Bind dynamisk til interfaces i stedet for wildcard-adresser."
+
+#: 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 "Bind interface"
+
+#: 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 the tunnel to this interface (optional)."
+msgstr "Bind tunnelen til dette interface (valgfrit)."
+
+#: 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:162
+msgid "Bitrate"
+msgstr "Bitrate"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:201
+msgid "Bonding Policy"
+msgstr "Bonding Politik"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3001
+#: modules/luci-compat/luasrc/model/network.lua:1421
+msgid "Bridge"
+msgstr "Bro"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:437
+msgctxt "MACVLAN mode"
+msgid "Bridge (Support direct communication between MAC VLANs)"
+msgstr "Bro (understøtter direkte kommunikation mellem MAC VLANs)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:339
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:481
+msgid "Bridge VLAN filtering"
+msgstr "Bro VLAN-filtrering"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:344
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1387
+msgid "Bridge device"
+msgstr "Bro enhed"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:338
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:480
+msgid "Bridge port specific options"
+msgstr "Broportspecifikke indstillinger"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
+msgid "Bridge ports"
+msgstr "Broporte"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1552
+msgid "Bridge unit number"
+msgstr "Nummer på broenhed"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
+msgid "Bring up empty bridge"
+msgstr "Bring tom bro op"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:575
+msgid "Bring up on boot"
+msgstr "start op ved boot"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
+msgid "Bring up the bridge interface even if no ports are attached"
+msgstr "start bro interface op, selv om der ikke er tilsluttet nogen porte"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
+msgid "Broadcast policy (broadcast, 3)"
+msgstr "Broadcast politik (broadcast, 3)"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
+msgid "Browse…"
+msgstr "Gennemse…"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:40
+msgid "Buffered"
+msgstr "Buffered"
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
+msgid "CA certificate; if empty it will be saved after the first connection."
+msgstr ""
+"CA-certifikat; hvis det er tomt, vil det blive gemt efter den første "
+"forbindelse."
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
+msgid "CLAT configuration failed"
+msgstr "CLAT-konfiguration mislykkedes"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
+msgid "CPU usage (%)"
+msgstr "CPU-forbrug (%)"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:43
+msgid "Cached"
+msgstr "Cachelagret"
+
+#: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
+#: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
+msgid "Call failed"
+msgstr "Opkald mislykkedes"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
+#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
+#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1125
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2040
+#: 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:295
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:203
+msgid "Cancel"
+msgstr "Annuller"
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
+msgid "Category"
+msgstr "Kategori"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1592
+msgid "Certificate constraint (Domain)"
+msgstr "Certifikatbegrænsning (domæne)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1589
+msgid "Certificate constraint (SAN)"
+msgstr "Certifikatbegrænsning (SAN)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1586
+msgid "Certificate constraint (Subject)"
+msgstr "Certifikatbegrænsning (emne)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1595
+msgid "Certificate constraint (Wildcard)"
+msgstr "Certifikatbegrænsning (Wildcard)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1586
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1644
+msgid ""
+"Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
+"`logread -f` during handshake for actual values"
+msgstr ""
+"Understreng til certifikatbegrænsning - f.eks. /CN=wifi.mycompany.com<br /"
+">Se `logread -f` under handshake for de faktiske værdier"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1592
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1650
+msgid ""
+"Certificate constraint(s) against DNS SAN values (if available)<br />or "
+"Subject CN (exact match)"
+msgstr ""
+"Certifikatbegrænsning(er) i forhold til DNS SAN-værdier (hvis de er "
+"tilgængelige)<br />eller Subject CN (nøjagtigt match)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1595
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1653
+msgid ""
+"Certificate constraint(s) against DNS SAN values (if available)<br />or "
+"Subject CN (suffix match)"
+msgstr ""
+"Certifikatbegrænsning(er) i forhold til DNS SAN-værdier (hvis de er "
+"tilgængelige)<br />eller Subject CN (Suffiks match)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1589
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1647
+msgid ""
+"Certificate constraint(s) via Subject Alternate Name values<br />(supported "
+"attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
+msgstr ""
+"Certifikatbegrænsning(er) via Subject Alternate Name-værdier<br /"
+">(understøttede attributter: EMAIL, DNS, URI) - f.eks. DNS:wifi.mycompany.com"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
+msgid "Chain"
+msgstr "Kæde"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
+msgid "Changes"
+msgstr "Ændringer"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
+msgid "Changes have been reverted."
+msgstr "Ændringerne er blevet tilbageført."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
+msgid "Changes the administrator password for accessing the device"
+msgstr "Ændrer administratoradgangskoden for adgang til enheden"
+
+#: 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:511
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1741
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:376
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:161
+msgid "Channel"
+msgstr "Kanal"
+
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:81
+msgid "Channel Analysis"
+msgstr "Kanalanalyse"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:377
+msgid "Channel Width"
+msgstr "Kanalbredde"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
+msgid "Check filesystems before mount"
+msgstr "Kontroller filsystemer før montering"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2002
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+"Markér denne indstilling for at slette de eksisterende netværk fra denne "
+"radio."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
+msgid "Checking archive…"
+msgstr "Kontrol af arkiv…"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
+msgid "Checking image…"
+msgstr "Kontrol af billede…"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:427
+msgid "Choose mtdblock"
+msgstr "Vælg mtdblock"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2030
+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 ""
+"Vælg den firewallzone, som du vil tildele denne interface. Vælg "
+"<em>unspecified</em> for at fjerne interface fra den tilknyttede zone, eller "
+"udfyld feltet <em>custom</em> for at definere en ny zone og knytte interface "
+"til den."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1023
+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 ""
+"Vælg det eller de netværk, du vil knytte til denne trådløse interface, eller "
+"udfyld feltet <em>custom</em> for at definere et nyt netværk."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1221
+msgid "Cipher"
+msgstr "Cipher"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
+msgid "Cisco UDP encapsulation"
+msgstr "Cisco UDP-indkapsling"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:391
+msgid ""
+"Click \"Generate archive\" to download a tar archive of the current "
+"configuration files."
+msgstr ""
+"Klik på \" Generer arkiv \" for at downloade et tar-arkiv med de aktuelle "
+"konfigurationsfiler."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
+msgid ""
+"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
+"FEATURE IS FOR PROFESSIONALS! )"
+msgstr ""
+"Klik på \"Save mtdblock\" for at downloade den angivne mtdblock-fil. "
+"(BEMÆRK: DENNE FUNKTION ER FOR PROFESSIONELLE! )"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3873
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:992
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1106
+msgid "Client"
+msgstr "Klient"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
+msgid "Client ID to send when requesting DHCP"
+msgstr "Klient-ID, der skal sendes ved anmodning om DHCP"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
+msgid "Close"
+msgstr "Luk"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
+msgid ""
+"Close inactive connection after the given amount of seconds, use 0 to "
+"persist connection"
+msgstr ""
+"Luk inaktiv forbindelse efter det angivne antal sekunder, brug 0 for at "
+"opretholde forbindelsen"
+
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49
+msgid "Close list..."
+msgstr "Luk liste..."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2164
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72
+msgid "Collecting data..."
+msgstr "Indsamler data..."
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
+msgid "Command"
+msgstr "Kommando"
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
+msgid "Command OK"
+msgstr "Kommando OK"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
+msgid "Command failed"
+msgstr "Kommandoen mislykkedes"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
+msgid "Comment"
+msgstr "Kommentar"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1712
+msgid ""
+"Complicates key reinstallation attacks on the client side by disabling "
+"retransmission of EAPOL-Key frames that are used to install keys. This "
+"workaround might cause interoperability issues and reduced robustness of key "
+"negotiation especially in environments with heavy traffic load."
+msgstr ""
+"Komplicerer angreb på geninstallation af nøgler på klientsiden ved at "
+"deaktivere retransmission af EAPOL-Key-rammer, der bruges til at installere "
+"nøgler. Denne løsning kan medføre interoperabilitetsproblemer og nedsat "
+"robusthed af nøgleforhandlingerne, især i miljøer med stor trafikbelastning."
+
+#: 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 "Beregner den udgående checksum (valgfrit)."
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
+msgid "Configuration"
+msgstr "Konfiguration"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
+msgid "Configuration changes applied."
+msgstr "Konfigurationsændringer er anvendt."
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+msgid "Configuration changes have been rolled back!"
+msgstr "Konfigurationsændringer er blevet rullet tilbage!"
+
+#: 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 "Konfiguration mislykkedes"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
+msgid ""
+"Configures data rates based on the coverage cell density. Normal configures "
+"basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
+"5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
+"rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
+"the basic rate. Supported rates lower than the minimum basic rate are not "
+"offered."
+msgstr ""
+"Konfigurerer datahastigheder baseret på dækningscelletætheden. Normal "
+"konfigurerer basishastighederne til 6, 12, 24 Mbps, hvis der ikke anvendes "
+"ældre 802.11b-hastigheder, ellers til 5,5, 11 Mbps. Høj konfigurerer "
+"basishastighederne til 12, 24 Mbps, hvis der ikke anvendes ældre 802.11b-"
+"hastigheder, ellers til 11 Mbps-hastigheden. Meget høj konfigurerer 24 Mbps "
+"som basishastighed. Der tilbydes ikke understøttede hastigheder, der er "
+"lavere end den minimale basishastighed."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:775
+msgid ""
+"Configures the default router advertisement in <abbr title=\"Router "
+"Advertisement\">RA</abbr> messages."
+msgstr ""
+"Konfigurerer standard-routerannonceringen i <abbr title=\"Router "
+"Advertisement\">RA</abbr>-meddelelser."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764
+msgid ""
+"Configures the operation mode of the <abbr title=\"Router Advertisement"
+"\">RA</abbr> service on this interface."
+msgstr ""
+"Konfigurerer driftstilstanden for <abbr title=\"Router Advertisement\">RA</"
+"abbr>-tjenesten på denne interface."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:868
+msgid "Configures the operation mode of the DHCPv6 service on this interface."
+msgstr "Konfigurerer driftstilstanden for DHCPv6-tjenesten på denne interface."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:898
+msgid ""
+"Configures the operation mode of the NDP proxy service on this interface."
+msgstr ""
+"Konfigurerer driftstilstanden for NDP-proxytjenesten på denne interface."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1278
+msgid "Configure…"
+msgstr "Konfigurer…"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176
+msgid "Confirm disconnect"
+msgstr "Bekræft afbrydelse af forbindelsen"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
+msgid "Confirmation"
+msgstr "Bekræftelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:100
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51
+msgid "Connected"
+msgstr "Tilsluttet"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:9
+#: modules/luci-compat/luasrc/model/network.lua:27
+msgid "Connection attempt failed"
+msgstr "Forbindelsesforsøg mislykkedes"
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40
+msgid "Connection attempt failed."
+msgstr "Forbindelsesforsøg mislykkedes."
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
+msgid "Connection lost"
+msgstr "Forbindelse afbrudt"
+
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:136
+msgid "Connections"
+msgstr "Forbindelser"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:378
+msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
+msgstr ""
+"Slaven betragtes som værende oppe, når alle ARP-IP-mål kan nås (all, 1)"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
+msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
+msgstr ""
+"Slaven betragtes som værende oppe, når et hvilket som helst ARP IP-mål kan "
+"nås (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:368
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
+msgid "Contents have been saved."
+msgstr "Indholdet er blevet gemt."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:399
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:433
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:800
+#: 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:269
+msgid "Continue"
+msgstr "Fortsæt"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
+msgid ""
+"Could not regain access to the device after applying the configuration "
+"changes. You might need to reconnect if you modified network related "
+"settings such as the IP address or wireless security credentials."
+msgstr ""
+"Kunne ikke få adgang til enheden igen efter at have anvendt "
+"konfigurationsændringerne. Det kan være nødvendigt at genoprette "
+"forbindelsen, hvis du har ændret netværksrelaterede indstillinger, f.eks. IP-"
+"adressen eller de trådløse sikkerhedsoplysninger."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
+msgid "Country"
+msgstr "Land"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:950
+msgid "Country Code"
+msgstr "Landekode"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
+msgid "Coverage cell density"
+msgstr "Dækningscelletæthed"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2030
+msgid "Create / Assign firewall-zone"
+msgstr "Opret / Tildel firewall-zone"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1154
+msgid "Create interface"
+msgstr "Opret interface"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:190
+msgid "Critical"
+msgstr "Kritisk"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
+msgid "Cron Log Level"
+msgstr "Cron-logniveau"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:591
+msgid "Current power"
+msgstr "Nuværende effekt"
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:572
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:574
+#: 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 "Brugerdefineret Interface"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:410
+msgid ""
+"Custom files (certificates, scripts) may remain on the system. To prevent "
+"this, perform a factory-reset first."
+msgstr ""
+"Brugerdefinerede filer (certifikater, scripts) kan forblive på systemet. For "
+"at forhindre dette skal du først foretage en fabriksnulstilling."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
+msgid "Custom flash interval (kernel: timer)"
+msgstr "Brugerdefineret blitzinterval (kerne: 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 ""
+"Tilpasser enhedens adfærd <abbr title=\"Light Emitting Diode\">LED</abbr>s, "
+"hvis det er muligt."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
+msgid "DAD transmits"
+msgstr "DAD sender"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1426
+msgid "DAE-Client"
+msgstr "DAE-klient"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431
+msgid "DAE-Port"
+msgstr "DAE-port"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1436
+msgid "DAE-Secret"
+msgstr "DAE-Secret"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524
+msgid "DHCP Options"
+msgstr "DHCP-indstillinger"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:483
+msgid "DHCP Server"
+msgstr "DHCP-server"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:245
+#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:62
+msgid "DHCP and DNS"
+msgstr "DHCP og DNS"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2110
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
+#: modules/luci-compat/luasrc/model/network.lua:969
+msgid "DHCP client"
+msgstr "DHCP klient"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
+msgid "DHCP-Options"
+msgstr "DHCP-indstillinger"
+
+#: 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 klient"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
+msgid "DHCPv6-Service"
+msgstr "DHCPv6-tjeneste"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49
+msgid "DNS"
+msgstr "DNS"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282
+msgid "DNS forwardings"
+msgstr "DNS-videresendelser"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444
+msgid "DNS query port"
+msgstr "Port til DNS-forespørgsel"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932
+msgid "DNS search domains"
+msgstr "DNS-søgningsdomæner"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437
+msgid "DNS server port"
+msgstr "Port til DNS-server"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
+msgid "DNS weight"
+msgstr "DNS vægt"
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
+msgid "DNS-Label / FQDN"
+msgstr "DNS-mærke / FQDN"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:396
+msgid "DNSSEC"
+msgstr "DNSSEC"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401
+msgid "DNSSEC check unsigned"
+msgstr "DNSSEC check usigneret"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
+msgid "DPD Idle Timeout"
+msgstr "DPD Idle Timeout"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
+msgid "DS-Lite AFTR address"
+msgstr "DS-Lite AFTR-adresse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1461
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44
+msgid "DSL"
+msgstr "DSL"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14
+msgid "DSL Status"
+msgstr "DSL Status"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1494
+msgid "DSL line mode"
+msgstr "DSL-linjemodus"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1161
+msgid "DTIM Interval"
+msgstr "DTIM interval"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:699
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
+msgid "DUID"
+msgstr "DUID"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
+msgid "Data Rate"
+msgstr "Datahastighed"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:196
+msgid "Debug"
+msgstr "Debug"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1401
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1416
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431
+msgid "Default %d"
+msgstr "Standard %d"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:774
+msgid "Default router"
+msgstr "Standard router"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:12
+msgid "Default state"
+msgstr "Standardtilstand"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
+msgid ""
+"Define additional DHCP options, for example "
+"\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
+"servers to clients."
+msgstr ""
+"Definer yderligere DHCP-optioner, f.eks. \"<code>6,192.168.2.1,192.168.2.2</"
+"code>\", som annoncerer forskellige DNS-servere til klienterne."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:462
+msgid ""
+"Defines a mapping of Linux internal packet priority to VLAN header priority "
+"but for outgoing frames"
+msgstr ""
+"Definerer en mapping af Linux-intern pakkeprioritet til VLAN-"
+"headerprioritet, men for udgående rammer"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:456
+msgid ""
+"Defines a mapping of VLAN header priority to the Linux internal packet "
+"priority on incoming frames"
+msgstr ""
+"Definerer en mapping af VLAN-headerprioritet til Linux-intern pakkeprioritet "
+"på indgående frames"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:960
+msgid "Delegate IPv6 prefixes"
+msgstr "Delegere IPv6-præfikser"
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
+#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
+#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
+msgid "Delete"
+msgstr "Slet"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
+msgid "Delete key"
+msgstr "Slet nøgle"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
+msgid "Delete request failed: %s"
+msgstr "Anmodning om sletning mislykkedes: %s"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:905
+msgid "Delete this network"
+msgstr "Slet dette netværk"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1161
+msgid "Delivery Traffic Indication Message Interval"
+msgstr "Meddelelsesinterval for meddelelse om levering af trafikinformation"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
+msgid "Description"
+msgstr "Beskrivelse"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
+msgid "Deselect"
+msgstr "Fravælg"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:235
+msgid "Design"
+msgstr "Design"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:715
+msgid "Designated master"
+msgstr "Udpeget master"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
+msgid "Destination"
+msgstr "Destination"
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
+msgid "Destination port"
+msgstr "Destinationsport"
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
+msgid "Destination zone"
+msgstr "Destination zone"
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:569
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1107
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1403
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:13
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:247
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:356
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
+msgid "Device"
+msgstr "Enhed"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:919
+msgid "Device Configuration"
+msgstr "Enhedskonfiguration"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
+msgid "Device is not active"
+msgstr "Enheden er ikke aktiv"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:233
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:657
+msgid "Device is restarting…"
+msgstr "Enheden genstarter…"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:441
+msgid "Device name"
+msgstr "Enhedens navn"
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45
+msgid "Device not managed by ModemManager."
+msgstr "Enheden administreres ikke af ModemManager."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1378
+msgid "Device not present"
+msgstr "Enheden er ikke til stede"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:341
+msgid "Device type"
+msgstr "Enhedstype"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
+msgid "Device unreachable!"
+msgstr "Enheden er ikke tilgængelig!"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
+msgid "Device unreachable! Still waiting for device..."
+msgstr "Enheden er ikke tilgængelig! Venter stadig på enheden..."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1229
+msgid "Devices"
+msgstr "Enheder"
+
+#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
+msgid "Diagnostics"
+msgstr "Diagnostik"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
+msgid "Dial number"
+msgstr "Tast nummer"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
+msgid "Directory"
+msgstr "Mappe"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937
+msgid "Disable"
+msgstr "Deaktiver"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:666
+msgid ""
+"Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
+"this interface."
+msgstr ""
+"Deaktiver <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> "
+"for denne Interface."
+
+#: 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:375
+msgid "Disable DNS lookups"
+msgstr "Deaktivere DNS-opslag"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
+msgid "Disable Encryption"
+msgstr "Deaktiver kryptering"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1171
+msgid "Disable Inactivity Polling"
+msgstr "Deaktivere opsamling af inaktivitet"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895
+msgid "Disable this network"
+msgstr "Deaktivere dette netværk"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:954
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1680
+#: 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:121
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:113
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
+msgid "Disabled"
+msgstr "Deaktiver"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1185
+msgid "Disassociate On Low Acknowledgement"
+msgstr "Fjern tilknytning ved lav anerkendelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302
+msgid "Discard upstream RFC1918 responses."
+msgstr "Kassér upstream RFC1918-svar."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:198
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:723
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:327
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:342
+msgid "Disconnect"
+msgstr "Afbryd forbindelsen"
+
+#: 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 "Afbrydelsesforsøg mislykkedes"
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48
+msgid "Disconnection attempt failed."
+msgstr "Afbrydelsesforsøg mislykkedes."
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:606
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
+msgid "Dismiss"
+msgstr "Afvis"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959
+msgid "Distance Optimization"
+msgstr "Afstandsoptimering"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959
+msgid "Distance to farthest network member in meters."
+msgstr "Afstand til det fjerneste netværksmedlem i meter."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
+msgid ""
+"Dnsmasq instance to which this boot section is bound. If unspecified, the "
+"section is valid for all dnsmasq instances."
+msgstr ""
+"Dnsmasq-instans, som denne opstartssektion er bundet til. Hvis den ikke er "
+"angivet, er sektionen gyldig for alle dnsmasq-instanser."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246
+msgid ""
+"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol"
+"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> "
+"forwarder."
+msgstr ""
+"Dnsmasq er en let <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
+"abbr>-server og <abbr title=\"Domain Name System\">DNS</abbr>-forwarder."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413
+msgid "Do not cache negative replies, e.g. for non-existent domains."
+msgstr "Cache ikke negative svar, f.eks. for ikke-eksisterende domæner."
+
+#: 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 "Opret ikke værtsrute til peer (valgfrit)."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262
+msgid "Do not forward DNS queries without dots or domain parts."
+msgstr "Videresend ikke DNS-forespørgsler uden prikker eller domænedele."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
+msgid "Do not forward queries that cannot be answered by public resolvers."
+msgstr ""
+"Videresend ikke forespørgsler, som ikke kan besvares af offentlige resolvere."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383
+msgid "Do not forward reverse lookups for local networks."
+msgstr "Videresend ikke reverse opslag for lokale netværk."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339
+msgid "Do not listen on the specified interfaces."
+msgstr "Lyt ikke på de angivne interfaces."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:870
+msgid "Do not offer DHCPv6 service on this interface."
+msgstr "Tilbyder ikke DHCPv6-tjeneste på dette interface."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:158
+msgctxt "VLAN port state"
+msgid "Do not participate"
+msgstr "Deltag ikke"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:900
+msgid ""
+"Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
+"packets."
+msgstr ""
+"Du må ikke give proxy-proxy til <abbr title=\"Neighbour Discovery Protocol"
+"\">NDP</abbr>-pakker."
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
+msgid "Do not send a hostname"
+msgstr "Send ikke et værtsnavn"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:766
+msgid ""
+"Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
+"abbr> messages on this interface."
+msgstr ""
+"Send ingen <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>-"
+"meddelelser på dette interface."
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+msgid "Do you really want to delete \"%s\" ?"
+msgstr "Ønsker du virkelig at slette \"%s\" ?"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200
+msgid "Do you really want to delete the following SSH key?"
+msgstr "Ønsker du virkelig at slette følgende SSH-nøgle?"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
+msgid "Do you really want to erase all settings?"
+msgstr "Ønsker du virkelig at slette alle indstillinger?"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
+msgid "Do you really want to recursively delete the directory \"%s\" ?"
+msgstr "Ønsker du virkelig at slette mappen \"%s\" rekursivt?"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:592
+msgid "Domain"
+msgstr "Domæne"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261
+msgid "Domain required"
+msgstr "Påkrævet domæne"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311
+msgid "Domain whitelist"
+msgstr "Domæne whitelist"
+
+#: 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 "Fragmentér ikke"
+
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
+msgid "Down"
+msgstr "Ned"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403
+msgid "Down Delay"
+msgstr "Ned Forsinkelse"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
+msgid "Download backup"
+msgstr "Download backup"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:432
+msgid "Download mtdblock"
+msgstr "Download mtdblock"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1499
+msgid "Downstream SNR offset"
+msgstr "Nedstrøms SNR offset"
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
+msgid "Drag to reorder"
+msgstr "Træk for at omarrangere"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
+msgid "Drop Duplicate Frames"
+msgstr "Drop dublerede Frames"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
+msgid "Dropbear Instance"
+msgstr "Dropbear Instans"
+
+#: 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 tilbyder <abbr title=\"Secure Shell\">SSH</abbr> netværks shell-"
+"adgang og en integreret <abbr title=\"Secure Copy\">SCP</abbr> server"
+
+#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
+msgid "Dual-Stack Lite (RFC6333)"
+msgstr "Dual-Stack Lite (RFC6333)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
+msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
+msgstr ""
+"Dynamisk <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
+msgid "Dynamic tunnel"
+msgstr "Dynamisk tunnel"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
+msgid ""
+"Dynamically allocate DHCP addresses for clients. If disabled, only clients "
+"having static leases will be served."
+msgstr ""
+"Dynamisk tildeling af DHCP-adresser til klienter. Hvis den er deaktiveret, "
+"vil kun klienter med statiske leases blive betjent."
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
+msgid "EA-bits length"
+msgstr "EA-bits længde"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1564
+msgid "EAP-Method"
+msgstr "EAP-metode"
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:902
+msgid "Edit"
+msgstr "Rediger"
+
+#: modules/luci-compat/luasrc/view/cbi/error.htm:13
+msgid ""
+"Edit the raw configuration data above to fix any error and hit \"Save\" to "
+"reload the page."
+msgstr ""
+"Rediger de rå konfigurationsdata ovenfor for at rette eventuelle fejl, og "
+"tryk på \"Save\" for at genindlæse siden."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:900
+msgid "Edit this network"
+msgstr "Rediger dette netværk"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:851
+msgid "Edit wireless network"
+msgstr "Rediger trådløst netværk"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:462
+msgid "Egress QoS mapping"
+msgstr "Egress QoS-mapping"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:166
+msgctxt "VLAN port state"
+msgid "Egress tagged"
+msgstr "Egress tagget"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:162
+msgctxt "VLAN port state"
+msgid "Egress untagged"
+msgstr "Egress utagget"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
+msgid "Emergency"
+msgstr "Nødsituation"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937
+msgid "Enable"
+msgstr "Aktiver"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
+msgid ""
+"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
+"snooping"
+msgstr ""
+"Aktiver <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
+"snooping"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:518
+msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
+msgstr "Aktiver <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:785
+msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
+msgstr "Aktiver <abbr title=\"Stateless Address Auto Config\">SLAAC</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:369
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
+msgid "Enable DNS lookups"
+msgstr "Aktiver DNS-opslag"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:294
+msgid "Enable Dynamic Shuffling Of Flows"
+msgstr "Aktiver dynamisk blanding af flows"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
+msgid "Enable HE.net dynamic endpoint update"
+msgstr "Aktiver dynamisk opdatering af HE.net-slutpunktet"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:665
+msgid "Enable IPv6"
+msgstr "Aktiver IPv6"
+
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:101
+msgid "Enable IPv6 negotiation"
+msgstr "Aktiver IPv6-forhandling"
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
+msgid "Enable IPv6 negotiation on the PPP link"
+msgstr "Aktiver IPv6-forhandling på PPP-forbindelsen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:194
+msgid "Enable Jumbo Frame passthrough"
+msgstr "Aktiver Jumbo Frame passthrough"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:696
+msgid "Enable MAC address learning"
+msgstr "Aktiver MAC-adresselæring"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:255
+msgid "Enable NTP client"
+msgstr "Aktiver NTP-klient"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
+msgid "Enable Single DES"
+msgstr "Aktiver Single DES"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479
+msgid "Enable TFTP server"
+msgstr "Aktiver TFTP-server"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:720
+msgid "Enable VLAN filtering"
+msgstr "Aktiver VLAN-filtrering"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
+msgid "Enable VLAN functionality"
+msgstr "Aktiver VLAN-funktionalitet"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1716
+msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
+msgstr "Aktiver WPS-knappen, kræver WPA(2)-PSK/WPA3-SAE"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
+msgid ""
+"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol"
+"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure"
+"\">HTTPS</abbr> port."
+msgstr ""
+"Aktiver automatisk omdirigering af <abbr title=\"Hypertext Transfer Protocol"
+"\">HTTP</abbr>-anmodninger til <abbr title=\"Hypertext Transfer Protocol "
+"Secure\">HTTPS</abbr>-porten."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:960
+msgid ""
+"Enable downstream delegation of IPv6 prefixes available on this interface"
+msgstr ""
+"Aktiver nedstrømsdelegering af IPv6-præfikser, der er tilgængelige på dette "
+"interface"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1712
+msgid "Enable key reinstallation (KRACK) countermeasures"
+msgstr "Aktiver modforanstaltninger til geninstallation af nøgler (KRACK)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:189
+msgid "Enable learning and aging"
+msgstr "Aktiver læring og aldring"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:200
+msgid "Enable mirroring of incoming packets"
+msgstr "Aktiver spejling af indgående pakker"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
+msgid "Enable mirroring of outgoing packets"
+msgstr "Aktiver spejling af udgående pakker"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:715
+msgid "Enable multicast fast leave"
+msgstr "Aktiver multicast fast leave"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:547
+msgid "Enable multicast querier"
+msgstr "Aktiver multicast-querier"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679
+msgid "Enable multicast support"
+msgstr "Aktiver understøttelse af multicast"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1456
+msgid ""
+"Enable packet steering across all CPUs. May help or hinder network speed."
+msgstr ""
+"Aktiver pakkestyring på tværs af alle CPU'er. Kan hjælpe eller hæmme "
+"netværkshastigheden."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:622
+msgid "Enable promiscuous mode"
+msgstr "Aktiver promiscuous tilstand"
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:71
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:66
+msgid "Enable rx checksum"
+msgstr "Aktiver rx-kontrolsum"
+
+#: 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 "Aktiver understøttelse af multicast-trafik (valgfrit)."
+
+#: 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 "Aktiver DF-flaget (Don't Fragment) i de indkapslende pakker."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480
+msgid "Enable the built-in single-instance TFTP server."
+msgstr "Aktiver den indbyggede TFTP-server med enkeltinstans."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895
+msgid "Enable this network"
+msgstr "Aktiver dette netværk"
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:75
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:70
+msgid "Enable tx checksum"
+msgstr "Aktiver tx-kontrolsum"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:699
+msgid "Enable unicast flooding"
+msgstr "Aktiver unicast-flooding"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
+msgid "Enabled"
+msgstr "Aktiveret"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
+msgid "Enables IGMP snooping on this bridge"
+msgstr "Aktiverer IGMP snooping på denne bro"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1504
+msgid ""
+"Enables fast roaming among access points that belong to the same Mobility "
+"Domain"
+msgstr ""
+"Gør det muligt at foretage hurtig roaming mellem adgangspunkter, der "
+"tilhører det samme mobilitetsområde"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:518
+msgid "Enables the Spanning Tree Protocol on this bridge"
+msgstr "Aktiverer Spanning Tree-protokollen på denne bro"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
+msgid "Encapsulation limit"
+msgstr "Indkapslingsgrænse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1489
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1547
+msgid "Encapsulation mode"
+msgstr "Indkapslingstilstand"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1190
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1744
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
+msgid "Encryption"
+msgstr "Kryptering"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+msgid "Endpoint Host"
+msgstr "Slutpunkt vært"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+msgid "Endpoint Port"
+msgstr "Slutpunktsport"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:684
+msgid "Enforce IGMPv1"
+msgstr "Gennemtving IGMPv1"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:685
+msgid "Enforce IGMPv2"
+msgstr "Gennemtving IGMPv2"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:686
+msgid "Enforce IGMPv3"
+msgstr "Gennemtving IGMPv3"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:691
+msgid "Enforce MLD version 1"
+msgstr "Gennemtving MLD version 1"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:692
+msgid "Enforce MLD version 2"
+msgstr "Gennemtving MLD version 2"
+
+#: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
+msgid "Enter custom value"
+msgstr "Angiv brugerdefineret værdi"
+
+#: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
+msgid "Enter custom values"
+msgstr "Angiv brugerdefinerede værdier"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
+msgid "Erasing..."
+msgstr "Sletning..."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:189
+msgid "Error"
+msgstr "Fejl"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
+msgid "Errored seconds (ES)"
+msgstr "Fejlede sekunder (ES)"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3014
+#: modules/luci-compat/luasrc/model/network.lua:1433
+msgid "Ethernet Adapter"
+msgstr "Ethernet adapter"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3005
+#: modules/luci-compat/luasrc/model/network.lua:1423
+msgid "Ethernet Switch"
+msgstr "Ethernet-switch"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:272
+msgid "Every 30 seconds (slow, 0)"
+msgstr "Hvert 30. sekund (langsom, 0)"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:273
+msgid "Every second (fast, 1)"
+msgstr "Hvert sekund (hurtigt, 1)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338
+msgid "Exclude interfaces"
+msgstr "Udelad interfaces"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
+msgid ""
+"Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, "
+"e.g. for RBL services."
+msgstr ""
+"Undtag <code>127.0.0.0.0/8</code> og <code>::1</code> fra kontrol af "
+"rebinding, f.eks. for RBL-tjenester."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:356
+msgid "Existing device"
+msgstr "Eksisterende enhed"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408
+msgid "Expand hosts"
+msgstr "Udvid værter"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977
+msgid "Expecting a hexadecimal assignment hint"
+msgstr "Forventer et hexadecimalt tildelingshint"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:18
+msgid "Expecting a valid IPv4 address"
+msgstr "Forventer en gyldig IPv4-adresse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:18
+msgid "Expecting a valid IPv6 address"
+msgstr "Forventer en gyldig IPv6-adresse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:28
+msgid "Expecting two priority values separated by a colon"
+msgstr "Forventer to prioritetsværdier adskilt af et kolon"
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
+msgid "Expecting: %s"
+msgstr "Forventer: %s"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:50
+msgid "Expecting: non-empty value"
+msgstr "Forventer: ikke-tom værdi"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
+msgid "Expires"
+msgstr "Udløber"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
+msgid ""
+"Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
+msgstr ""
+"Udløbstid for leased adresser, minimum er 2 minutter (<code>2m</code>)."
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
+msgid "External"
+msgstr "Ekstern"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
+msgid "External R0 Key Holder List"
+msgstr "Ekstern R0 Nøgleholderliste"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1559
+msgid "External R1 Key Holder List"
+msgstr "Ekstern R1 nøgleholderliste"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:166
+msgid "External system log server"
+msgstr "Ekstern systemlog-server"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171
+msgid "External system log server port"
+msgstr "Port til ekstern systemlog-server"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:176
+msgid "External system log server protocol"
+msgstr "Protokol til ekstern systemlog-server"
+
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
+msgid "Extra SSH command options"
+msgstr "Ekstra SSH-kommandoindstillinger"
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
+msgid "Extra pppd options"
+msgstr "Ekstra pppd-indstillinger"
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
+msgid "Extra sstpc options"
+msgstr "Ekstra sstpc-indstillinger"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1529
+msgid "FT over DS"
+msgstr "FT over DS"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1530
+msgid "FT over the Air"
+msgstr "FT over luften"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1527
+msgid "FT protocol"
+msgstr "FT-protokol"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
+msgid "Failed to change the system password."
+msgstr "Det lykkedes ikke at ændre systemadgangskoden."
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
+msgid "Failed to confirm apply within %ds, waiting for rollback…"
+msgstr ""
+"Det lykkedes ikke at bekræfte anvendelsen inden for %ds, venter på rollback…"
+
+#: 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 "Fejl i udførelsen af \"/etc/init.d/%s %s %s\" handling: %s"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
+msgid "File"
+msgstr "Fil"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417
+msgid ""
+"File listing upstream resolvers, optionally domain-specific, e.g. "
+"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
+msgstr ""
+"Fil, der viser upstream resolvere, valgfrit domænespecifikke, f.eks. "
+"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
+msgid "File not accessible"
+msgstr "Filen er ikke tilgængelig"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349
+msgid "File to store DHCP lease information."
+msgstr "Fil til lagring af DHCP-leasingoplysninger."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357
+msgid "File with upstream resolvers."
+msgstr "Fil med upstream resolvers."
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
+msgid "Filename"
+msgstr "Filnavn"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492
+msgid "Filename of the boot image advertised to clients."
+msgstr "Filnavn på det boot image, der annonceres til klienterne."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:314
+msgid "Filesystem"
+msgstr "Filsystem"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382
+msgid "Filter private"
+msgstr "Filter privat"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387
+msgid "Filter useless"
+msgstr "Filter ubrugelig"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
+msgid "Filtering for all slaves, no validation"
+msgstr "Filtrering for alle slaver, ingen validering"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
+msgid "Filtering for all slaves, validation only for active slave"
+msgstr "Filtrering for alle slaver, validering kun for aktiv slave"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:391
+msgid "Filtering for all slaves, validation only for backup slaves"
+msgstr "Filtrering for alle slaver, validering kun for backup-slaver"
+
+#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
+msgid "Finalizing failed"
+msgstr "Færdiggørelsen mislykkedes"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
+msgid ""
+"Find all currently attached filesystems and swap and replace configuration "
+"with defaults based on what was detected"
+msgstr ""
+"Find alle aktuelt tilsluttede filsystemer og swap-programmer og erstat "
+"konfigurationen med standardindstillinger baseret på det, der blev fundet"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:878
+msgid "Find and join network"
+msgstr "Find og deltag i netværket"
+
+#: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
+msgid "Finish"
+msgstr "Afslut"
+
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
+msgid "Firewall"
+msgstr "Firewall"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:122
+msgid "Firewall Mark"
+msgstr "Firewall-mærke"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:482
+msgid "Firewall Settings"
+msgstr "Firewall-indstillinger"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:326
+msgid "Firewall Status"
+msgstr "Firewall-status"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176
+msgid "Firewall mark"
+msgstr "Firewall-mærke"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1506
+msgid "Firmware File"
+msgstr "Firmware-fil"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
+msgid "Firmware Version"
+msgstr "Firmware-version"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445
+msgid "Fixed source port for outbound DNS queries."
+msgstr "Fast kildeport til udgående DNS-forespørgsler."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:312
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:449
+msgid "Flash image..."
+msgstr "Flash image..."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:308
+msgid "Flash image?"
+msgstr "Flash image?"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:439
+msgid "Flash new firmware image"
+msgstr "Flash nyt firmware-image"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:384
+msgid "Flash operations"
+msgstr "Flash-operationer"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:317
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:319
+msgid "Flashing…"
+msgstr "Flashing…"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+msgid "For QR-Code support please install the qrencode package!"
+msgstr ""
+"For at få understøttelse af QR-koder skal du installere pakken qrencode!"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
+msgid "Force"
+msgstr "Tving"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:971
+msgid "Force 40MHz mode"
+msgstr "Tvinge 40 MHz-tilstand"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1231
+msgid "Force CCMP (AES)"
+msgstr "Tving CCMP (AES)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
+msgid "Force DHCP on this network even if another server is detected."
+msgstr "Tving DHCP på dette netværk, selvom en anden server er fundet."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
+msgid "Force IGMP version"
+msgstr "Tving IGMP-version"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:689
+msgid "Force MLD version"
+msgstr "Tving MLD-version"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1232
+msgid "Force TKIP"
+msgstr "Tving TKIP"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1233
+msgid "Force TKIP and CCMP (AES)"
+msgstr "Tving TKIP og CCMP (AES)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1220
+msgid "Force link"
+msgstr "Tving link"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:281
+msgid "Force upgrade"
+msgstr "Tving opgradering"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
+msgid "Force use of NAT-T"
+msgstr "Tving brug af NAT-T"
+
+#: modules/luci-base/luasrc/view/csrftoken.htm:8
+msgid "Form token mismatch"
+msgstr "Form token uoverensstemmelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:902
+msgid ""
+"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title="
+"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour "
+"Advertisement, Type 136\">NA</abbr> messages between the designated master "
+"interface and downstream interfaces."
+msgstr ""
+"Videresend <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr "
+"title=\"Neighbour Solicitation, Type 135\">NS</abbr> og <abbr title="
+"\"Neighbour Advertisement, Type 136\">NA</abbr> meddelelser mellem den "
+"udpegede master interface og downstream-interfaces."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770
+msgid ""
+"Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
+"messages received on the designated master interface to downstream "
+"interfaces."
+msgstr ""
+"Videresend <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>-"
+"meddelelser modtaget på den udpegede master interface til downstream-"
+"interfaces."
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
+msgid "Forward DHCP traffic"
+msgstr "Videresend DHCP-trafik"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:874
+msgid ""
+"Forward DHCPv6 messages between the designated master interface and "
+"downstream interfaces."
+msgstr ""
+"Videresend DHCPv6-meddelelser mellem den udpegede master interface og "
+"downstream-interfaces."
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
+msgid "Forward Error Correction Seconds (FECS)"
+msgstr "Fecs (Forward Error Correction Seconds)"
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
+msgid "Forward broadcast traffic"
+msgstr "Videresend broadcast-trafik"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:527
+msgid "Forward delay"
+msgstr "Videresend Forsinkelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
+msgid "Forward mesh peer traffic"
+msgstr "Videresend peer-trafik"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:711
+msgid "Forward multicast packets as unicast packets on this device."
+msgstr "Videresend multicast-pakker som unicast-pakker på denne enhed."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1554
+msgid "Forwarding mode"
+msgstr "Videresendelsestilstand"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:963
+msgid "Fragmentation Threshold"
+msgstr "Fragmenteringstærskel"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
+msgid ""
+"Further information about WireGuard interfaces and peers at <a href='http://"
+"wireguard.com'>wireguard.com</a>."
+msgstr ""
+"Yderligere oplysninger om WireGuard-interfaces og peers findes på <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:161
+msgid "GHz"
+msgstr "GHz"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
+msgid "GPRS only"
+msgstr "Kun GPRS"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
+msgid "GRE tunnel over IPv4"
+msgstr "GRE-tunnel over IPv4"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
+msgid "GRE tunnel over IPv6"
+msgstr "GRE-tunnel over IPv6"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
+msgid "GRETAP tunnel over IPv4"
+msgstr "GRETAP-tunnel over IPv4"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
+msgid "GRETAP tunnel over IPv6"
+msgstr "GRETAP-tunnel over IPv6"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188
+msgid "Gateway"
+msgstr "Gateway"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
+msgid "Gateway Ports"
+msgstr "Gateway-porte"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:11
+#: modules/luci-compat/luasrc/model/network.lua:29
+msgid "Gateway address is invalid"
+msgstr "Gateway-adressen er ugyldig"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:252
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126
+#: 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:121
+msgid "General Settings"
+msgstr "Generelle indstillinger"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:632
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1541
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
+msgid "General Setup"
+msgstr "Generel opsætning"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:336
+msgid "General device options"
+msgstr "Generelle enhedsindstillinger"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
+msgid "Generate Config"
+msgstr "Generere konfiguration"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:91
+msgid "Generate Key"
+msgstr "Generer nøgle"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
+msgid "Generate New QR-Code"
+msgstr "Generer en ny QR-kode"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1533
+msgid "Generate PMK locally"
+msgstr "Generer PMK lokalt"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396
+msgid "Generate archive"
+msgstr "Generer arkiv"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
+msgid "Generate new QR-Code"
+msgstr "Generer ny QR-kode"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
+msgid "Given password confirmation did not match, password not changed!"
+msgstr ""
+"Den givne adgangskodebekræftelse passede ikke, adgangskoden er ikke ændret!"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
+msgid "Global Settings"
+msgstr "Globale indstillinger"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1449
+msgid "Global network options"
+msgstr "Globale netværksindstillinger"
+
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
+#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
+msgid "Go to firmware upgrade..."
+msgstr "Gå til opgradering af firmware..."
+
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
+#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
+msgid "Go to password configuration..."
+msgstr "Gå til adgangskodekonfiguration..."
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
+#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
+msgid "Go to relevant configuration page"
+msgstr "Gå til den relevante konfigurationsside"
+
+#: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:37
+msgid "Grant access to DHCP configuration"
+msgstr "Giver adgang til DHCP-konfiguration"
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:22
+msgid "Grant access to DHCP status display"
+msgstr "Giver adgang til visning af DHCP-status"
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:31
+msgid "Grant access to DSL status display"
+msgstr "Giv adgang til DSL-statusvisning"
+
+#: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
+msgid "Grant access to LuCI OpenConnect procedures"
+msgstr "Giv adgang til LuCI OpenConnect-procedurer"
+
+#: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
+msgid "Grant access to LuCI Wireguard procedures"
+msgstr "Giv adgang til LuCI Wireguard-procedurer"
+
+#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:20
+msgid "Grant access to SSH configuration"
+msgstr "Giv adgang til SSH-konfiguration"
+
+#: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
+msgid "Grant access to basic LuCI procedures"
+msgstr "give adgang til grundlæggende LuCI-procedurer"
+
+#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:79
+msgid "Grant access to crontab configuration"
+msgstr "Giv adgang til crontab-konfiguration"
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:70
+msgid "Grant access to firewall status"
+msgstr "Giv adgang til status for firewall"
+
+#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:132
+msgid "Grant access to flash operations"
+msgstr "give adgang til flash-operationer"
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:3
+msgid "Grant access to main status display"
+msgstr "Giver adgang til hovedstatusdisplayet"
+
+#: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
+msgid "Grant access to mmcli"
+msgstr "Giv adgang til mmcli"
+
+#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:100
+msgid "Grant access to mount configuration"
+msgstr "Giv adgang til monteringskonfiguration"
+
+#: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
+msgid "Grant access to network configuration"
+msgstr "Giv adgang til netværkskonfiguration"
+
+#: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:50
+msgid "Grant access to network diagnostic tools"
+msgstr "Giv adgang til netværksdiagnosticeringsværktøjer"
+
+#: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
+msgid "Grant access to network status information"
+msgstr "Giv adgang til netværksstatusoplysninger"
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
+msgid "Grant access to process status"
+msgstr "Giv adgang til processtatus"
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
+msgid "Grant access to realtime statistics"
+msgstr "Giv adgang til realtidsstatistikker"
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
+msgid "Grant access to routing status"
+msgstr "Giv adgang til status for ruteføring"
+
+#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:57
+msgid "Grant access to startup configuration"
+msgstr "Giv adgang til opstartskonfiguration"
+
+#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
+msgid "Grant access to system configuration"
+msgstr "Giv adgang til systemkonfiguration"
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
+msgid "Grant access to system logs"
+msgstr "Giv adgang til systemlogfiler"
+
+#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:43
+msgid "Grant access to uHTTPd configuration"
+msgstr "Giv adgang til uHTTPd-konfiguration"
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:61
+msgid "Grant access to wireless channel status"
+msgstr "Giv adgang til trådløs kanalstatus"
+
+#: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:40
+msgid "Grant access to wireless status display"
+msgstr "Giv adgang til trådløs statusvisning"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
+msgid "Group Password"
+msgstr "Gruppeadgangskode"
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
+msgid "Guest"
+msgstr "Gæst"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
+msgid "HE.net password"
+msgstr "HE.net adgangskode"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
+msgid "HE.net username"
+msgstr "HE.net brugernavn"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
+msgid "HTTP(S) Access"
+msgstr "HTTP(S)-adgang"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
+msgid "Hang Up"
+msgstr "Læg på"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33
+msgid "Header Error Code Errors (HEC)"
+msgstr "Header Error Code Errors (HEC)"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:5
+msgid "Heartbeat interval (kernel: heartbeat)"
+msgstr "Hjerteslagsinterval (kerne: hjerteslag)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
+msgid "Hello interval"
+msgstr "Hej interval"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113
+msgid ""
+"Here you can configure the basic aspects of your device like its hostname or "
+"the timezone."
+msgstr ""
+"Her kan du konfigurere de grundlæggende aspekter af din enhed som f.eks. "
+"værtsnavn eller tidszone."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
+msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
+msgstr "Skjul <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
+msgid "Hide QR-Code"
+msgstr "Skjul QR-kode"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332
+msgid "Hide empty chains"
+msgstr "Skjul tomme kæder"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
+msgid "High"
+msgstr "Høj"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2158
+#: 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/include/60_wifi.js:225
+msgid "Host"
+msgstr "Vært"
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
+msgid "Host expiry timeout"
+msgstr "Udløbstidspunkt for vært"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507
+msgid "Host requests this filename from the boot server."
+msgstr "Værten anmoder om dette filnavn fra opstartsserveren."
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
+msgid "Host-Uniq tag content"
+msgstr "Host-Uniq tag indhold"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606
+#: 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:87
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:134
+msgid "Hostname"
+msgstr "Værtsnavn"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
+msgid "Hostname to send when requesting DHCP"
+msgstr "Værtsnavn, der skal sendes, når der anmodes om DHCP"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:257
+msgid "Hostnames"
+msgstr "Værtsnavne"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:550
+msgid ""
+"Hostnames are used to bind a domain name to an IP address. This setting is "
+"redundant for hostnames already configured with static leases, but it can be "
+"useful to rebind an FQDN."
+msgstr ""
+"Værtsnavne bruges til at binde et domænenavn til en IP-adresse. Denne "
+"indstilling er overflødig for værtsnavne, der allerede er konfigureret med "
+"statiske leases, men det kan være nyttigt at genbinde et FQDN."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:19
+msgid "How long (in milliseconds) the LED should be off"
+msgstr "Hvor længe (i millisekunder) LED'en skal være slukket"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:13
+msgid "How long (in milliseconds) the LED should be on"
+msgstr "Hvor længe (i millisekunder) LED'en skal være tændt"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
+msgid "Human-readable counters"
+msgstr "Tællere, der kan læses af mennesker"
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
+msgid "Hybrid"
+msgstr "Hybrid"
+
+#: 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 "ID, der bruges til at identificere VXLAN'et entydigt"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
+msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
+msgstr "IEEE 802.3ad Dynamisk link aggregation (802.3ad, 4)"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
+msgid "IKE DH Group"
+msgstr "IKE DH-gruppen"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:108
+msgid "IP Addresses"
+msgstr "IP-adresser"
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:81
+msgid "IP Protocol"
+msgstr "IP-protokol"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258
+msgid "IP Sets"
+msgstr "IP-sæt"
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:126
+msgid "IP Type"
+msgstr "IP-type"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:562
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204
+msgid "IP address"
+msgstr "IP-adresse"
+
+#: 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-adressen er ugyldig"
+
+#: 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-adresse mangler"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:588
+msgid "IP set"
+msgstr "IP-sæt"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295
+msgid "IP sets"
+msgstr "IP-sæt"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
+msgid "IPs to override with NXDOMAIN"
+msgstr "IP'er, der skal tilsidesættes med NXDOMAIN"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:113
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
+msgid "IPv4"
+msgstr "IPv4"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:351
+msgid "IPv4 Firewall"
+msgstr "IPv4-firewall"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:252
+msgid "IPv4 Neighbours"
+msgstr "IPv4-naboer"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251
+msgid "IPv4 Routing"
+msgstr "IPv4-routning"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120
+msgid "IPv4 Rules"
+msgstr "IPv4-regler"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
+msgid "IPv4 Upstream"
+msgstr "IPv4 Upstream"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
+#: 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:664
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164
+msgid "IPv4 address"
+msgstr "IPv4-adresse"
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
+msgid "IPv4 assignment length"
+msgstr "IPv4-tildelingslængde"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
+msgid "IPv4 broadcast"
+msgstr "IPv4 broadcast"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
+msgid "IPv4 gateway"
+msgstr "IPv4-gateway"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:170
+msgid "IPv4 netmask"
+msgstr "IPv4-netmaske"
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
+msgid "IPv4 network in address/netmask notation"
+msgstr "IPv4-netværk i adresse/netmaske-notation"
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:128
+msgid "IPv4 only"
+msgstr "Kun IPv4"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
+msgid "IPv4 prefix"
+msgstr "IPv4-præfiks"
+
+#: 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-præfiks længde"
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:84
+msgid "IPv4+IPv6"
+msgstr "IPv4+IPv6"
+
+#: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
+msgid "IPv4-in-IPv4 (RFC2003)"
+msgstr "IPv4-i-IPv4 (RFC2003)"
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:127
+msgid "IPv4/IPv6 (both - defaults to IPv4)"
+msgstr "IPv4/IPv6 (begge - standardindstillingen er IPv4)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:91
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:114
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
+msgid "IPv6"
+msgstr "IPv6"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:354
+msgid "IPv6 Firewall"
+msgstr "IPv6-firewall"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:669
+msgid "IPv6 MTU"
+msgstr "IPv6 MTU"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:262
+msgid "IPv6 Neighbours"
+msgstr "IPv6-naboer"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:635
+msgid "IPv6 RA Settings"
+msgstr "IPv6 RA-indstillinger"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:261
+msgid "IPv6 Routing"
+msgstr "IPv6-routning"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120
+msgid "IPv6 Rules"
+msgstr "IPv6-regler"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634
+msgid "IPv6 Settings"
+msgstr "IPv6-indstillinger"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1453
+msgid "IPv6 ULA-Prefix"
+msgstr "IPv6 ULA-præfiks"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
+msgid "IPv6 Upstream"
+msgstr "IPv6 Upstream"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:183
+#: 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:127
+msgid "IPv6 address"
+msgstr "IPv6-adresse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:968
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
+msgid "IPv6 assignment hint"
+msgstr "IPv6-tildelingstip"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
+msgid "IPv6 assignment length"
+msgstr "IPv6-tildelingslængde"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:188
+msgid "IPv6 gateway"
+msgstr "IPv6 gateway"
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
+msgid "IPv6 network in address/netmask notation"
+msgstr "IPv6-netværk i adresse/netmaske-notation"
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:129
+msgid "IPv6 only"
+msgstr "Kun IPv6"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1012
+msgid "IPv6 preference"
+msgstr "IPv6-præference"
+
+#: 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-præfiks"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:985
+msgid "IPv6 prefix filter"
+msgstr "IPv6 præfiksfilter"
+
+#: 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-præfiks længde"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
+msgid "IPv6 routed prefix"
+msgstr "IPv6-rutet præfiks"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:956
+msgid "IPv6 source routing"
+msgstr "IPv6 kilde routing"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1008
+msgid "IPv6 suffix"
+msgstr "IPv6-suffiks"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:705
+msgid "IPv6 suffix (hex)"
+msgstr "IPv6-suffiks (hex)"
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
+msgid "IPv6 support"
+msgstr "IPv6-understøttelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
+msgid "IPv6-PD"
+msgstr "IPv6-PD"
+
+#: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
+msgid "IPv6-in-IPv4 (RFC4213)"
+msgstr "IPv6 i IPv4 (RFC4213)"
+
+#: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
+msgid "IPv6-over-IPv4 (6rd)"
+msgstr "IPv6-over-IPv4 (6rd)"
+
+#: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
+msgid "IPv6-over-IPv4 (6to4)"
+msgstr "IPv6-over-IPv4 (6to4)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1666
+msgid "Identity"
+msgstr "Identitet"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
+msgid "If available, the client's \"PresharedKey\""
+msgstr "Hvis den er tilgængelig, klientens \"PresharedKey\""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
+msgid "If checked, 1DES is enabled"
+msgstr "Hvis markeret, er 1DES aktiveret"
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
+msgid "If checked, adds \"+ipv6\" to the pppd options"
+msgstr ""
+"Hvis afkrydsningsfeltet er markeret, føjes \"+ipv6\" til pppd-indstillingerne"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
+msgid "If checked, encryption is disabled"
+msgstr "Hvis afkrydsningsfeltet er markeret, deaktiveres kryptering"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:985
+msgid ""
+"If set, downstream subnets are only allocated from the given IPv6 prefix "
+"classes."
+msgstr ""
+"Hvis de er angivet, tildeles downstream-suvbets kun fra de angivne IPv6-"
+"præfiksklasser."
+
+#: 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 ""
+"Hvis angivet, monteres enheden ved hjælp af dens UUID i stedet for en fast "
+"enheds node"
+
+#: 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 ""
+"Hvis angivet, monteres enheden ved hjælp af partitionsetiketten i stedet for "
+"en fast enheds node"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
+msgid ""
+"If there are any unsaved changes for this client, please save the "
+"configuration before generating a QR-Code"
+msgstr ""
+"Hvis der er nogen ikke-gemte ændringer for denne klient, bedes du gemme "
+"konfigurationen, før du genererer en QR-kode"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:122
+msgid "If unchecked, no default route is configured"
+msgstr "Hvis ikke markeret, er der ikke konfigureret nogen standardrute"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:133
+msgid "If unchecked, the advertised DNS server addresses are ignored"
+msgstr "Hvis ikke markeret, ignoreres de annoncerede DNS-serveradresser"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
+msgid ""
+"If your physical memory is insufficient unused data can be temporarily "
+"swapped to a swap-device resulting in a higher amount of usable <abbr title="
+"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very "
+"slow process as the swap-device cannot be accessed with the high datarates "
+"of the <abbr title=\"Random Access Memory\">RAM</abbr>."
+msgstr ""
+"Hvis din fysiske hukommelse er utilstrækkelig, kan ubrugte data midlertidigt "
+"swappes til en swap-enhed, hvilket resulterer i en større mængde anvendelig "
+"<abbr title=\"Random Access Memory\">RAM</abbr>. Vær opmærksom på, at det er "
+"en meget langsommelig proces at bytte data, da swap-enheden ikke kan tilgås "
+"med de høje datarater i <abbr title=\"Random Access Memory\">RAM</abbr>."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363
+msgid "Ignore <code>/etc/hosts</code>"
+msgstr "Ignorer <code>/etc/hosts</code>"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:666
+msgid "Ignore interface"
+msgstr "Ignorer interface"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352
+msgid "Ignore resolv file"
+msgstr "Ignorer resolv-fil"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:447
+msgid "Image"
+msgstr "Image"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:273
+msgid "Image check failed:"
+msgstr "Image tjek mislykkedes:"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
+msgid "In"
+msgstr "I"
+
+#: modules/luci-base/luasrc/view/csrftoken.htm:13
+msgid ""
+"In order to prevent unauthorized access to the system, your request has been "
+"blocked. Click \"Continue »\" below to return to the previous page."
+msgstr ""
+"For at forhindre uautoriseret adgang til systemet er din anmodning blevet "
+"blokeret. Klik på \"Fortsæt \"\" nedenfor for at vende tilbage til den "
+"foregående side."
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:136
+msgid "In seconds"
+msgstr "I sekunder"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
+msgid "Inactivity timeout"
+msgstr "Timeout for inaktivitet"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:267
+msgid "Inbound:"
+msgstr "Indgående:"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:262
+msgid ""
+"Include in backup a list of current installed packages at /etc/backup/"
+"installed_packages.txt"
+msgstr ""
+"Medtag en liste over aktuelle installerede pakker i backup på /etc/backup/"
+"installed_packages.txt"
+
+#: 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 "Indgående kontrolsum"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144
+msgid "Incoming interface"
+msgstr "Indgående interface"
+
+#: 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 "Indgående nøgle"
+
+#: 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 "Indgående serialisering"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:186
+msgid "Info"
+msgstr "Info"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
+msgid "Information"
+msgstr "Information"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:456
+msgid "Ingress QoS mapping"
+msgstr "Ingress QoS-kortlægning"
+
+#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
+msgid "Initialization failure"
+msgstr "Fejl ved initialisering"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
+msgid "Initscript"
+msgstr "Initscript"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
+msgid "Initscripts"
+msgstr "Initscripts"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1650
+msgid "Inner certificate constraint (Domain)"
+msgstr "Indre certifikatbegrænsning (domæne)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1647
+msgid "Inner certificate constraint (SAN)"
+msgstr "Indre certifikatbegrænsning (SAN)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1644
+msgid "Inner certificate constraint (Subject)"
+msgstr "Indre certifikatbegrænsning (emne)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1653
+msgid "Inner certificate constraint (Wildcard)"
+msgstr "Indre certifikatbegrænsning (Wildcard)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:300
+msgid "Install protocol extensions..."
+msgstr "Installer protokoludvidelser..."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:541
+msgid "Instance"
+msgstr "Instans"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2026
+msgid ""
+"Instead of joining any network with a matching SSID, only connect to the "
+"BSSID <code>%h</code>."
+msgstr ""
+"I stedet for at tilslutte dig ethvert netværk med et tilsvarende SSID skal "
+"du kun oprette forbindelse til BSSID <code>%h</code>."
+
+#: modules/luci-compat/luasrc/view/cbi/map.htm:43
+msgid "Insufficient permissions to read UCI configuration."
+msgstr "Utilstrækkelige tilladelser til at læse UCI-konfiguration."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:180
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
+msgid "Interface"
+msgstr "Interface"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:718
+msgid "Interface \"%h\" is already marked as designated master."
+msgstr "Interface \"%h\" er allerede markeret som udpeget master."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
+msgid "Interface %q device auto-migrated from %q to %q."
+msgstr "Interface %q enhed migreret automatisk fra %q til %q."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:981
+msgid "Interface Configuration"
+msgstr "Interface konfiguration"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
+msgid "Interface has %d pending changes"
+msgstr "Interface har %d afventende ændringer"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
+msgid "Interface is disabled"
+msgstr "Interface er deaktiveret"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
+msgid "Interface is marked for deletion"
+msgstr "Interface er markeret til sletning"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
+msgid "Interface is reconnecting..."
+msgstr "Interface genopretter forbindelse..."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:194
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:204
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
+msgid "Interface is shutting down..."
+msgstr "Interface lukker ned..."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:285
+msgid "Interface is starting..."
+msgstr "Interface starter..."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:288
+msgid "Interface is stopping..."
+msgstr "Interface stopper..."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1152
+msgid "Interface name"
+msgstr "Interface navn"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:123
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:304
+msgid "Interface not present or not connected yet."
+msgstr "Interface ikke til stede eller ikke tilsluttet endnu."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491
+#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
+msgid "Interfaces"
+msgstr "Interfaces"
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
+msgid "Internal"
+msgstr "Intern"
+
+#: modules/luci-base/luasrc/view/error500.htm:8
+msgid "Internal Server Error"
+msgstr "Intern serverfejl"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285
+msgid "Interval For Sending Learning Packets"
+msgstr "Interval for afsendelse af læringspakker"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556
+msgid ""
+"Interval in centiseconds between multicast general queries. By varying the "
+"value, an administrator may tune the number of IGMP messages on the subnet; "
+"larger values cause IGMP Queries to be sent less often"
+msgstr ""
+"Interval i centisekunder mellem generelle forespørgsler om multicast. Ved at "
+"variere værdien kan en administrator justere antallet af IGMP-meddelelser i "
+"subnet; større værdier medfører, at IGMP-forespørgsler sendes sjældnere"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
+msgid "Interval in seconds for STP hello packets"
+msgstr "Interval i sekunder for STP-hello-pakker"
+
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
+#: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
+msgid "Invalid"
+msgstr "Ugyldig"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:101
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:93
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:74
+msgid "Invalid APN provided"
+msgstr "Ugyldig APN angivet"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:26
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:29
+msgid "Invalid Base64 key string"
+msgstr "Ugyldig Base64-nøglestreng"
+
+#: 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 "Ugyldig TOS-værdi, forventet 00..FF eller nedarv"
+
+#: 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 "Ugyldig trafikklasseværdi, forventet 00..FF eller nedarv"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:287
+msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
+msgstr "Ugyldigt VLAN ID angivet! Kun ID'er mellem %d og %d er tilladt."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:296
+msgid "Invalid VLAN ID given! Only unique IDs are allowed"
+msgstr "Ugyldigt VLAN ID angivet! Kun unikke ID'er er tilladt"
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
+msgid "Invalid argument"
+msgstr "Ugyldigt argument"
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46
+msgid ""
+"Invalid bearer list. Possibly too many bearers created. This protocol "
+"supports one and only one bearer."
+msgstr ""
+"Ugyldig bearer-liste. Muligvis er der oprettet for mange bærere. Denne "
+"protokol understøtter én og kun én bearer."
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
+msgid "Invalid command"
+msgstr "Ugyldig kommando"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:126
+msgid "Invalid hexadecimal value"
+msgstr "Ugyldig hexadecimal værdi"
+
+#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
+msgid "Invalid username and/or password! Please try again."
+msgstr "Ugyldigt brugernavn og/eller password! Prøv venligst igen."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191
+msgid "Invert match"
+msgstr "Omvendt match"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1148
+msgid "Isolate Clients"
+msgstr "Isoler klienter"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:236
+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 ""
+"Det ser ud til, at du forsøger at flashe et image, der ikke passer ind i "
+"flashhukommelsen, kontrollere venligst imagefilen!"
+
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
+msgid "JavaScript required!"
+msgstr "JavaScript påkrævet!"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1824
+msgid "Join Network"
+msgstr "Deltag i netværk"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1758
+msgid "Join Network: Wireless Scan"
+msgstr "Tilslut netværk: Trådløs scanning"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2034
+msgid "Joining Network: %q"
+msgstr "Tilslutning til netværk: %q"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171
+msgid "Jump to rule"
+msgstr "Gå til regel"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:228
+msgid "Keep settings and retain the current configuration"
+msgstr "Bevar indstillingerne og den aktuelle konfiguration"
+
+#: 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:60
+msgid "Kernel Log"
+msgstr "Kernelog"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
+msgid "Kernel Version"
+msgstr "Kerneversion"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1442
+msgid "Key"
+msgstr "Nøgle"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1472
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1473
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1485
+msgid "Key #%d"
+msgstr "Nøgle #%d"
+
+#: 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 "Nøgle til indgående pakker (valgfrit)."
+
+#: 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 "Nøgle til udgående pakker (valgfrit)."
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
+msgid "Kill"
+msgstr "Kill"
+
+#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
+msgid "L2TP"
+msgstr "L2TP"
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
+msgid "L2TP Server"
+msgstr "L2TP Server"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:269
+msgid "LACPDU Packets"
+msgstr "LACPDU-pakker"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
+msgid "LCP echo failure threshold"
+msgstr "Tærskel for LCP-echofejl"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
+msgid "LCP echo interval"
+msgstr "LCP-echo interval"
+
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:115
+msgid "LED Configuration"
+msgstr "LED-konfiguration"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1548
+msgid "LLC"
+msgstr "LLC"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
+msgid "Label"
+msgstr "Etiket"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:224
+msgid "Language"
+msgstr "Sprog"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
+msgid "Language and Style"
+msgstr "Sprog og stil"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
+msgid "Last member interval"
+msgstr "Sidste medlemsinterval"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23
+msgid "Latency"
+msgstr "Latency"
+
+#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
+msgid "Leaf"
+msgstr "Blad"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
+msgid "Learn"
+msgstr "Lær"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906
+msgid "Learn routes"
+msgstr "Lær ruter"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348
+msgid "Lease file"
+msgstr "Lease-fil"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:696
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
+msgid "Lease time"
+msgstr "Lease tid"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:41
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:60
+#: 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 "Lease time remaining"
+msgstr "Resterende Lease"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
+msgid "Leave empty to autodetect"
+msgstr "Lad det være tomt for at autodetektere"
+
+#: 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 "Lad være tom for at bruge den aktuelle WAN-adresse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:944
+msgid ""
+"Legacy or badly behaving devices may require legacy 802.11b rates to "
+"interoperate. Airtime efficiency may be significantly reduced where these "
+"are used. It is recommended to not allow 802.11b rates where possible."
+msgstr ""
+"Ældre eller dårligt fungerende enheder kan kræve ældre 802.11b-hastigheder "
+"for at kunne fungere sammen. Lufttidseffektiviteten kan blive væsentligt "
+"reduceret, hvis disse anvendes. Det anbefales, at 802.11b-hastigheder så "
+"vidt muligt ikke tillades."
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
+msgid "Legend:"
+msgstr "Legend:"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
+msgid "Limit"
+msgstr "Grænse"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
+msgid "Line Attenuation (LATN)"
+msgstr "Linjedæmpning (LATN)"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18
+msgid "Line Mode"
+msgstr "Linjetilstand"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17
+msgid "Line State"
+msgstr "Linjetilstand"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19
+msgid "Line Uptime"
+msgstr "Linje oppetid"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:125
+msgid "Link Aggregation (Channel Bonding)"
+msgstr "Link Aggregation (kanalbinding)"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349
+msgid "Link Monitoring"
+msgstr "Overvågning af link"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
+msgid "Link On"
+msgstr "Link på"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432
+msgid "List of IP addresses to convert into NXDOMAIN responses."
+msgstr "Liste over IP-adresser, der skal konverteres til NXDOMAIN-svar."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:580
+msgid "List of IP sets to populate with the specified domain IPs."
+msgstr "Liste over IP-sæt, der skal udfyldes med de angivne domæne-IP'er."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
+msgid ""
+"List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
+"Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
+"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
+"from the R0KH that the STA used during the Initial Mobility Domain "
+"Association."
+msgstr ""
+"Liste over R0KH'er i det samme mobilitetsområde. <br />Format: MAC-adresse, "
+"NAS-identifikator, 128-bit nøgle som hex-streng. <br />Denne liste bruges "
+"til at mappe R0KH-ID (NAS-identifikator) til en destinations-MAC-adresse, "
+"når der anmodes om PMK-R1-nøgle fra den R0KH, som STA'en brugte under den "
+"indledende mobilitetsdomæneassociation."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1559
+msgid ""
+"List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
+"as 6 octets with colons,128-bit key as hex string. <br />This list is used "
+"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
+"R0KH. This is also the list of authorized R1KHs in the MD that can request "
+"PMK-R1 keys."
+msgstr ""
+"Liste over R1KH'er i det samme mobilitetsområde. <br />Format: MAC-adresse, "
+"R1KH-ID som 6 oktetter med kolon, 128-bit nøgle som hex-streng. <br />Denne "
+"liste bruges til at mappe R1KH-ID til en MAC-destinationsadresse, når der "
+"sendes PMK-R1-nøgle fra R0KH'en. Dette er også listen over autoriserede "
+"R1KH'er i MD, der kan anmode om PMK-R1-nøgler."
+
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
+msgid "List of SSH key files for auth"
+msgstr "Liste over SSH-nøglefiler til auth"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312
+msgid "List of domains to allow RFC1918 responses for."
+msgstr "Liste over domæner, som der skal tillades RFC1918-svar for."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290
+msgid "List of domains to force to an IP address."
+msgstr "Liste over domæner, der skal tvinges til en IP-adresse."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283
+msgid "List of upstream resolvers to forward queries to."
+msgstr "Liste over upstream-resolvere at videresende forespørgsler til."
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:103
+msgid "Listen Port"
+msgstr "Lytteport"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332
+msgid "Listen interfaces"
+msgstr "Lytte interfaces"
+
+#: 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 "Lytter kun på det angivne interface eller, hvis ikke angivet, på alle"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333
+msgid ""
+"Listen only on the specified interfaces, and loopback if not excluded "
+"explicitly."
+msgstr ""
+"Lyt kun på de angivne interfaces, og loopback, hvis det ikke er eksplicit "
+"ekskluderet."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438
+msgid "Listening port for inbound DNS queries."
+msgstr "Lytteport til indgående DNS-forespørgsler."
+
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:106
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
+msgid "Load"
+msgstr "Læs"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:62
+msgid "Load Average"
+msgstr "Gennemsnitlig belastning"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
+msgid "Loading QR-Code..."
+msgstr "Indlæser QR-kode..."
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
+msgid "Loading directory contents…"
+msgstr "Indlæser mappeindhold…"
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
+#: modules/luci-base/luasrc/view/view.htm:4
+#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
+msgid "Loading view…"
+msgstr "Indlæser visning…"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:870
+msgid "Local"
+msgstr "Lokal"
+
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77
+msgid "Local IP address"
+msgstr "Lokal IP-adresse"
+
+#: 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 "Den lokale IP-adresse er ugyldig"
+
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
+msgid "Local IP address to assign"
+msgstr "Lokal IP-adresse, der skal tildeles"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
+msgid "Local IPv4 address"
+msgstr "Lokal IPv4-adresse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:884
+msgid "Local IPv6 DNS server"
+msgstr "Lokal IPv6 DNS-server"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.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 "Lokal IPv6-adresse"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
+msgid "Local Startup"
+msgstr "Lokal opstart"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:130
+msgid "Local Time"
+msgstr "Lokal tid"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:986
+msgid "Local ULA"
+msgstr "Lokal ULA"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273
+msgid "Local domain"
+msgstr "Lokalt domæne"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
+msgid "Local domain suffix appended to DHCP names and hosts file entries."
+msgstr "Lokalt domæne-suffiks tilføjes til DHCP-navne og poster i hosts-filen."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269
+msgid "Local server"
+msgstr "Lokal server"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319
+msgid "Local service only"
+msgstr "Kun lokal betjening"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:391
+msgid "Localise queries"
+msgstr "Lokaliser forespørgsler"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2026
+msgid "Lock to BSSID"
+msgstr "Lås til BSSID"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:184
+msgid "Log output level"
+msgstr "Log output-niveau"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277
+msgid "Log queries"
+msgstr "Log forespørgsler"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:122
+msgid "Logging"
+msgstr "Logning"
+
+#: 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 ""
+"Logisk netværk, hvorfra det lokale slutpunkt skal vælges, hvis den lokale "
+"IPv6-adresse er tom, og der ikke er nogen WAN IPv6-adresse tilgængelig "
+"(valgfrit)."
+
+#: 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 ""
+"Logisk netværk, som tunnelen skal tilføjes til (overbrygges) (valgfrit)."
+
+#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
+msgid "Login"
+msgstr "Login"
+
+#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
+msgid "Logout"
+msgstr "Log ud"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:628
+msgid "Loose filtering"
+msgstr "Løs filtrering"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31
+msgid "Loss of Signal Seconds (LOSS)"
+msgstr "Sekunder med tab af signal (LOSS)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:669
+msgid "Lowest leased address as offset from the network address."
+msgstr "Laveste leased adresse som forskydning fra netværksadressen."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
+msgid "MAC"
+msgstr "MAC"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1425
+msgid "MAC Address"
+msgstr "MAC-adresse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1084
+msgid "MAC Address Filter"
+msgstr "MAC-adressefilter"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:253
+msgid "MAC Address For The Actor"
+msgstr "MAC-adresse for aktøren"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:347
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1393
+msgid "MAC VLAN"
+msgstr "MAC VLAN"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:618
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2157
+#: 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:89
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:224
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:179
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:205
+msgid "MAC address"
+msgstr "MAC-adresse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:987
+msgid "MAC-Filter"
+msgstr "MAC-Filter"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1091
+msgid "MAC-List"
+msgstr "MAC-liste"
+
+#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
+msgid "MAP / LW4over6"
+msgstr "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-reglen er ugyldig"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
+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:28
+msgid "MHz"
+msgstr "MHz"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:354
+msgid "MII"
+msgstr "MII"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
+msgid "MII / ETHTOOL ioctls"
+msgstr "MII / ETHTOOL ioctls"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
+msgid "MII Interval"
+msgstr "MII-interval"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1437
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:117
+msgid "MTU"
+msgstr "MTU"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:302
+msgid ""
+"Make sure to clone the root filesystem using something like the commands "
+"below:"
+msgstr ""
+"Sørg for at klone rodfilssystemet ved at bruge noget i stil med nedenstående "
+"kommandoer:"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:122
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:114
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
+msgid "Manual"
+msgstr "Manuel"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3872
+msgid "Master"
+msgstr "Master"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
+msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
+msgstr "Max <abbr title=\"Router Advertisement\">RA</abbr>-interval"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22
+msgid "Max. Attainable Data Rate (ATTNDR)"
+msgstr "Max. opnåelig datahastighed (ATTNDR)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451
+msgid "Max. DHCP leases"
+msgstr "Max. DHCP-leases"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458
+msgid "Max. EDNS0 packet size"
+msgstr "Max. EDNS0-pakkestørrelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465
+msgid "Max. concurrent queries"
+msgstr "Maks. samtidige forespørgsler"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:532
+msgid "Maximum age"
+msgstr "Maksimal alder"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1180
+msgid "Maximum allowed Listen Interval"
+msgstr "Maksimalt tilladt lytteinterval"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452
+msgid "Maximum allowed number of active DHCP leases."
+msgstr "Det maksimalt tilladte antal aktive DHCP-leases."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466
+msgid "Maximum allowed number of concurrent DNS queries."
+msgstr "Det maksimalt tilladte antal samtidige DNS-forespørgsler."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459
+msgid "Maximum allowed size of EDNS0 UDP packets."
+msgstr "Maksimal tilladt størrelse af EDNS0 UDP-pakker."
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:118
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:106
+msgid "Maximum amount of seconds to wait for the modem to become ready"
+msgstr "Maksimalt antal sekunder, som modemet skal vente på at blive klar"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
+msgid "Maximum number of leased addresses."
+msgstr "Maksimalt antal leased adresser."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:542
+msgid "Maximum snooping table size"
+msgstr "Maksimal størrelse af snooping-tabellen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
+msgid ""
+"Maximum time allowed between sending unsolicited <abbr title=\"Router "
+"Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
+msgstr ""
+"Maksimal tilladt tid mellem afsendelse af uopfordrede <abbr title=\"Router "
+"Advertisement, ICMPv6 Type 134\">RA</abbr>. Standardværdien er 600 sekunder."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947
+msgid "Maximum transmit power"
+msgstr "Maksimal sendestyrke"
+
+#: 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:28
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:162
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:324
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
+msgid "Mbit/s"
+msgstr "Mbit/s"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
+msgid "Medium"
+msgstr "Medium"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
+msgid "Memory"
+msgstr "Hukommelse"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
+msgid "Memory usage (%)"
+msgstr "Hukommelsesforbrug (%)"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3875
+msgid "Mesh"
+msgstr "Mesh"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
+msgid "Mesh ID"
+msgstr "Mesh ID"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:995
+msgid "Mesh Id"
+msgstr "Mesh Id"
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
+msgid "Method not found"
+msgstr "Metode ikke fundet"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:350
+msgid "Method of link monitoring"
+msgstr "Metode til overvågning af forbindelsen"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419
+msgid "Method to determine link status"
+msgstr "Metode til bestemmelse af forbindelsesstatus"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215
+msgid "Metric"
+msgstr "Metric"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
+msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
+msgstr "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:661
+msgid "Minimum ARP validity time"
+msgstr "Minimum ARP gyldighedstid"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:237
+msgid "Minimum Number of Links"
+msgstr "Minimum antal links"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:661
+msgid ""
+"Minimum required time in seconds before an ARP entry may be replaced. "
+"Prevents ARP cache thrashing."
+msgstr ""
+"Minimum påkrævet tid i sekunder, før en ARP-post kan erstattes. Forhindrer "
+"ARP-cache-thashing."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
+msgid ""
+"Minimum time allowed between sending unsolicited <abbr title=\"Router "
+"Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
+msgstr ""
+"Minimum tilladt tid mellem afsendelse af uopfordret <abbr title=\"Router "
+"Advertisement, ICMPv6 Type 134\">RA</abbr>. Standard er 200 sekunder."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:204
+msgid "Mirror monitor port"
+msgstr "Spejlovervågningsport"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:203
+msgid "Mirror source port"
+msgstr "Spejlkildeport"
+
+#: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
+msgid "Mobile Data"
+msgstr "Mobile data"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1515
+msgid "Mobility Domain"
+msgstr "Mobilitetsdomæne"
+
+#: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:434
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:493
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:990
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1742
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:378
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:139
+msgid "Mode"
+msgstr "Mode"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
+msgid "Model"
+msgstr "Model"
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43
+msgid "Modem bearer teardown in progress."
+msgstr "Modem bearer teardown er i gang."
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42
+msgid ""
+"Modem connection in progress. Please wait. This process will timeout after 2 "
+"minutes."
+msgstr ""
+"Modemforbindelse er i gang. Vent venligst. Denne proces vil timeout efter 2 "
+"minutter."
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:73
+msgid "Modem default"
+msgstr "Modem standard"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
+msgid "Modem device"
+msgstr "Modem-enhed"
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41
+msgid "Modem disconnection in progress. Please wait."
+msgstr "Modemafbrydelse i gang. Vent venligst."
+
+#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
+msgid "Modem information query failed"
+msgstr "Forespørgsel om modemoplysninger mislykkedes"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:118
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:106
+msgid "Modem init timeout"
+msgstr "Modem init timeout"
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44
+msgid "Modem is disabled."
+msgstr "Modem er deaktiveret."
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52
+msgid "ModemManager"
+msgstr "ModemManager"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3876
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1078
+msgid "Monitor"
+msgstr "Overvågning"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
+msgid "More Characters"
+msgstr "Flere karakterer"
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
+msgid "More…"
+msgstr "Mere…"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
+msgid "Mount Point"
+msgstr "Monteringspunkt"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:102
+msgid "Mount Points"
+msgstr "Monteringspunkter"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
+msgid "Mount Points - Mount Entry"
+msgstr "Monteringspunkter - Mount Entry"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
+msgid "Mount Points - Swap Entry"
+msgstr "Monteringspunkter - Swap Entry"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
+msgid ""
+"Mount Points define at which point a memory device will be attached to the "
+"filesystem"
+msgstr ""
+"Monteringspunkter definerer, hvornår en hukommelsesenhed skal tilsluttes "
+"filsystemet"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
+msgid "Mount attached devices"
+msgstr "Montering af tilsluttede enheder"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
+msgid "Mount filesystems not specifically configured"
+msgstr "Montering af filsystemer, der ikke er specifikt konfigureret"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
+msgid "Mount options"
+msgstr "Monterings indstillinger"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
+msgid "Mount point"
+msgstr "Monteringspunkt"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
+msgid "Mount swap not specifically configured"
+msgstr "Monterings swap er ikke specifikt konfigureret"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
+msgid "Mounted file systems"
+msgstr "Monterede filsystemer"
+
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
+msgid "Move down"
+msgstr "Flyt ned"
+
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
+msgid "Move up"
+msgstr "Flyt op"
+
+#: 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/tools/network.js:705
+msgid "Multicast routing"
+msgstr "Multicast-routing"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:711
+msgid "Multicast to unicast"
+msgstr "Multicast til unicast"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1510
+msgid "NAS ID"
+msgstr "NAS-ID"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
+msgid "NAT-T Mode"
+msgstr "NAT-T-tilstand"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
+msgid "NAT64 Prefix"
+msgstr "NAT64 Præfiks"
+
+#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
+msgid "NCM"
+msgstr "NCM"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
+msgid "NDP-Proxy slave"
+msgstr "NDP-Proxy-slave"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
+msgid "NT Domain"
+msgstr "NT-domæne"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:289
+msgid "NTP server candidates"
+msgstr "Kandidater til NTP-server"
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
+msgid "Name"
+msgstr "Navn"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2004
+msgid "Name of the new network"
+msgstr "Navn på det nye netværk"
+
+#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
+msgid "Navigation"
+msgstr "Navigation"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653
+msgid "Neighbour cache validity"
+msgstr "Naboens cache gyldighed"
+
+#: 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:1023
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2156
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383
+#: 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:223
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:186
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:212
+msgid "Network"
+msgstr "Netværk"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1998
+msgid "Network SSID"
+msgstr "Netværks-SSID"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
+msgid "Network Utilities"
+msgstr "Netværksværktøjer"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491
+msgid "Network boot image"
+msgstr "Netværks boot image"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:392
+msgid "Network bridge configuration migration"
+msgstr "Migration af konfigurationen af netværksbroen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:343
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1399
+msgid "Network device"
+msgstr "Netværksenhed"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
+msgid "Network device activity (kernel: netdev)"
+msgstr "Aktivitet på netværksenhed (kerne: netdev)"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:15
+#: modules/luci-compat/luasrc/model/network.lua:33
+msgid "Network device is not present"
+msgstr "Netværksenhed er ikke til stede"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:426
+msgid "Network ifname configuration migration"
+msgstr "Migration af netværks ifname-konfiguration"
+
+#: 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 "Netværks interface"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530
+msgid "Network-ID"
+msgstr "Netværks-ID"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:706
+msgid "Never"
+msgstr "Aldrig"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270
+msgid ""
+"Never forward matching domains and subdomains, resolve from DHCP or hosts "
+"files only."
+msgstr ""
+"Videresend aldrig matchende domæner og underdomæner, men kun fra DHCP- eller "
+"hosts-filer."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1139
+msgid "New interface for \"%s\" can not be created: %s"
+msgstr "Der kan ikke oprettes et nyt interface for \"%s\": %s"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1090
+msgid "New interface name…"
+msgstr "Nyt navn på interface…"
+
+#: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
+msgid "Next »"
+msgstr "Næste »"
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
+msgid "No"
+msgstr "Nej"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:643
+msgid "No DHCP Server configured for this interface"
+msgstr "Ingen DHCP-server er konfigureret for dette interface"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:193
+msgid "No Data"
+msgstr "Ingen data"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1383
+msgid "No Encryption"
+msgstr "Ingen kryptering"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:112
+msgid "No Host Routes"
+msgstr "Ingen værtsruter"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
+msgid "No NAT-T"
+msgstr "Ingen NAT-T"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
+msgid "No RX signal"
+msgstr "Intet RX-signal"
+
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
+#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
+msgid ""
+"No changes to settings will be stored and are lost after rebooting. This "
+"mode should only be used to install a firmware upgrade"
+msgstr ""
+"Ingen ændringer i indstillingerne gemmes og går tabt efter genstart. Denne "
+"tilstand bør kun bruges til at installere en firmwareopgradering"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
+msgid "No client associated"
+msgstr "Ingen tilknyttet klient"
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
+msgid "No data received"
+msgstr "Ingen data modtaget"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:690
+msgid "No enforcement"
+msgstr "Ingen håndhævelse"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:229
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:232
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:235
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:238
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:241
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:244
+msgid "No entries available"
+msgstr "Ingen tilgængelige poster"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
+msgid "No entries in this directory"
+msgstr "Ingen poster i denne mappe"
+
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82
+msgid "No files found"
+msgstr "Ingen filer fundet"
+
+#: 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 "Ingen værtsrute"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:732
+#: 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:353
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
+msgid "No information available"
+msgstr "Ingen oplysninger tilgængelige"
+
+#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
+msgid "No matching prefix delegation"
+msgstr "Ingen tilsvarende præfiksdelegation"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:142
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:145
+msgid "No more slaves available"
+msgstr "Der er ikke flere slaver til rådighed"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:189
+msgid "No more slaves available, can not save interface"
+msgstr "Der er ikke flere slaver til rådighed, kan ikke gemme interface"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412
+msgid "No negative cache"
+msgstr "Ingen negativ cache"
+
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
+#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
+msgid "No password set!"
+msgstr "Ingen adgangskode angivet!"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:150
+msgid "No peers defined yet"
+msgstr "Ingen peers defineret endnu"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:140
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:277
+msgid "No public keys present yet."
+msgstr "Der er endnu ingen offentlige nøgler til stede."
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
+msgid "No rules in this chain."
+msgstr "Der er ingen regler i denne kæde."
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385
+msgid "No validation or filtering"
+msgstr "Ingen validering eller filtrering"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1181
+msgid "No zone assigned"
+msgstr "Ingen zone tildelt"
+
+#: 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:226
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:270
+msgid "Noise"
+msgstr "Støj"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
+msgid "Noise Margin (SNR)"
+msgstr "Støjmargin (SNR)"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:272
+msgid "Noise:"
+msgstr "Støj:"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34
+msgid "Non Pre-emptive CRC errors (CRC_P)"
+msgstr "Ikke-forebyggende CRC-fejl (CRC_P)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325
+msgid "Non-wildcard"
+msgstr "Ikke-wildcard"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:112
+msgid "None"
+msgstr "Ingen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:955
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:197
+msgid "Normal"
+msgstr "Normal"
+
+#: modules/luci-base/luasrc/view/error404.htm:8
+msgid "Not Found"
+msgstr "Blev ikke fundet"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
+msgid "Not associated"
+msgstr "Ikke tilknyttet"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
+msgid "Not connected"
+msgstr "Ikke tilsluttet"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:121
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:147
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:312
+msgid "Not present"
+msgstr "Ikke til stede"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
+msgid "Not started on boot"
+msgstr "Ikke startet ved boot"
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
+msgid "Not supported"
+msgstr "Understøttes ikke"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
+msgid ""
+"Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
+"have problems"
+msgstr ""
+"Bemærk: Nogle trådløse drivere understøtter ikke fuldt ud 802.11w. F.eks. "
+"mwlwifi kan have problemer"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:141
+msgid "Notes"
+msgstr "Noter"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187
+msgid "Notice"
+msgstr "Varsel"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:138
+msgid "Nslookup"
+msgstr "Nslookup"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333
+msgid "Number of IGMP membership reports"
+msgstr "Antal IGMP-medlemskabsrapporter"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473
+msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching."
+msgstr "Antal cachede DNS-poster, 10000 er maksimum, 0 er ingen caching."
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:311
+msgid "Number of peer notifications after failover event"
+msgstr "Antal peer-meddelelser efter failover-hændelse"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
+msgid "Obfuscated Group Password"
+msgstr "Sløret gruppeadgangskode"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
+msgid "Obfuscated Password"
+msgstr "Sløret adgangskode"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:110
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
+msgid "Obtain IPv6 address"
+msgstr "Få IPv6-adresse"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352
+msgid "Off"
+msgstr "Off"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:18
+msgid "Off-State Delay"
+msgstr "Off-State forsinkelse"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
+msgid "On"
+msgstr "On"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:12
+msgid "On-State Delay"
+msgstr "On-State Forsinkelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109
+msgid "On-link"
+msgstr "On-link"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:671
+msgid "One of hostname or MAC address must be specified!"
+msgstr "Der skal angives et værtsnavn eller MAC-adresse!"
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
+msgid "One of the following: %s"
+msgstr "En af følgende: %s"
+
+#: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
+#: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
+msgid "One or more fields contain invalid values!"
+msgstr "Et eller flere felter indeholder ugyldige værdier!"
+
+#: modules/luci-compat/luasrc/view/cbi/map.htm:32
+msgid "One or more invalid/required values on tab"
+msgstr "En eller flere ugyldige/påkrævede værdier på fanen"
+
+#: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
+#: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
+msgid "One or more required fields have no value!"
+msgstr "Et eller flere obligatoriske felter har ingen værdi!"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702
+msgid "Only allow communication with non-isolated bridge ports when enabled"
+msgstr ""
+"Tillader kun kommunikation med ikke-isolerede broporte, når den er aktiveret"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:231
+msgid ""
+"Only if current active slave fails and the primary slave is up (failure, 2)"
+msgstr ""
+"Kun hvis den aktuelle aktive slave fejler, og den primære slave er oppe "
+"(fejl, 2)"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19
+msgid "Open list..."
+msgstr "Åbn listen..."
+
+#: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:64
+msgid "OpenConnect (CISCO AnyConnect)"
+msgstr "OpenConnect (CISCO AnyConnect)"
+
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12
+msgid "OpenFortivpn"
+msgstr "OpenFortivpn"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
+msgid ""
+"Operate in <em>relay mode</em> if a designated master interface is "
+"configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
+"Protocol\">NDP</abbr> proxying."
+msgstr ""
+"Operer i <em>relaytilstand</em>, hvis en udpeget master interface er "
+"konfigureret og aktiv, ellers deaktiveres <abbr title=\"Neighbour Discovery "
+"Protocol\">NDP</abbr>proxying."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:723
+msgid ""
+"Operate in <em>relay mode</em> if a designated master interface is "
+"configured and active, otherwise fall back to <em>server mode</em>."
+msgstr ""
+"Opererer i <em>relætilstand</em>, hvis en udpeget master interface er "
+"konfigureret og aktiv, ellers falder tilbage til <em>servertilstand</em>."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:725
+msgid ""
+"Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
+"otherwise disable service."
+msgstr ""
+"Opererer i <em>relay-tilstand</em>, hvis der er et opstrøms IPv6-præfiks til "
+"stede, ellers deaktiveres tjenesten."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:940
+msgid "Operating frequency"
+msgstr "Driftsfrekvens"
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
+msgid "Option \"%s\" contains an invalid input value."
+msgstr "Indstillingen \"%s\" indeholder en ugyldig inputværdi."
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
+msgid "Option \"%s\" must not be empty."
+msgstr "Indstillingen \"%s\" må ikke være tom."
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
+msgid "Option changed"
+msgstr "Indstillingen er ændret"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+msgid "Option removed"
+msgstr "Indstillingen er fjernet"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1681
+msgid "Optional"
+msgstr "Valgfrit"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:141
+msgid "Optional, free-form notes about this device"
+msgstr "Valgfri, noter i frit format om denne enhed"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:122
+msgid ""
+"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
+"starting with <code>0x</code>."
+msgstr ""
+"Valgfrit. 32-bit mærke for udgående krypterede pakker. Indtast værdien i "
+"hexadecimal, begyndende med <code>0x</code>."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1008
+msgid ""
+"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
+"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
+"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
+"for the interface."
+msgstr ""
+"Valgfrit. Tilladte værdier: Eui64', 'random', fast værdi som '::1' eller "
+"'::1:2'. Når IPv6-præfikset (f.eks. \"a:b:c:d:::\") modtages fra en "
+"delegerende server, skal suffikset (f.eks. \"::1\") bruges til at danne IPv6-"
+"adressen (\"a:b:c:d::1\") for interface."
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
+msgid ""
+"Optional. Base64-encoded preshared key. Adds in an additional layer of "
+"symmetric-key cryptography for post-quantum resistance."
+msgstr ""
+"Valgfrit. Base64-kodet forhåndsdelte nøgle. Tilføjer et ekstra lag af "
+"symmetrisk nøgle-kryptografi til post-kvantum-modstandsdygtighed."
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
+msgid "Optional. Create routes for Allowed IPs for this peer."
+msgstr "Valgfrit. Opret ruter til tilladte IP'er for denne peer."
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
+msgid "Optional. Description of peer."
+msgstr "Valgfrit. Beskrivelse af peer."
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:112
+msgid "Optional. Do not create host routes to peers."
+msgstr "Valgfrit. Der må ikke oprettes værtsruter til peers."
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+msgid ""
+"Optional. Host of peer. Names are resolved prior to bringing up the "
+"interface."
+msgstr "Valgfrit. Vært for peer. Navne opløses, før interface oprettes."
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+msgid ""
+"Optional. IP addresses and prefixes that this peer is allowed to use inside "
+"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
+"routes through the tunnel."
+msgstr ""
+"Valgfrit. IP-adresser og præfikser, som denne peer har tilladelse til at "
+"bruge i tunnelen. Normalt peerens tunnel-IP-adresser og de netværk, som "
+"peer'en dirigerer gennem tunnelen."
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:117
+msgid "Optional. Maximum Transmission Unit of tunnel interface."
+msgstr "Valgfrit. Maksimal transmissionsenhed for tunnel interface."
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+msgid "Optional. Port of peer."
+msgstr "Valgfri. Peer-port."
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
+msgid ""
+"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
+"Recommended value if this device is behind a NAT is 25."
+msgstr ""
+"Valgfrit. Sekunder mellem hold i live meddelelser. Standardværdien er 0 "
+"(deaktiveret). Den anbefalede værdi, hvis enheden er bag en NAT, er 25."
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:103
+msgid "Optional. UDP port used for outgoing and incoming packets."
+msgstr "Valgfrit. UDP-port, der bruges til udgående og indgående pakker."
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
+msgid "Options"
+msgstr "Indstillinger"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525
+msgid ""
+"Options for the Network-ID. (Note: needs also Network-ID.) E.g. "
+"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>"
+"\" for default route. <code>0.0.0.0</code> means \"the address of the system "
+"running dnsmasq\"."
+msgstr ""
+"Indstillinger for Network-ID. (Bemærk: har også brug for Network-ID.) F.eks. "
+"\"<code>42,192.168.1.4</code>\" for NTP-server, \"<code>3,192.168.4.4</code>"
+"\" for standardrute. <code>0.0.0.0.0.0</code> betyder \"adressen på det "
+"system, der kører dnsmasq\"."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119
+msgid "Options:"
+msgstr "Indstillinger:"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:348
+msgid "Other:"
+msgstr "Andet:"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
+msgid "Out"
+msgstr "Ud"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
+msgid "Outbound:"
+msgstr "Udgående:"
+
+#: 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 "Udgående kontrolsum"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155
+msgid "Outgoing interface"
+msgstr "Udgående interface"
+
+#: 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 "Udgående nøgle"
+
+#: 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 "Udgående serialisering"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
+msgid "Output Interface"
+msgstr "Udgangs interface"
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
+msgid "Output zone"
+msgstr "Udgangszone"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
+msgid "Overlap"
+msgstr "Overlap"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:945
+msgid "Override IPv4 routing table"
+msgstr "Ttilsidesætter IPv4-routingtabel"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:950
+msgid "Override IPv6 routing table"
+msgstr "Tilsidesætter IPv6-routingtabel"
+
+#: 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-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:132
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:156
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:110
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
+msgid "Override MTU"
+msgstr "Tilsidesæt MTU"
+
+#: 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:67
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
+msgid "Override TOS"
+msgstr "Tilsidesættelse af TOS"
+
+#: 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:62
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
+msgid "Override TTL"
+msgstr "Tilsidesæt TTL"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1152
+msgid "Override default interface name"
+msgstr "Tilsidesæt standard interface navn"
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
+msgid "Override the gateway in DHCP responses"
+msgstr "Tilsidesæt gatewayen i DHCP-svar"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
+msgid ""
+"Override the netmask sent to clients. Normally it is calculated from the "
+"subnet that is served."
+msgstr ""
+"Tilsidesæt den netmaske, der er sendt til klienter. Normalt beregnes det ud "
+"fra det subnet, der betjenes."
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
+msgid "Override the table used for internal routes"
+msgstr "Tilsidesætte den tabel, der anvendes til interne ruter"
+
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
+msgid "Overview"
+msgstr "Oversigt"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
+msgid "Overwrite existing file \"%s\" ?"
+msgstr "Overskrive eksisterende fil \"%s\" ?"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
+msgid "Owner"
+msgstr "Ejer"
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109
+msgid "PAP/CHAP (both)"
+msgstr "PAP/CHAP (begge)"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:111
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:103
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:94
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46
+msgid "PAP/CHAP password"
+msgstr "PAP/CHAP adgangskode"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:101
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:89
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
+msgid "PAP/CHAP username"
+msgstr "PAP/CHAP brugernavn"
+
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:114
+msgid "PDP Type"
+msgstr "PDP Type"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
+msgid "PID"
+msgstr "PID"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:105
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:98
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:79
+msgid "PIN"
+msgstr "PIN"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:21
+#: modules/luci-compat/luasrc/model/network.lua:39
+msgid "PIN code rejected"
+msgstr "Pinkode afvist"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1550
+msgid "PMK R1 Push"
+msgstr "PMK R1 Tryk"
+
+#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
+msgid "PPP"
+msgstr "PPP"
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
+msgid "PPPoA Encapsulation"
+msgstr "PPPoA-indkapsling"
+
+#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
+msgid "PPPoATM"
+msgstr "PPPoATM"
+
+#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
+msgid "PPPoE"
+msgstr "PPPoE"
+
+#: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
+msgid "PPPoSSH"
+msgstr "PPPoSSH"
+
+#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
+msgid "PPtP"
+msgstr "PPtP"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
+msgid "PSID offset"
+msgstr "PSID-offset"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
+msgid "PSID-bits length"
+msgstr "PSID-bits længde"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1492
+msgid "PTM/EFM (Packet Transfer Mode)"
+msgstr "PTM/EFM (Packet Transfer Mode)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:254
+msgid "PXE/TFTP Settings"
+msgstr "PXE/TFTP-indstillinger"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1456
+msgid "Packet Steering"
+msgstr "Styring af pakker"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
+msgid "Packets"
+msgstr "Pakker"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:277
+msgid "Packets To Transmit Before Moving To Next Slave"
+msgstr "Pakker, der skal sendes, før der flyttes til næste slave"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1181
+msgid "Part of zone %q"
+msgstr "Del af zone %q"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:438
+msgctxt "MACVLAN mode"
+msgid "Pass-through (Mirror physical device to single MAC VLAN)"
+msgstr "Pass-through (spejler fysisk enhed til et enkelt MAC VLAN)"
+
+#: modules/luci-base/luasrc/view/sysauth.htm:29
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1672
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
+msgid "Password"
+msgstr "Adgangskode"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
+msgid "Password authentication"
+msgstr "Godkendelse af adgangskode"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1604
+msgid "Password of Private Key"
+msgstr "Adgangskode til den private nøgle"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662
+msgid "Password of inner Private Key"
+msgstr "Adgangskode til den indre private nøgle"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
+msgid "Password strength"
+msgstr "Adgangskodestyrke"
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:117
+msgid "Password2"
+msgstr "Adgangskode2"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260
+msgid "Paste or drag SSH key file…"
+msgstr "Indsæt eller træk SSH-nøglefilen…"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1583
+msgid "Path to CA-Certificate"
+msgstr "Sti til CA-certifikat"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1598
+msgid "Path to Client-Certificate"
+msgstr "Sti til klient-certifikatet"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1601
+msgid "Path to Private Key"
+msgstr "Sti til privat nøgle"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1641
+msgid "Path to inner CA-Certificate"
+msgstr "Sti til det indre CA-certifikat"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1656
+msgid "Path to inner Client-Certificate"
+msgstr "Sti til det indre klient-certifikat"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1659
+msgid "Path to inner Private Key"
+msgstr "Sti til den indre private nøgle"
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2732
+msgid "Paused"
+msgstr "Pause"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:273
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:283
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:334
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:344
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:354
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:239
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:249
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:259
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:268
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:278
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:296
+msgid "Peak:"
+msgstr "Spids:"
+
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
+msgid "Peer IP address to assign"
+msgstr "Peer IP-adresse, der skal tildeles"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:613
+msgid "Peer MAC address"
+msgstr "Peer MAC-adresse"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:14
+#: modules/luci-compat/luasrc/model/network.lua:32
+msgid "Peer address is missing"
+msgstr "Peer-adresse mangler"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:594
+msgid "Peer device name"
+msgstr "Peer-enhedens navn"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
+msgid "Peers"
+msgstr "Peers"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
+msgid "Perfect Forward Secrecy"
+msgstr "Perfekt fremadrettet hemmeligholdelse"
+
+#: 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 "Udfør serialisering af udgående pakker (valgfrit)."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
+msgid "Perform reboot"
+msgstr "Udfør genstart"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:406
+msgid "Perform reset"
+msgstr "Udfør nulstilling"
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
+msgid "Permission denied"
+msgstr "Adgang nægtet"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
+msgid "Persistent Keep Alive"
+msgstr "Vedvarende Hold i live"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
+msgid "Phy Rate:"
+msgstr "Phy Rate:"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
+msgid "Physical Settings"
+msgstr "Fysiske indstillinger"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:91
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:101
+msgid "Ping"
+msgstr "Ping"
+
+#: 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:50
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
+msgid "Pkts."
+msgstr "Pkts."
+
+#: modules/luci-base/luasrc/view/sysauth.htm:19
+msgid "Please enter your username and password."
+msgstr "Indtast venligst dit brugernavn og din adgangskode."
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
+msgid "Please select the file to upload."
+msgstr "Vælg venligst den fil, der skal uploades."
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
+msgid "Policy"
+msgstr "Politik"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
+msgid "Port"
+msgstr "Port"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702
+msgid "Port isolation"
+msgstr "Port isolation"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:280
+msgid "Port status:"
+msgstr "Port status:"
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
+msgid "Potential negation of: %s"
+msgstr "Potentiel negation af: %s"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
+msgid "Power Management Mode"
+msgstr "Strømstyringstilstand"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35
+msgid "Pre-emptive CRC errors (CRCP_P)"
+msgstr "Forudgående CRC-fejl (CRCP_P)"
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:74
+msgid "Prefer LTE"
+msgstr "Foretrækker LTE"
+
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:75
+msgid "Prefer UMTS"
+msgstr "Foretrækker UMTS"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
+msgid "Prefix Delegated"
+msgstr "Præfiks Delegeret"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186
+msgid "Prefix suppressor"
+msgstr "Præfiksundertrykker"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
+msgid "Preshared Key"
+msgstr "Forhåndsdelt nøgle"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
+msgid ""
+"Presume peer to be dead after given amount of LCP echo failures, use 0 to "
+"ignore failures"
+msgstr ""
+"Antager, at peer er død efter et givet antal LCP-echofejl, brug 0 for at "
+"ignorere fejl"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1148
+msgid "Prevents client-to-client communication"
+msgstr "Forhindrer klient-til-klient kommunikation"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:213
+msgid "Primary Slave"
+msgstr "Primær slave"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:170
+msgctxt "VLAN port state"
+msgid "Primary VLAN ID"
+msgstr "Primært VLAN ID"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:230
+msgid ""
+"Primary becomes active slave when it comes back up if speed and duplex "
+"better than current slave (better, 1)"
+msgstr ""
+"Den primære bliver aktiv slave, når den kommer tilbage, hvis hastighed og "
+"duplex er bedre end den aktuelle slave (bedre, 1)"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229
+msgid "Primary becomes active slave whenever it comes back up (always, 0)"
+msgstr "Primær bliver aktiv slave, når den kommer op igen (altid, 0)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223
+msgid "Priority"
+msgstr "Prioritet"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:436
+msgctxt "MACVLAN mode"
+msgid "Private (Prevent communication between MAC VLANs)"
+msgstr "Privat (forhindrer kommunikation mellem MAC VLANs)"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:86
+msgid "Private Key"
+msgstr "Privat nøgle"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:69
+msgid "Processes"
+msgstr "Processer"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
+msgid "Prot."
+msgstr "Prot."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1104
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:191
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:217
+msgid "Protocol"
+msgstr "Protokol"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:280
+msgid "Provide NTP server"
+msgstr "Angiv NTP-server"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
+msgid ""
+"Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
+"and requests."
+msgstr ""
+"Angiv en DHCPv6-server på dette interface og svar på DHCPv6 opfordringer og "
+"anmodninger."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:883
+msgid "Provide new network"
+msgstr "Forsyn nyt netværk"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1077
+msgid "Pseudo Ad-Hoc (ahdemo)"
+msgstr "Pseudo Ad-Hoc (ahdemo)"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+msgid "Public Key"
+msgstr "Offentlig nøgle"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284
+msgid ""
+"Public keys allow for the passwordless SSH logins with a higher security "
+"compared to the use of plain passwords. In order to upload a new key to the "
+"device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
+"code> file into the input field."
+msgstr ""
+"Offentlige nøgler giver mulighed for SSH-logins uden adgangskode med en "
+"højere sikkerhed sammenlignet med brugen af almindelige adgangskoder. For at "
+"uploade en ny nøgle til enheden skal du indsætte en OpenSSH-kompatibel linje "
+"for en offentlig nøgle eller trække en <code>.pub</code>-fil ind i "
+"indtastningsfeltet."
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
+msgid "Public prefix routed to this device for distribution to clients."
+msgstr ""
+"Offentligt præfiks, der videresendes til denne enhed med henblik på "
+"distribution til klienter."
+
+#: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
+msgid "QMI Cellular"
+msgstr "QMI-Cellulær"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
+msgid "QR-Code"
+msgstr "QR-kode"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:137
+msgid "Quality"
+msgstr "Kvalitet"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427
+msgid "Query all available upstream resolvers."
+msgstr "Forespørg alle tilgængelige upstream-resolvere."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556
+msgid "Query interval"
+msgstr "Forespørgselsinterval"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:561
+msgid "Query response interval"
+msgstr "Svarinterval for forespørgsel"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1538
+msgid "R0 Key Lifetime"
+msgstr "R0 Nøglens levetid"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1544
+msgid "R1 Key Holder"
+msgstr "R1 nøgleholder"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
+msgid "RFC3947 NAT-T mode"
+msgstr "RFC3947 NAT-T-tilstand"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1003
+msgid "RSSI threshold for joining"
+msgstr "RSSI-tærskel for tilmelding"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:967
+msgid "RTS/CTS Threshold"
+msgstr "RTS/CTS-tærskel"
+
+#: 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 "RX"
+msgstr "RX"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:227
+msgid "RX Rate"
+msgstr "RX-hastighed"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2160
+msgid "RX Rate / TX Rate"
+msgstr "RX-hastighed / TX-hastighed"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1416
+msgid "Radius-Accounting-Port"
+msgstr "Radius-Accounting-Port"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1421
+msgid "Radius-Accounting-Secret"
+msgstr "Radius-Accounting-Hemmelighed"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1411
+msgid "Radius-Accounting-Server"
+msgstr "Radius-Accounting-Server"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1401
+msgid "Radius-Authentication-Port"
+msgstr "Radius-godkendelse-port"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1406
+msgid "Radius-Authentication-Secret"
+msgstr "Radius-godkendelse-Hemmelighed"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1396
+msgid "Radius-Authentication-Server"
+msgstr "Radius-godkendelse-server"
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
+msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
+msgstr ""
+"Rå hex-kodede bytes. Lad den være tom, medmindre din internetudbyder kræver "
+"dette"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345
+msgid "Read <code>/etc/ethers</code> to configure the DHCP server."
+msgstr "Læs <code>/etc/ethers</code> for at konfigurere DHCP-serveren."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:559
+msgid "Really switch protocol?"
+msgstr "Skifter du virkelig protokol?"
+
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:94
+msgid "Realtime Graphs"
+msgstr "Grafer i realtid"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1521
+msgid "Reassociation Deadline"
+msgstr "Frist for genforening"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
+msgid "Rebind protection"
+msgstr "Beskyttelse mod genindbinding"
+
+#: 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:140
+msgid "Reboot"
+msgstr "Genstart"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
+msgid "Rebooting…"
+msgstr "Genstarter…"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
+msgid "Reboots the operating system of your device"
+msgstr "Genstarter operativsystemet på din enhed"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:26
+msgid "Receive"
+msgstr "Modtag"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:108
+msgid "Recommended. IP addresses of the WireGuard interface."
+msgstr "Anbefalet. IP-adresser for WireGuard-interface."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:504
+msgid "Reconnect this interface"
+msgstr "Genforbind dette interface"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
+msgid "Redirect to HTTPS"
+msgstr "Omdiriger til HTTPS"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
+msgid "References"
+msgstr "Referencer"
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2726
+msgid "Refreshing"
+msgstr "Genopfriske"
+
+#: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
+msgid "Relay"
+msgstr "Relæ"
+
+#: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
+msgid "Relay Bridge"
+msgstr "Relæbroen"
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
+msgid "Relay between networks"
+msgstr "Relæ mellem netværk"
+
+#: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
+msgid "Relay bridge"
+msgstr "Relæbro"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
+msgid "Remote IPv4 address"
+msgstr "Fjern IPv4-adresse"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
+msgid "Remote IPv4 address or FQDN"
+msgstr "Fjern IPv4-adresse eller FQDN"
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
+msgid "Remote IPv6 address"
+msgstr "Fjern IPv6-adresse"
+
+#: 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 "Fjern-IPv6-adresse eller FQDN"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:907
+msgid "Remove"
+msgstr "Fjern"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1282
+msgid "Remove related device settings from the configuration"
+msgstr "Fjern relaterede enhedsindstillinger fra konfigurationen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2002
+msgid "Replace wireless configuration"
+msgstr "Erstat trådløs konfiguration"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
+msgid "Request IPv6-address"
+msgstr "Anmod om IPv6-adresse"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
+msgid "Request IPv6-prefix of length"
+msgstr "Anmod om IPv6-præfiks af længde"
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
+msgid "Request timeout"
+msgstr "Timeout for anmodning"
+
+#: 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 "Kræv indgående kontrolsum (valgfrit)."
+
+#: 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 "Kræv serialisering af indgående pakker (valgfrit)."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1682
+msgid "Required"
+msgstr "Påkrævet"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
+msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
+msgstr "Påkrævet for visse internetudbydere, f.eks. Charter med DOCSIS 3"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:86
+msgid "Required. Base64-encoded private key for this interface."
+msgstr "Påkrævet. Base64-kodet privat nøgle for dette interface."
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+msgid "Required. Base64-encoded public key of peer."
+msgstr "Påkrævet. Base64-kodet offentlig nøgle for peer."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1312
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1313
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1314
+msgid "Requires hostapd"
+msgstr "Kræver hostapd"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1319
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1320
+msgid "Requires hostapd with EAP Suite-B support"
+msgstr "Kræver hostapd med understøttelse af EAP Suite-B"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1317
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1318
+msgid "Requires hostapd with EAP support"
+msgstr "Kræver hostapd med EAP-understøttelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1321
+msgid "Requires hostapd with OWE support"
+msgstr "Kræver hostapd med OWE-understøttelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1315
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1316
+msgid "Requires hostapd with SAE support"
+msgstr "Kræver hostapd med SAE-understøttelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
+msgid "Requires hostapd with WEP support"
+msgstr "Kræver hostapd med WEP-understøttelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1326
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1327
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1340
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1341
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1342
+msgid "Requires wpa-supplicant"
+msgstr "Kræver wpa-supplicant"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1333
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1334
+msgid "Requires wpa-supplicant with EAP Suite-B support"
+msgstr "Kræver wpa-supplicant med EAP Suite-B-understøttelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1331
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1332
+msgid "Requires wpa-supplicant with EAP support"
+msgstr "Kræver wpa-supplicant med EAP-understøttelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1335
+msgid "Requires wpa-supplicant with OWE support"
+msgstr "Kræver wpa-supplicant med OWE-understøttelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1329
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1330
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1345
+msgid "Requires wpa-supplicant with SAE support"
+msgstr "Kræver wpa-supplicant med SAE-understøttelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1324
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1325
+msgid "Requires wpa-supplicant with WEP support"
+msgstr "Kræver wpa-supplicant med WEP-understøttelse"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:226
+msgid "Reselection policy for primary slave"
+msgstr "Politik for genvalg af primærslave"
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2204
+#: modules/luci-base/luasrc/view/sysauth.htm:39
+#: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
+#: modules/luci-compat/luasrc/view/cbi/footer.htm:30
+#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
+msgid "Reset"
+msgstr "Nulstil"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:343
+msgid "Reset Counters"
+msgstr "Nulstil tællere"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
+msgid "Reset to defaults"
+msgstr "Nulstil til standardindstillingerne"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:253
+msgid "Resolv and Hosts Files"
+msgstr "Resolv- og værtsfiler"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356
+msgid "Resolv file"
+msgstr "Resolv-fil"
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
+msgid "Resource not found"
+msgstr "Ressourcen blev ikke fundet"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:506
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:875
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
+msgid "Restart"
+msgstr "Genstart"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:348
+msgid "Restart Firewall"
+msgstr "Genstart Firewall"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:873
+msgid "Restart radio interface"
+msgstr "Genstart radio interface"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:400
+msgid "Restore"
+msgstr "Gendan"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:410
+msgid "Restore backup"
+msgstr "Gendan backup"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392
+msgid ""
+"Return answers to DNS queries matching the subnet from which the query was "
+"received if multiple IPs are available."
+msgstr ""
+"Returnerer svar på DNS-forespørgsler, der matcher det subnet, hvorfra "
+"forespørgslen blev modtaget, hvis der er flere IP'er tilgængelige."
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
+msgid "Reveal/hide password"
+msgstr "Vis/skjul adgangskode"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:625
+msgid "Reverse path filter"
+msgstr "Filter med omvendt sti"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
+msgid "Revert"
+msgstr "Gendan"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
+msgid "Revert changes"
+msgstr "Gendan ændringer"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
+msgid "Revert request failed with status <code>%h</code>"
+msgstr "Anmodningen om gendannelse mislykkedes med statussen <code>%h</code>"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
+msgid "Reverting configuration…"
+msgstr "Gendanner konfiguration…"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:551
+msgid "Robustness"
+msgstr "Robusthed"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485
+msgid ""
+"Root directory for files served via TFTP. <em>Enable TFTP server</em> and "
+"<em>TFTP server root</em> turn on the TFTP server and serve files from "
+"<em>TFTP server root</em>."
+msgstr ""
+"Rodmappe for filer, der leveres via TFTP. <em>Enable TFTP server</em> og "
+"<em>TFTP server root</em> tænder TFTP-serveren og serverer filer fra "
+"<em>TFTP server root</em>."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:297
+msgid "Root preparation"
+msgstr "Rodforberedelse"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204
+msgid "Round-Robin policy (balance-rr, 0)"
+msgstr "Round-Robin politik (balance-rr, 0)"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
+msgid "Route Allowed IPs"
+msgstr "Rute tilladte IP'er"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45
+msgid "Route type"
+msgstr "Rute type"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
+msgid ""
+"Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
+"134\">RA</abbr> messages. Maximum is 9000 seconds."
+msgstr ""
+"Router Lifetime offentliggjort i <abbr title=\"Router Advertisement, ICMPv6 "
+"Type 134\">RA</abbr>-meddelelser. Maksimum er 9000 sekunder."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
+msgid "Router Password"
+msgstr "Router adgangskode"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
+#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:248
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
+msgid "Routing"
+msgstr "Routing"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
+msgid ""
+"Routing defines over which interface and gateway a certain host or network "
+"can be reached."
+msgstr ""
+"Routing definerer, via hvilket interface og gateway en bestemt vært eller et "
+"bestemt netværk kan nås."
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:224
+msgid "Rule"
+msgstr "Regel"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136
+msgid "Rule type"
+msgstr "Regeltype"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
+msgid "Run a filesystem check before mounting the device"
+msgstr "Kør en filsystemkontrol, før du monterer enheden"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
+msgid "Run filesystem check"
+msgstr "Kør filsystemkontrol"
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2365
+msgid "Runtime error"
+msgstr "Fejl ved kørsel"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:224
+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:271
+msgid "SNR"
+msgstr "SNR"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
+msgid "SSH Access"
+msgstr "SSH-adgang"
+
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
+msgid "SSH server address"
+msgstr "SSH-serveradresse"
+
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
+msgid "SSH server port"
+msgstr "SSH serverport"
+
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
+msgid "SSH username"
+msgstr "SSH brugernavn"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
+msgid "SSH-Keys"
+msgstr "SSH-nøgler"
+
+#: 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:1740
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:375
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:138
+msgid "SSID"
+msgstr "SSID"
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
+msgid "SSTP"
+msgstr "SSTP"
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
+msgid "SSTP Server"
+msgstr "SSTP-server"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
+msgid "SWAP"
+msgstr "SWAP"
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
+#: modules/luci-compat/luasrc/view/cbi/error.htm:17
+#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
+#: modules/luci-compat/luasrc/view/cbi/header.htm:20
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:463
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
+msgid "Save"
+msgstr "Gem"
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
+#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
+msgid "Save & Apply"
+msgstr "Gem og anvend"
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:602
+msgid "Save error"
+msgstr "Gem fejl"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:434
+msgid "Save mtdblock"
+msgstr "Gem mtdblock"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
+msgid "Save mtdblock contents"
+msgstr "Gem mtdblock-indhold"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:880
+msgid "Scan"
+msgstr "Scan"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:90
+msgid "Scheduled Tasks"
+msgstr "Planlagte opgaver"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
+msgid "Section added"
+msgstr "Afsnit tilføjet"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+msgid "Section removed"
+msgstr "Afsnit fjernet"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
+msgid "See \"mount\" manpage for details"
+msgstr "Se \"mount\" manpage for detaljer"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:283
+msgid ""
+"Select 'Force upgrade' to flash the image even if the image format check "
+"fails. Use only if you are sure that the firmware is correct and meant for "
+"your device!"
+msgstr ""
+"Vælg 'Tving opgradering' for at flashe image , selvom kontrollen af image "
+"mislykkes. Brug kun, hvis du er sikker på, at firmwaren er korrekt og "
+"beregnet til din enhed!"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
+msgid "Select file…"
+msgstr "Vælg fil…"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320
+msgid "Selects the transmit hash policy to use for slave selection"
+msgstr ""
+"Vælger den hash-politik for transmission, der skal anvendes til udvælgelse "
+"af slave"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:768
+msgid ""
+"Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
+"messages advertising this device as IPv6 router."
+msgstr ""
+"Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>-"
+"meddelelser, der reklamerer for denne enhed som IPv6-router."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:650
+msgid "Send ICMP redirects"
+msgstr "Send ICMP-omdirigeringer"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
+#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
+msgid ""
+"Send LCP echo requests at the given interval in seconds, only effective in "
+"conjunction with failure threshold"
+msgstr ""
+"Sender LCP-echoanmodninger med det angivne interval i sekunder, kun effektiv "
+"i forbindelse med fejltærsklen"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
+msgid "Send the hostname of this device"
+msgstr "Send værtsnavnet for denne enhed"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518
+msgid "Server address"
+msgstr "Serveradresse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512
+msgid "Server name"
+msgstr "Servernavn"
+
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
+msgid "Service Name"
+msgstr "Tjenestenavn"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72
+msgid "Service Type"
+msgstr "Tjenestetype"
+
+#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
+msgid "Services"
+msgstr "Tjenester"
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2669
+msgid "Session expired"
+msgstr "Sessionen er udløbet"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:118
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:167
+msgid "Set Static"
+msgstr "Angiv statisk"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
+msgid "Set interface as NDP-Proxy external slave. Default is off."
+msgstr ""
+"Indstil interface som ekstern NDP-Proxy-slave. Standardværdien er slået fra."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1220
+msgid ""
+"Set interface properties regardless of the link carrier (If set, carrier "
+"sense events do not invoke hotplug handlers)."
+msgstr ""
+"Angiv interface egenskaber uanset linkbæreren (Hvis de er indstillet, "
+"aktiverer operatørsanshændelser ikke hotplug-handlere)."
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:302
+msgid "Set same MAC Address to all slaves"
+msgstr "Angiv samme MAC-adresse til alle slaver"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:786
+msgid ""
+"Set the autonomous address-configuration flag in the prefix information "
+"options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
+"When enabled, clients will perform stateless IPv6 address autoconfiguration."
+msgstr ""
+"Angiv det autonome adressekonfigurationsflag i indstillingerne for "
+"præfiksoplysninger for sendte <abbr title=\"Router Advertisement\">RA</abbr>-"
+"meddelelser. Når den er aktiveret, udfører klienter automatisk konfiguration "
+"af iPv6-adresser uden tilstand."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:719
+msgid ""
+"Set this interface as master for RA and DHCPv6 relaying as well as NDP "
+"proxying."
+msgstr ""
+"Angiv dette interface som master for RA- og DHCPv6-videresendelse samt NDP-"
+"proxying."
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:306
+msgid "Set to currently active slave (active, 1)"
+msgstr "Angiv til den aktuelt aktive slave (aktiv, 1)"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:307
+msgid "Set to first slave added to the bond (follow, 2)"
+msgstr "Angiv til den første slave, der tilføjes til forbindelsen (følg, 2)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:662
+msgid "Set up DHCP Server"
+msgstr "Konfigurer DHCP-server"
+
+#: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
+#: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
+msgid "Setting PLMN failed"
+msgstr "Indstilling af PLMN mislykkedes"
+
+#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
+msgid "Setting operation mode failed"
+msgstr "Indstilling af driftstilstand mislykkedes"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:11
+msgid "Settings"
+msgstr "Indstillinger"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906
+msgid "Setup routes for proxied IPv6 neighbours."
+msgstr "Opsætning af ruter til proxied IPv6-naboer."
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
+msgid "Severely Errored Seconds (SES)"
+msgstr "Alvorligt fejlbehæftede sekunder (SES)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
+msgid "Short GI"
+msgstr "Kort GI"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1158
+msgid "Short Preamble"
+msgstr "Kort præambel"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:470
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18
+msgid "Show current backup file list"
+msgstr "Vis den aktuelle backup-fil liste"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
+msgid "Show empty chains"
+msgstr "Vis tomme kæder"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:338
+msgid "Show raw counters"
+msgstr "Vis rå tællere"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:510
+msgid "Shutdown this interface"
+msgstr "Lukning af dette interface"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1739
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:374
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:137
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:226
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:269
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
+msgid "Signal"
+msgstr "Signal"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2159
+msgid "Signal / Noise"
+msgstr "Signal / støj"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
+msgid "Signal Attenuation (SATN)"
+msgstr "Signaldæmpning (SATN)"
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:136
+msgid "Signal Refresh Rate"
+msgstr "Signalopdateringshastighed"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
+msgid "Signal:"
+msgstr "Signal:"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
+msgid "Size"
+msgstr "Størrelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472
+msgid "Size of DNS query cache"
+msgstr "Størrelsen af DNS forespørgselscachen"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:207
+msgid "Size of the ZRam device in megabytes"
+msgstr "Størrelsen af ZRam-enheden i megabyte"
+
+#: modules/luci-compat/luasrc/view/cbi/footer.htm:18
+#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
+msgid "Skip"
+msgstr "Spring over"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:257
+msgid "Skip from backup files that are equal to those in /rom"
+msgstr "Spring over fra backup filer, der er lig med dem i /rom"
+
+#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
+msgid "Skip to content"
+msgstr "Gå til indhold"
+
+#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:39
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45
+msgid "Skip to navigation"
+msgstr "Gå til navigation"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:180
+msgid "Slave Interfaces"
+msgstr "Slave-Interfaces"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3008
+#: modules/luci-compat/luasrc/model/network.lua:1428
+msgid "Software VLAN"
+msgstr "Software-VLAN"
+
+#: modules/luci-compat/luasrc/view/cbi/header.htm:5
+msgid "Some fields are invalid, cannot save values!"
+msgstr "Nogle felter er ugyldige, kan ikke gemme værdier!"
+
+#: modules/luci-base/luasrc/view/error404.htm:9
+msgid "Sorry, the object you requested was not found."
+msgstr "Beklager, det objekt, du anmodede om, blev ikke fundet."
+
+#: modules/luci-base/luasrc/view/error500.htm:9
+msgid "Sorry, the server encountered an unexpected error."
+msgstr "Beklager, serveren stødte på en uventet fejl."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442
+msgid ""
+"Sorry, there is no sysupgrade support present; a new firmware image must be "
+"flashed manually. Please refer to the wiki for device specific install "
+"instructions."
+msgstr ""
+"Der er desværre ingen sysupgrade-understøttelse; et nyt firmware-image skal "
+"flashes manuelt. Se venligst wiki'en for enhedsspecifikke "
+"installationsinstruktioner."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214
+msgid "Source"
+msgstr "Kilde"
+
+#: 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 "Kildeinterface"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:499
+msgid ""
+"Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot "
+"options for Dnsmasq."
+msgstr ""
+"Særlige <abbr title=\"Preboot eXecution Environment\">PXE</abbr> "
+"opstartsindstillinger for Dnsmasq."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:891
+msgid ""
+"Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
+"unspecified, the local device DNS search domain will be announced."
+msgstr ""
+"Angiver en fast liste over DNS-søgdomæner, der skal annonceres via DHCPv6. "
+"Hvis den ikke angives, annonceres den lokale enheds DNS-søgdomæne."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
+msgid ""
+"Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
+"If left unspecified, the device will announce itself as IPv6 DNS server "
+"unless the <em>Local IPv6 DNS server</em> option is disabled."
+msgstr ""
+"Angiver en fast liste over IPv6 DNS-serveradresser, der skal annonceres via "
+"DHCPv6. Hvis den ikke er angivet, vil enheden annoncere sig selv som IPv6 "
+"DNS-server, medmindre indstillingen <em>Lokal IPv6 DNS-server</em> er "
+"deaktiveret."
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343
+msgid ""
+"Specifies that duplicate frames (received on inactive ports) should be "
+"dropped or delivered"
+msgstr ""
+"Angiver, at duplikerede frames (modtaget på inaktive porte) skal droppes "
+"eller leveres"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:359
+msgid "Specifies the ARP link monitoring frequency in milliseconds"
+msgstr "Angiver frekvensen for ARP-linkovervågning i millisekunder"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:367
+msgid "Specifies the IP addresses to use for ARP monitoring"
+msgstr "Angiver de IP-adresser, der skal bruges til ARP-overvågning"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:396
+msgid "Specifies the MII link monitoring frequency in milliseconds"
+msgstr "Angiver MII-forbindelsesovervågningsfrekvensen i millisekunder"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
+msgid "Specifies the aggregation selection logic to use"
+msgstr "Angiver den aggregeringsvalglogik, der skal bruges"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
+msgid "Specifies the directory the device is attached to"
+msgstr "Angiver den mappe, som enheden er knyttet til"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:792
+msgid ""
+"Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
+"messages, for example to instruct clients to request further information via "
+"stateful DHCPv6."
+msgstr ""
+"Angiver de flag, der sendes i <abbr title=\"Router Advertisement\">RA</abbr>-"
+"meddelelser, f.eks. for at instruere klienterne om at anmode om yderligere "
+"oplysninger via stateful DHCPv6."
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254
+msgid ""
+"Specifies the mac-address for the actor in protocol packet exchanges "
+"(LACPDUs). If empty, masters' mac address defaults to system default"
+msgstr ""
+"Specificerer mac-adressen for aktøren i udveksling af protokolpakker "
+"(LACPDU'er). Hvis den er tom, er masters' mac-adresse standardiseret til "
+"systemets standardadresse"
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
+msgid ""
+"Specifies the maximum amount of failed ARP requests until hosts are presumed "
+"to be dead"
+msgstr ""
+"Specificerer det maksimale antal mislykkede ARP-forespørgsler, indtil værter "
+"formodes at være døde"
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
+msgid ""
+"Specifies the maximum amount of seconds after which hosts are presumed to be "
+"dead"
+msgstr ""
+"Specificerer det maksimale antal sekunder, hvorefter værter formodes at være "
+"døde"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947
+msgid ""
+"Specifies the maximum transmit power the wireless radio may use. Depending "
+"on regulatory requirements and wireless usage, the actual transmit power may "
+"be reduced by the driver."
+msgstr ""
+"Specificerer den maksimale sendestyrke, som den trådløse radio må bruge. "
+"Afhængigt af lovkrav og trådløs brug kan den faktiske sendestyrke reduceres "
+"af driveren."
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:238
+msgid ""
+"Specifies the minimum number of links that must be active before asserting "
+"carrier"
+msgstr ""
+"Specificerer det mindste antal forbindelser, der skal være aktive, før der "
+"kan aktiveres carrier"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202
+msgid "Specifies the mode to be used for this bonding interface"
+msgstr ""
+"Specificerer den tilstand, der skal anvendes for dette bonding interface"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334
+msgid ""
+"Specifies the number of IGMP membership reports to be issued after a "
+"failover event in 200ms intervals"
+msgstr ""
+"Specificerer antallet af IGMP-medlemskabsrapporter, der skal udstedes efter "
+"en failover-hændelse i intervaller på 200 ms"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:278
+msgid ""
+"Specifies the number of packets to transmit through a slave before moving to "
+"the next one"
+msgstr ""
+"Specificerer antallet af pakker, der skal transmitteres gennem en slave, før "
+"den flyttes til den næste"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:312
+msgid ""
+"Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
+"IPv6 Neighbor Advertisements) to be issued after a failover event"
+msgstr ""
+"Specificerer antallet af peer-notifikationer (vederlagsfri ARP'er og "
+"uopfordrede IPv6 Neighbor Advertisements), der skal udstedes efter en "
+"failover-hændelse"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:286
+msgid ""
+"Specifies the number of seconds between instances where the bonding driver "
+"sends learning packets to each slaves peer switch"
+msgstr ""
+"Specificerer antallet af sekunder mellem de Instanser, hvor bonding-driveren "
+"sender læringspakker til hver slaves peer-switch"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375
+msgid "Specifies the quantity of ARP IP targets that must be reachable"
+msgstr "Specificerer mængden af ARP IP-mål, der skal kunne nås"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
+msgid ""
+"Specifies the rate in which the link partner will be asked to transmit "
+"LACPDU packets"
+msgstr ""
+"Specificerer den hastighed, hvormed linkpartneren vil blive bedt om at sende "
+"LACPDU-pakker"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227
+msgid ""
+"Specifies the reselection policy for the primary slave when failure of the "
+"active slave or recovery of the primary slave occurs"
+msgstr ""
+"Specificerer genvalgspolitikken for den primære slave, når der opstår fejl i "
+"den aktive slave eller gendannelse af den primære slave"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246
+msgid "Specifies the system priority"
+msgstr "Specificerer systemets prioritet"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:404
+msgid ""
+"Specifies the time in milliseconds to wait before disabling a slave after a "
+"link failure detection"
+msgstr ""
+"Specificerer den tid i millisekunder, der skal gå, før en slave deaktiveres "
+"efter registrering af en forbindelsesfejl"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:412
+msgid ""
+"Specifies the time in milliseconds to wait before enabling a slave after a "
+"link recovery detection"
+msgstr ""
+"Specificerer den tid i millisekunder, der skal gå, før en slave aktiveres "
+"efter en registrering af genoprettelse af en forbindelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:494
+msgid ""
+"Specifies the wired ports to attach to this bridge. In order to attach "
+"wireless networks, choose the associated interface as network in the "
+"wireless settings."
+msgstr ""
+"Specificerer de kablede porte, der skal knyttes til denne bro. Hvis du vil "
+"tilslutte trådløse netværk, skal du vælge det tilknyttede interface som "
+"netværk i de trådløse indstillinger."
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:383
+msgid ""
+"Specifies whether ARP probes and replies should be validated or non-ARP "
+"traffic should be filtered for link monitoring"
+msgstr ""
+"Specificerer, om ARP-probes og -svar skal valideres, eller om ikke-ARP-"
+"trafik skal filtreres med henblik på linkovervågning"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
+msgid ""
+"Specifies whether active-backup mode should set all slaves to the same MAC "
+"address at enslavement"
+msgstr ""
+"Specificerer, om aktiv backup-tilstand skal indstille alle slaver til den "
+"samme MAC-adresse ved slavetilknytningen"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:420
+msgid ""
+"Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
+"netif_carrier_ok()"
+msgstr ""
+"Specificerer, om miimon skal bruge MII- eller ETHTOOL-ioctls i forhold til "
+"netif_carrier_ok() eller ej"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295
+msgid ""
+"Specifies whether to shuffle active flows across slaves based on the load"
+msgstr ""
+"Specificerer, om aktive flows skal blandes på tværs af slaver baseret på "
+"belastningen"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:181
+msgid ""
+"Specifies which slave interfaces should be attached to this bonding interface"
+msgstr ""
+"Specificerer, hvilke slave interfaces der skal knyttes til dette bonding "
+"interface"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:214
+msgid ""
+"Specifies which slave is the primary device. It will always be the active "
+"slave while it is available"
+msgstr ""
+"Specificerer, hvilken slave der er den primære enhed. Den vil altid være den "
+"aktive slave, så længe den er tilgængelig"
+
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
+msgid "Specify a TOS (Type of Service)."
+msgstr "Angiv en TOS (Type of Service)."
+
+#: 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-gre/htdocs/luci-static/resources/protocol/grev6.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 ""
+"Angiv en TOS (tjenestetype). Kan være <code>inherit</code> (den ydre header "
+"nedarver værdien af den indre header) eller en hexadecimal værdi <code>00.."
+"FF</code> (valgfrit)."
+
+#: 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 ""
+"Angiv en TTL (Time to Live) for den indkapslende pakke ud over "
+"standardværdien (64) (valgfrit)."
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
+msgid ""
+"Specify a TTL (Time to Live) for the encapsulating packet other than the "
+"default (64)."
+msgstr ""
+"Angiv en TTL (Time to Live) for den indkapslende pakke ud over "
+"standardværdien (64)."
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
+msgid ""
+"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 ""
+"Angiv en trafikklasse. Kan være <code>inherit</code> (den ydre header "
+"nedarver værdien af den indre header) eller en hexadecimal værdi <code>00.."
+"FF</code> (valgfrit)."
+
+#: 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 ""
+"Angiv en anden MTU (Maximum Transmission Unit) end standardværdien (1280 "
+"bytes) (valgfrit)."
+
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
+msgid ""
+"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
+"bytes)."
+msgstr ""
+"Angiv en anden MTU (Maximum Transmission Unit) end standardværdien (1280 "
+"bytes)."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2019
+msgid "Specify the secret encryption key here."
+msgstr "Angiv den hemmelige krypteringsnøgle her."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:657
+msgid "Stale neighbour cache timeout"
+msgstr "Forældet nabo-cache-timeout"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:669
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
+msgid "Start"
+msgstr "Start"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:131
+msgid "Start WPS"
+msgstr "Start WPS"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
+msgid "Start priority"
+msgstr "Startprioritet"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1843
+msgid "Start refresh"
+msgstr "Start opdatering"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
+msgid "Starting configuration apply…"
+msgstr "Starter anvend konfiguration…"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1756
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:398
+msgid "Starting wireless scan..."
+msgstr "Starter trådløs scanning..."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:78
+msgid "Startup"
+msgstr "Start op"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:32
+msgid "Static IPv4 Routes"
+msgstr "Statisk IPv4-ruter"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:32
+msgid "Static IPv6 Routes"
+msgstr "Statisk IPv6-ruter"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:91
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130
+msgid "Static Lease"
+msgstr "Statisk Lease"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256
+msgid "Static Leases"
+msgstr "Statiske Leases"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2109
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
+#: modules/luci-compat/luasrc/model/network.lua:967
+msgid "Static address"
+msgstr "Statisk adresse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:597
+msgid ""
+"Static leases are used to assign fixed IP addresses and symbolic hostnames "
+"to DHCP clients. They are also required for non-dynamic interface "
+"configurations where only hosts with a corresponding lease are served."
+msgstr ""
+"Statiske leases bruges til at tildele faste IP-adresser og symbolske "
+"værtsnavne til DHCP-klienter. De er også nødvendige for ikke-dynamiske "
+"interface konfigurationer, hvor kun værter med en tilsvarende lease betjenes."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1175
+msgid "Station inactivity limit"
+msgstr "Grænse for inaktivitet på stationen"
+
+#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
+#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9
+msgid "Status"
+msgstr "Status"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:512
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
+msgid "Stop"
+msgstr "Stop"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:126
+msgid "Stop WPS"
+msgstr "Stop WPS"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1754
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1848
+msgid "Stop refresh"
+msgstr "Stop opdatering"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
+msgid "Strict filtering"
+msgstr "Streng filtrering"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:421
+msgid "Strict order"
+msgstr "Streng orden"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
+msgid "Strong"
+msgstr "Stærk"
+
+#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2044
+msgid "Submit"
+msgstr "Indsend"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372
+msgid "Suppress logging"
+msgstr "Undertrykker logning"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373
+msgid "Suppress logging of the routine operation for the DHCP protocol."
+msgstr "Undertrykker logning af rutineoperationen for DHCP-protokollen."
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:46
+msgid "Swap free"
+msgstr "Swap fri"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
+#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
+msgid "Switch"
+msgstr "Switch"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
+msgid "Switch %q"
+msgstr "Switch %q"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+"Switch %q har en ukendt topologi - VLAN-indstillingerne er muligvis ikke "
+"nøjagtige."
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3008
+#: modules/luci-compat/luasrc/model/network.lua:1426
+msgid "Switch VLAN"
+msgstr "Switch VLAN"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3005
+msgid "Switch port"
+msgstr "Switch port"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:560
+msgid "Switch protocol"
+msgstr "Skift protokol"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
+#: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
+msgid "Switch to CIDR list notation"
+msgstr "Skift til CIDR-liste notation"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
+msgid "Symbolic link"
+msgstr "Symbolsk link"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:88
+msgid "Sync with NTP-Server"
+msgstr "Synkroniser med NTP-server"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:80
+msgid "Sync with browser"
+msgstr "Synkroniser med browser"
+
+#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:112
+#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
+msgid "System"
+msgstr "System"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:39
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:51
+msgid "System Log"
+msgstr "System Log"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:245
+msgid "System Priority"
+msgstr "Systemprioritet"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:117
+msgid "System Properties"
+msgstr "Systemegenskaber"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:161
+msgid "System log buffer size"
+msgstr "Størrelse af systemlogbuffer"
+
+#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
+msgid "System running in recovery (initramfs) mode."
+msgstr "Systemet kører i genoprettelsestilstand (initramfs)."
+
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86
+msgid "Sytem running in recovery (initramfs) mode."
+msgstr "Systemet kører i genoprettelsestilstand (initramfs)."
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:338
+msgid "TCP:"
+msgstr "TCP:"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:484
+msgid "TFTP server root"
+msgstr "TFTP-server rod"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
+msgid "TX"
+msgstr "TX"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:227
+msgid "TX Rate"
+msgstr "TX-hastighed"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:618
+msgid "TX queue length"
+msgstr "TX-køens længde"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216
+msgid "Table"
+msgstr "Tabel"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:213
+msgid "Target"
+msgstr "Mål"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
+msgid "Target Platform"
+msgstr "Målplatform"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
+msgid "Target network"
+msgstr "Målnetværk"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
+msgid "Terminate"
+msgstr "Afslutte"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
+msgid "The \"PublicKey\" of that wg interface"
+msgstr "Den \"PublicKey\" for dette wg-interface"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
+msgid ""
+"The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
+"<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
+"Minimum is 1280 bytes."
+msgstr ""
+"Den <abbr title=\"Maximum Transmission Unit\">MTU</abbr>, der skal "
+"offentliggøres i <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
+"abbr>-meddelelser. Minimum er 1280 bytes."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:794
+msgid ""
+"The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
+"addresses are available via DHCPv6."
+msgstr ""
+"Flaget <em>Administreret adressekonfiguration</em> (M) angiver, at IPv6-"
+"adresser er tilgængelige via DHCPv6."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798
+msgid ""
+"The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
+"also acting as Mobile IPv6 home agent on this link."
+msgstr ""
+"Flaget <em>Mobile IPv6 Home Agent</em> (H) angiver, at enheden også fungerer "
+"som Mobile IPv6 Home Agent på dette link."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:796
+msgid ""
+"The <em>Other configuration</em> (O) flag indicates that other information, "
+"such as DNS servers, is available via DHCPv6."
+msgstr ""
+"Flaget <em>Anden konfiguration</em> (O) angiver, at andre oplysninger, f."
+"eks. DNS-servere, er tilgængelige via DHCPv6."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
+msgid "The <em>block mount</em> command failed with code %d"
+msgstr "Kommandoen <em>block mount</em> mislykkedes med kode %d"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
+msgid ""
+"The DNS server entries in the local resolv.conf are primarily sorted by the "
+"weight specified here"
+msgstr ""
+"DNS-serverposterne i den lokale resolv.conf sorteres primært efter den vægt, "
+"der er angivet her"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
+msgid ""
+"The HE.net endpoint update configuration changed, you must now use the plain "
+"username instead of the user ID!"
+msgstr ""
+"Konfigurationen af HE.net-endpoint-opdateringen er ændret, du skal nu bruge "
+"det almindelige brugernavn i stedet for bruger-id'et!"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:680
+msgid "The IP address %h is already used by another static lease"
+msgstr "IP-adressen %h er allerede brugt af en anden statisk lease"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:689
+msgid "The IP address is outside of any DHCP pool address range"
+msgstr "IP-adressen er uden for et DHCP-adresseområde i en DHCP-pool"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
+msgid "The IP address of the boot server"
+msgstr "IP-adressen på opstartsserveren"
+
+#: 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-adressen eller det fuldt kvalificerede domænenavn for fjernsiden."
+
+#: 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-adressen eller det fuldt kvalificerede domænenavn for fjerntunnelenden."
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
+msgid "The IPv6 address or the fully-qualified domain name of the remote end."
+msgstr "IPv6-adressen eller det fuldt kvalificerede domænenavn for fjernsiden."
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
+msgid ""
+"The IPv6 address or the fully-qualified domain name of the remote tunnel end."
+msgstr ""
+"IPv6-adressen eller det fuldt kvalificerede domænenavn for fjerntunnelenden."
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
+msgid ""
+"The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
+msgstr ""
+"Det IPv6-præfiks, der er tildelt udbyderen, og som normalt slutter med "
+"<code>:::</code>"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:7
+msgid "The LED blinks with the configured on/off frequency"
+msgstr "LED'en blinker med den indstillede tænd/sluk-frekvens"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:6
+msgid "The LED flashes to simulate actual heart beat."
+msgstr "LED'en blinker for at simulere et faktisk hjerteslag."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:8
+msgid ""
+"The LED flashes with link status and activity on the configured interface."
+msgstr ""
+"LED'en blinker med linkstatus og aktivitet på det konfigurerede interface."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:7
+msgid "The LED is always in default state off."
+msgstr "LED'en er altid i standardtilstand slukket."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
+msgid "The LED is always in default state on."
+msgstr "LED'en er altid i standardtilstand tændt."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:222
+msgid ""
+"The MAC address %h is already used by another static lease in the same DHCP "
+"pool"
+msgstr ""
+"MAC-adressen %h er allerede brugt af en anden statisk lease i samme DHCP-"
+"pulje"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
+msgid "The MTU must not exceed the parent device MTU of %d bytes"
+msgstr "MTU'en må ikke overstige forældreenhedens MTU på %d bytes"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
+msgid ""
+"The QR-Code works per wg interface, it will be refreshed with every button "
+"click and transfers the following information:"
+msgstr ""
+"QR-koden fungerer via wg-interface, den opdateres ved hvert klik på en knap "
+"og overfører følgende oplysninger:"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:864
+msgid "The VLAN ID must be unique"
+msgstr "VLAN-id'et skal være unikt"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2004
+msgid ""
+"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
+"code> and <code>_</code>"
+msgstr ""
+"De tilladte tegn er: <code>A-Z</code>, <code>a-z</code>, <code>0-9</code> og "
+"<code>_</code>."
+
+#: modules/luci-compat/luasrc/view/cbi/error.htm:6
+msgid "The configuration file could not be loaded due to the following error:"
+msgstr "Konfigurationsfilen kunne ikke indlæses på grund af følgende fejl:"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1998
+msgid ""
+"The correct SSID must be manually specified when joining a hidden wireless "
+"network"
+msgstr ""
+"Det korrekte SSID skal angives manuelt, når du tilmelder dig et skjult "
+"trådløst netværk"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
+msgid ""
+"The device could not be reached within %d seconds after applying the pending "
+"changes, which caused the configuration to be rolled back for safety "
+"reasons. If you believe that the configuration changes are correct "
+"nonetheless, perform an unchecked configuration apply. Alternatively, you "
+"can dismiss this warning and edit changes before attempting to apply again, "
+"or revert all pending changes to keep the currently working configuration "
+"state."
+msgstr ""
+"Enheden kunne ikke nås inden for %d sekunder efter at have anvendt de "
+"ventende ændringer, hvilket fik konfigurationen til at blive rullet tilbage "
+"af sikkerhedshensyn. Hvis du mener, at konfigurationsændringerne alligevel "
+"er korrekte, skal du udføre en ukontrolleret konfigurationsanvendelse. "
+"Alternativt kan du afvise denne advarsel og redigere ændringerne, før du "
+"forsøger at anvende dem igen, eller du kan tilbageføre alle ventende "
+"ændringer for at bevare den aktuelle konfigurationstilstand, der fungerer."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
+msgid ""
+"The device file of the memory or partition (<abbr title=\"for example\">e.g."
+"</abbr> <code>/dev/sda1</code>)"
+msgstr ""
+"Enhedsfilen for hukommelsen eller partitionen (<abbr title=\"for example\">f."
+"eks.</abbr> <code>/dev/sda1</code>)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:450
+msgid "The device name \"%s\" is already taken"
+msgstr "Enhedsnavnet \"%s\" er allerede optaget"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:393
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:427
+msgid ""
+"The existing network configuration needs to be changed for LuCI to function "
+"properly."
+msgstr ""
+"Den eksisterende netværkskonfiguration skal ændres, for at LuCI kan fungere "
+"korrekt."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:794
+msgid ""
+"The existing wireless configuration needs to be changed for LuCI to function "
+"properly."
+msgstr ""
+"Den eksisterende trådløse konfiguration skal ændres, for at LuCI kan fungere "
+"korrekt."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:220
+msgid ""
+"The flash image was uploaded. Below is the checksum and file size listed, "
+"compare them with the original file to ensure data integrity. <br /> Click "
+"'Continue' below to start the flash procedure."
+msgstr ""
+"Flash-image blev uploadet. Nedenfor er checksummen og filstørrelsen angivet, "
+"sammenlign dem med den originale fil for at sikre dataintegriteten. <br /> "
+"Klik på \"Fortsæt\" nedenfor for at starte flash-proceduren."
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:249
+msgid "The following rules are currently active on this system."
+msgstr "Følgende regler er i øjeblikket aktive på dette system."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:7
+msgid "The frequency is in direct proportion to 1-minute average CPU load."
+msgstr ""
+"Frekvensen er direkte proportional med den gennemsnitlige CPU-belastning i 1 "
+"minut."
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
+msgid "The gateway address must not be a local IP address"
+msgstr "Gateway-adressen må ikke være en lokal IP-adresse"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:166
+msgid "The given SSH public key has already been added."
+msgstr "Den angivne offentlige SSH-nøgle er allerede blevet tilføjet."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
+msgid ""
+"The given SSH public key is invalid. Please supply proper public RSA or "
+"ECDSA keys."
+msgstr ""
+"Den givne offentlige SSH-nøgle er ugyldig. Angiv venligst korrekte "
+"offentlige RSA- eller ECDSA-nøgler."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513
+msgid "The hostname of the boot server"
+msgstr "Værtsnavnet for opstartsserveren"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1093
+msgid "The interface name is already used"
+msgstr "Navnet på interface er allerede brugt"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1099
+msgid "The interface name is too long"
+msgstr "Navnet på interface er for langt"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
+msgid ""
+"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
+"addresses."
+msgstr "Længden af IPv4-præfikset i bits, resten bruges i IPv6-adresserne."
+
+#: 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 "Længden af IPv6-præfikset i bits"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
+msgid ""
+"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
+"configured"
+msgstr ""
+"Listen over denne klients \"Tilladte IP'er\" eller \"0.0.0.0/0, ::/0\", hvis "
+"den ikke er konfigureret"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:165
+msgid "The local IPv4 address"
+msgstr "Den lokale IPv4-adresse"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
+#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
+msgid "The local IPv4 address over which the tunnel is created (optional)."
+msgstr "Den lokale IPv4-adresse, som tunnelen oprettes over (valgfrit)."
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:171
+msgid "The local IPv4 netmask"
+msgstr "Den lokale IPv4-netmaske"
+
+#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.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 "Den lokale IPv6-adresse, som tunnelen oprettes over (valgfrit)."
+
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
+msgid ""
+"The max response time in centiseconds inserted into group-specific queries "
+"sent in response to leave group messages. It is also the amount of time "
+"between group-specific query messages. This value may be tuned to modify the "
+"\"leave latency\" of the network. A reduced value results in reduced time to "
+"detect the loss of the last member of a group"
+msgstr ""
+"Den maksimale svartid i centisekunder, der indsættes i gruppespecifikke "
+"forespørgsler, som sendes som svar på meddelelser om at forlade gruppen. Det "
+"er også den tid, der går mellem gruppespecifikke forespørgselsmeddelelser. "
+"Denne værdi kan indstilles for at ændre netværkets \"leave latency\". En "
+"reduceret værdi resulterer i kortere tid til at opdage tabet af det sidste "
+"medlem af en gruppe"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:561
+msgid ""
+"The max response time in centiseconds inserted into the periodic general "
+"queries. By varying the value, an administrator may tune the burstiness of "
+"IGMP messages on the subnet; larger values make the traffic less bursty, as "
+"host responses are spread out over a larger interval"
+msgstr ""
+"Den maksimale svartid i centisekunder, der indsættes i de periodiske "
+"generelle forespørgsler. Ved at variere værdien kan administratoren justere "
+"IGMP-meddelelsernes hyppighed i subnet; større værdier gør trafikken mindre "
+"hyppig, da værtssvarene spredes ud over et større interval"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
+msgid ""
+"The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
+"abbr> messages. Maximum is 255 hops."
+msgstr ""
+"De maksimale hop, der skal offentliggøres i <abbr title=\"Router "
+"Advertisement\">RA</abbr>-meddelelser. Maksimum er 255 hop."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2010
+msgid "The network name is already used"
+msgstr "Netværksnavnet er allerede brugt"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
+msgid ""
+"The network ports on this device can be combined to several <abbr title="
+"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
+"communicate directly with each other. <abbr title=\"Virtual Local Area "
+"Network\">VLAN</abbr>s are often used to separate different network "
+"segments. Often there is by default one Uplink port for a connection to the "
+"next greater network like the internet and other ports for a local network."
+msgstr ""
+"Netværksportene på denne enhed kan kombineres til flere <abbr title="
+"\"Virtual Local Area Network\">VLAN</abbr>s, hvor computere kan kommunikere "
+"direkte med hinanden. <abbr title=\"Virtual Local Area Network\">VLAN</"
+"abbr>s bruges ofte til at adskille forskellige netværkssegmenter. Ofte er "
+"der som standard en Uplink-port til en forbindelse til det næste større "
+"netværk, f.eks. internettet, og andre porte til et lokalt netværk."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:569
+msgid "The query response interval must be lower than the query interval value"
+msgstr ""
+"Svarintervallet for forespørgsel skal være lavere end værdien for "
+"forespørgselsintervallet"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
+msgid "The reboot command failed with code %d"
+msgstr "Kommandoen til genstart mislykkedes med kode %d"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
+msgid "The restore command failed with code %d"
+msgstr "Kommandoen til gendannelse mislykkedes med kode %d"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:551
+msgid ""
+"The robustness value allows tuning for the expected packet loss on the "
+"network. If a network is expected to be lossy, the robustness value may be "
+"increased. IGMP is robust to (Robustness-1) packet losses"
+msgstr ""
+"Robusthedsværdien gør det muligt at indstille den til det forventede "
+"pakketab på netværket. Hvis et netværk forventes at være tabsgivende, kan "
+"robusthedsværdien øges. IGMP er robust over for (Robusthed-1) pakketab"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1370
+msgid "The selected %s mode is incompatible with %s encryption"
+msgstr "Den valgte %s-modus er ikke kompatibel med %s-kryptering"
+
+#: modules/luci-base/luasrc/view/csrftoken.htm:11
+msgid "The submitted security token is invalid or already expired!"
+msgstr "Den indsendte sikkerhedstoken er ugyldigt eller allerede udløbet!"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
+msgid ""
+"The system is erasing the configuration partition now and will reboot itself "
+"when finished."
+msgstr ""
+"Systemet sletter konfigurations-partitionen nu og genstarter sig selv, når "
+"det er færdigt."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:320
+msgid ""
+"The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
+"few minutes before you try to reconnect. It might be necessary to renew the "
+"address of your computer to reach the device again, depending on your "
+"settings."
+msgstr ""
+"System Flash nu.<br /> SLUK IKKE FOR ENHEDEN!<br /> Vent et par minutter, "
+"før du forsøger at oprette forbindelse igen. Det kan være nødvendigt at "
+"forny adressen på din computer for at nå enheden igen, afhængigt af dine "
+"indstillinger."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
+msgid ""
+"The system is rebooting now. If the restored configuration changed the "
+"current LAN IP address, you might need to reconnect manually."
+msgstr ""
+"Systemet genstarter nu. Hvis den gendannede konfiguration har ændret den "
+"aktuelle LAN-IP-adresse, skal du muligvis oprette forbindelse igen manuelt."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
+msgid "The system password has been successfully changed."
+msgstr "Systemadgangskoden er blevet ændret med succes."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:345
+msgid "The sysupgrade command failed with code %d"
+msgstr "Kommandoen sysupgrade mislykkedes med kode %d"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
+msgid ""
+"The uploaded backup archive appears to be valid and contains the files "
+"listed below. Press \"Continue\" to restore the backup and reboot, or "
+"\"Cancel\" to abort the operation."
+msgstr ""
+"Det uploadede backuparkiv ser ud til at være gyldigt og indeholder filerne "
+"anført nedenfor. Tryk på \"Fortsæt\" for at gendanne sikkerhedskopien og "
+"genstart, eller \"Annuller\" for at afbryde handlingen."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
+msgid "The uploaded backup archive is not readable"
+msgstr "Det uploadede backuparkiv kan ikke læses"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:249
+msgid "The uploaded firmware does not allow keeping current configuration."
+msgstr ""
+"Den uploadede firmware tillader ikke at beholde den aktuelle konfiguration."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
+msgid ""
+"The uploaded image file does not contain a supported format. Make sure that "
+"you choose the generic image format for your platform."
+msgstr ""
+"Den uploadede image fil indeholder ikke et understøttet format. Sørg for, at "
+"du vælger det generiske image format til din platform."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1433
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1445
+msgid "The value is overridden by configuration. Original: %s"
+msgstr "Værdien tilsidesættes af konfigurationen. Original: %s"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:122
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:171
+msgid "There are no active leases"
+msgstr "Der er ingen aktive leases"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
+msgid "There are no changes to apply"
+msgstr "Der er ingen ændringer at anvende"
+
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
+msgid ""
+"There is no password set on this router. Please configure a root password to "
+"protect the web interface."
+msgstr ""
+"Der er ikke indstillet nogen adgangskode på denne router. Konfigurer "
+"venligst en rod-adgangskode for at beskytte web interface."
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
+msgid "This IPv4 address of the relay"
+msgstr "Denne IPv4-adresse på relayet"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1624
+msgid "This authentication type is not applicable to the selected EAP method."
+msgstr "Denne godkendelsestype er ikke relevant for den valgte EAP-metode."
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:57
+msgid "This does not look like a valid PEM file"
+msgstr "Dette ligner ikke en gyldig PEM-fil"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
+#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16
+msgid ""
+"This is a list of shell glob patterns for matching files and directories to "
+"include during sysupgrade. Modified files in /etc/config/ and certain other "
+"configurations are automatically preserved."
+msgstr ""
+"Dette er en liste over shell glob-mønstre til at matche filer og mapper, der "
+"skal inkluderes under sysupgrade. Ændrede filer i /etc/config/ og visse "
+"andre konfigurationer bevares automatisk."
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
+msgid ""
+"This is either the \"Update Key\" configured for the tunnel or the account "
+"password if no update key has been configured"
+msgstr ""
+"Dette er enten \"Opdateringsnøgle\" konfigureret til tunnelen eller "
+"kontoadgangskoden, hvis der ikke er konfigureret nogen opdateringsnøgle"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
+msgid ""
+"This is the content of /etc/rc.local. Insert your own commands here (in "
+"front of 'exit 0') to execute them at the end of the boot process."
+msgstr ""
+"Dette er indholdet af /etc/rc.local. Indsæt dine egne kommandoer her (foran "
+"\"exit 0\") for at udføre dem i slutningen af opstartsprocessen."
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
+msgid ""
+"This is the local endpoint address assigned by the tunnel broker, it usually "
+"ends with <code>...:2/64</code>"
+msgstr ""
+"Dette er den lokale endepunktsadresse, der er tildelt af tunnelmægleren, og "
+"den ender normalt med <code>...:2/64</code>"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
+msgid "This is the only DHCP server in the local network."
+msgstr "Dette er den eneste DHCP-server i det lokale netværk."
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
+msgid "This is the plain username for logging into the account"
+msgstr "Dette er det almindelige brugernavn til at logge ind på kontoen"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
+msgid ""
+"This is the prefix routed to you by the tunnel broker for use by clients"
+msgstr ""
+"Dette er det præfiks, som tunnelmægleren videresender til dig til brug for "
+"klienter"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
+msgid "This is the system crontab in which scheduled tasks can be defined."
+msgstr "Dette er systemets crontab, hvor planlagte opgaver kan defineres."
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
+msgid ""
+"This is usually the address of the nearest PoP operated by the tunnel broker"
+msgstr ""
+"Dette er normalt adressen på den nærmeste PoP, der drives af tunnelmægleren"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
+msgid ""
+"This list gives an overview over currently running system processes and "
+"their status."
+msgstr ""
+"Denne liste giver et overblik over systemprocesser, der kører i øjeblikket, "
+"og deres status."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1578
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1636
+msgid ""
+"This option cannot be used because the ca-bundle package is not installed."
+msgstr ""
+"Denne indstilling kan ikke bruges, fordi pakken ca-bundle ikke er "
+"installeret."
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
+#: 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 "Denne sektion indeholder endnu ingen værdier"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:123
+msgid "Time Synchronization"
+msgstr "Tidssynkronisering"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653
+msgid "Time in milliseconds"
+msgstr "Tid i millisekunder"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:527
+msgid "Time in seconds to spend in listening and learning states"
+msgstr "Tid i sekunder til at bruge i lytte- og læretilstande"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1166
+msgid "Time interval for rekeying GTK"
+msgstr "Tidsinterval for genindtastning af GTK"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
+msgid "Timed-out"
+msgstr "Timed-out"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:657
+msgid "Timeout in seconds"
+msgstr "Timeout i sekunder"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:513
+msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
+msgstr "Timeout i sekunder for lærte MAC-adresser i videresendelsesdatabasen"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:532
+msgid "Timeout in seconds until topology updates on link loss"
+msgstr "Timeout i sekunder indtil topologiopdateringer ved tab af forbindelse"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:144
+msgid "Timezone"
+msgstr "Tidszone"
+
+#: modules/luci-base/htdocs/luci-static/resources/luci.js:2679
+msgid "To login…"
+msgstr "For at logge ind…"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:400
+msgid ""
+"To restore configuration files, you can upload a previously generated backup "
+"archive here. To reset the firmware to its initial state, click \"Perform "
+"reset\" (only possible with squashfs images)."
+msgstr ""
+"For at gendanne konfigurationsfiler kan du uploade et tidligere genereret "
+"backuparkiv her. For at nulstille firmwaren til dens oprindelige tilstand "
+"skal du klikke på \"Udfør nulstilling\" (kun muligt med squashfs-billeder)."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481
+msgid "Tone"
+msgstr "Tone"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
+msgid "Total Available"
+msgstr "Tilgængeligt i alt"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:113
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:114
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:124
+msgid "Traceroute"
+msgstr "Traceroute"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:115
+msgid "Traffic"
+msgstr "Trafik"
+
+#: 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 "Trafikklasse"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:387
+msgid "Transfer"
+msgstr "Overfør"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
+msgid "Transmit"
+msgstr "Overførsel"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:319
+msgid "Transmit Hash Policy"
+msgstr "Politik for overførsel af hash"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:75
+msgid "Trigger"
+msgstr "Udløser"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:20
+msgid "Trigger Mode"
+msgstr "Udløsertilstand"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
+msgid "Tunnel ID"
+msgstr "Tunnel-ID"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:3011
+#: modules/luci-compat/luasrc/model/network.lua:1431
+msgid "Tunnel Interface"
+msgstr "Tunnel Interface"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
+msgid "Tunnel Link"
+msgstr "Tunnelforbindelse"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1390
+msgid "Tunnel device"
+msgstr "Tunnel enhed"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
+msgid "Tx-Power"
+msgstr "Tx-Power"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1421
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:160
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
+msgid "Type"
+msgstr "Type"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181
+msgid "Type of service"
+msgstr "Tjenestetype"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328
+msgid "UDP:"
+msgstr "UDP:"
+
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
+msgid "UMTS only"
+msgstr "Kun UMTS"
+
+#: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
+#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
+msgid "UMTS/GPRS/EV-DO"
+msgstr "UMTS/GPRS/EV-DO"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
+msgid "UUID"
+msgstr "UUID"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:16
+#: modules/luci-base/htdocs/luci-static/resources/network.js:17
+#: modules/luci-compat/luasrc/model/network.lua:34
+#: modules/luci-compat/luasrc/model/network.lua:35
+msgid "Unable to determine device name"
+msgstr "Kan ikke bestemme enhedens navn"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:18
+#: modules/luci-compat/luasrc/model/network.lua:36
+msgid "Unable to determine external IP address"
+msgstr "Kan ikke bestemme ekstern IP-adresse"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:19
+#: modules/luci-compat/luasrc/model/network.lua:37
+msgid "Unable to determine upstream interface"
+msgstr "Kan ikke bestemme upstream interface"
+
+#: modules/luci-base/luasrc/view/error404.htm:11
+msgid "Unable to dispatch"
+msgstr "Kan ikke sendes"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15
+msgid "Unable to load log data:"
+msgstr "Kan ikke indlæse logdata:"
+
+#: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
+#: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
+msgid "Unable to obtain client ID"
+msgstr "Kan ikke få klient-ID"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
+msgid "Unable to obtain mount information"
+msgstr "Kan ikke hente monteringsoplysninger"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:307
+msgid "Unable to reset ip6tables counters: %s"
+msgstr "Kan ikke nulstille ip6tables-tællere: %s"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:305
+msgid "Unable to reset iptables counters: %s"
+msgstr "Kan ikke nulstille iptables-tællere: %s"
+
+#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
+msgid "Unable to resolve AFTR host name"
+msgstr "Kan ikke resolve AFTR-værtsnavn"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:20
+#: modules/luci-compat/luasrc/model/network.lua:38
+msgid "Unable to resolve peer host name"
+msgstr "Kan ikke resolve peer-værtsnavn"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313
+msgid "Unable to restart firewall: %s"
+msgstr "Det er ikke muligt at genstarte firewall: %s"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:22
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57
+msgid "Unable to save contents: %s"
+msgstr "Kan ikke gemme indholdet: %s"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32
+msgid "Unavailable Seconds (UAS)"
+msgstr "Ikke-tilgængelige sekunder (UAS)"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1281
+msgid "Unconfigure"
+msgstr "Afkonfigurer"
+
+#: modules/luci-base/htdocs/luci-static/resources/fs.js:102
+msgid "Unexpected reply data format"
+msgstr "Uventet svardataformat"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1453
+msgid ""
+"Unique Local Address - in the range <code>fc00::/7</code>. Typically only "
+"within the &#8216;local&#8217; half <code>fd00::/8</code>. ULA for IPv6 is "
+"analogous to IPv4 private network addressing. This prefix is randomly "
+"generated at first install."
+msgstr ""
+"Unik lokal adresse - i intervallet <code>fc00::/7</code>. Typisk kun inden "
+"for &#8216;local&#8217; halvdelen af <code>fd00::/8</code>. ULA for IPv6 "
+"svarer til IPv4-adressering af private netværk. Dette præfiks genereres "
+"tilfældigt ved første installation."
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2111
+#: 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 "Ukendt"
+
+#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47
+msgid "Unknown and unsupported connection method."
+msgstr "Ukendt og ikke understøttet forbindelsesmetode."
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2420
+#: modules/luci-compat/luasrc/model/network.lua:1138
+msgid "Unknown error (%s)"
+msgstr "Ukendt fejl (%s)"
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
+msgid "Unknown error code"
+msgstr "Ukendt fejlkode"
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2108
+#: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
+#: modules/luci-compat/luasrc/model/network.lua:965
+msgid "Unmanaged"
+msgstr "Uadministreret"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
+msgid "Unmount"
+msgstr "Unmount"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:115
+msgid "Unnamed key"
+msgstr "unavngiven nøgle"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
+msgid "Unsaved Changes"
+msgstr "Ikke gemte ændringer"
+
+#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
+msgid "Unspecified error"
+msgstr "Uspecificeret fejl"
+
+#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
+msgid "Unsupported MAP type"
+msgstr "Ikke understøttet MAP-type"
+
+#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
+msgid "Unsupported modem"
+msgstr "Ikke understøttet modem"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:299
+msgid "Unsupported protocol type."
+msgstr "Ikke-understøttet protokoltype."
+
+#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
+msgid "Up"
+msgstr "Op"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411
+msgid "Up Delay"
+msgstr "Forsinkelse op"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
+msgid "Upload"
+msgstr "Upload"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:441
+msgid ""
+"Upload a sysupgrade-compatible image here to replace the running firmware."
+msgstr ""
+"Upload et sysupgrade-kompatibelt image her for at erstatte den firmware, der "
+"kører."
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
+msgid "Upload archive..."
+msgstr "Upload arkiv..."
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
+msgid "Upload file"
+msgstr "Upload fil"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
+msgid "Upload file…"
+msgstr "Upload fil…"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
+msgid "Upload request failed: %s"
+msgstr "Upload-forespørgsel mislykkedes: %s"
+
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
+msgid "Uploading file…"
+msgstr "Uploader fil…"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:795
+msgid ""
+"Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
+"assigned with a name in the form <em>wifinet#</em> and the network will be "
+"restarted to apply the updated configuration."
+msgstr ""
+"Når du trykker på \"Fortsæt\", vil anonyme \"wifi-iface\"-sektioner blive "
+"tildelt et navn i formen <em>wifinet#</em>, og netværket genstartes for at "
+"anvende den opdaterede konfiguration."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:394
+msgid ""
+"Upon pressing \"Continue\", bridges configuration will be updated and the "
+"network will be restarted to apply the updated configuration."
+msgstr ""
+"Når du trykker på \"Fortsæt\", opdateres brokonfigurationen, og netværket "
+"genstartes for at anvende den opdaterede konfiguration."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:428
+msgid ""
+"Upon pressing \"Continue\", ifname options will get renamed and the network "
+"will be restarted to apply the updated configuration."
+msgstr ""
+"Når du trykker på \"Fortsæt\", omdøbes ifname-indstillingerne, og netværket "
+"genstartes for at anvende den opdaterede konfiguration."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422
+msgid "Upstream resolvers will be queried in the order of the resolv file."
+msgstr "Upstream-resolvere vil blive forespurgt i rækkefølgen af resolv-filen."
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
+msgid "Uptime"
+msgstr "Oppetid"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
+msgid "Use <code>/etc/ethers</code>"
+msgstr "Brug <code>/etc/ethers</code>"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:284
+msgid "Use DHCP advertised servers"
+msgstr "Brug DHCP-annoncerede servere"
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
+msgid "Use DHCP gateway"
+msgstr "Brug DHCP-gateway"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:132
+msgid "Use DNS servers advertised by peer"
+msgstr "Brug DNS-servere, der annonceres af peer"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:623
+msgid "Use ISO/IEC 3166 alpha2 country codes."
+msgstr "Brug ISO/IEC 3166 alpha2-landekoder."
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
+msgid "Use MTU on tunnel interface"
+msgstr "Brug MTU på tunnel interface"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
+msgid "Use TTL on tunnel interface"
+msgstr "Brug TTL på tunnel interface"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322
+msgid "Use XOR of hardware MAC addresses (layer2)"
+msgstr "Brug XOR af hardware MAC-adresser (lag2)"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323
+msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
+msgstr "Brug XOR af hardware MAC-adresser og IP-adresser (lag2+3)"
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:325
+msgid ""
+"Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
+"(encap2+3)"
+msgstr ""
+"Brug XOR af hardware MAC-adresser og IP-adresser, stol på skb_flow_dissect "
+"(encap2+3)"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
+msgid "Use as external overlay (/overlay)"
+msgstr "Brug som eksternt overlay (/overlay)"
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
+msgid "Use as root filesystem (/)"
+msgstr "Brug som rodfilsystem (/)"
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
+msgid "Use broadcast flag"
+msgstr "Brug broadcast-flag"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1216
+msgid "Use builtin IPv6-management"
+msgstr "Brug indbygget IPv6-administration"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
+msgid "Use custom DNS servers"
+msgstr "Brug brugerdefinerede DNS-servere"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
+msgid "Use default gateway"
+msgstr "Brug standardgateway"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:941
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72
+#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:126
+msgid "Use gateway metric"
+msgstr "Brug gateway-metrik"
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
+msgid "Use legacy MAP"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
+msgid ""
+"Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
+"instead of RFC7597"
+msgstr ""
+
+#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
+msgid "Use routing table"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1571
+msgid "Use system certificates"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
+msgid "Use system certificates for inner-tunnel"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598
+msgid ""
+"Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
+"em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
+"address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
+"the requesting host. The optional <em>Lease time</em> can be used to set non-"
+"standard host-specific lease time, e.g. 12h, 3d or infinite."
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
+msgid "Use upper layer protocol information (layer3+4)"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:326
+msgid ""
+"Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
+msgid "Used"
+msgstr "Brugt"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1467
+msgid "Used Key Slot"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1510
+msgid ""
+"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
+"needed with normal WPA(2)-PSK."
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:111
+msgid "User Group"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:120
+msgid "User certificate (PEM encoded)"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132
+msgid "User key (PEM encoded)"
+msgstr ""
+
+#: modules/luci-base/luasrc/view/sysauth.htm:23
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
+msgid "Username"
+msgstr "Brugernavn"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1549
+msgid "VC-Mux"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1497
+msgid "VDSL"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:435
+msgctxt "MACVLAN mode"
+msgid "VEPA (Virtual Ethernet Port Aggregator)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:346
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1384
+msgid "VLAN (802.1ad)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:345
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1381
+msgid "VLAN (802.1q)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:414
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:845
+msgid "VLAN ID"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
+msgid "VLANs on %q"
+msgstr ""
+
+#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
+msgid "VPN"
+msgstr "VPN"
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
+msgid "VPN Local address"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
+msgid "VPN Local port"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96
+msgid "VPN Protocol"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:102
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
+msgid "VPN Server"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:105
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45
+msgid "VPN Server port"
+msgstr ""
+
+#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:109
+#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60
+msgid "VPN Server's certificate SHA1 hash"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
+msgid "VPNC (CISCO 3000 (and others) VPN)"
+msgstr ""
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10
+msgid "VXLAN (RFC7348)"
+msgstr ""
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
+msgid "VXLAN network identifier"
+msgstr ""
+
+#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
+msgid "VXLANv6 (RFC7348)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397
+msgid ""
+"Validate DNS replies and cache DNSSEC data, requires upstream to support "
+"DNSSEC."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1571
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
+msgid ""
+"Validate server certificate using built-in system CA bundle,<br />requires "
+"the \"ca-bundle\" package"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
+msgid "Validation for all slaves"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386
+msgid "Validation only for active slave"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
+msgid "Validation only for backup slaves"
+msgstr ""
+
+#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
+msgid "Vendor"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
+msgid "Vendor Class to send when requesting DHCP"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402
+msgid "Verify unsigned domain responses really come from unsigned domains."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
+msgid "Verifying the uploaded image file."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:957
+msgid "Very High"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:348
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1396
+msgid "Virtual Ethernet"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
+msgid "Virtual dynamic interface"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1106
+msgid "WDS"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1290
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1379
+msgid "WEP Open System"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1291
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1380
+msgid "WEP Shared Key"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2019
+msgid "WEP passphrase"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1143
+msgid "WMM Mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2019
+msgid "WPA passphrase"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1281
+msgid ""
+"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
+"and ad-hoc mode) to be installed."
+msgstr ""
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
+msgid "WPS status"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
+msgid "Waiting for device..."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:188
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:198
+msgid "Warning"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
+msgid "Warning: There are unsaved changes that will get lost on reboot!"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
+msgid "Weak"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1012
+msgid ""
+"When delegating prefixes to multiple downstreams, interfaces with a higher "
+"preference value are considered first when allocating subnets."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1533
+msgid ""
+"When using a PSK, the PMK can be automatically generated. When enabled, the "
+"R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
+"key options."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1143
+msgid ""
+"Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
+"802.11a/802.11g rates."
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
+msgid ""
+"Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
+"may be significantly reduced."
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:520
+msgid "Width"
+msgstr ""
+
+#: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:54
+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:10
+#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:124
+msgid "Wireless"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2998
+#: modules/luci-compat/luasrc/model/network.lua:1419
+msgid "Wireless Adapter"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/network.js:2977
+#: modules/luci-base/htdocs/luci-static/resources/network.js:4284
+#: modules/luci-compat/luasrc/model/network.lua:1405
+#: modules/luci-compat/luasrc/model/network.lua:1868
+msgid "Wireless Network"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:811
+msgid "Wireless Overview"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:986
+msgid "Wireless Security"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:793
+msgid "Wireless configuration migration"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
+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:143
+msgid "Wireless is not associated"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:935
+msgid "Wireless network is disabled"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:935
+msgid "Wireless network is enabled"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
+msgid "Write received DNS queries to syslog."
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:180
+msgid "Write system log to file"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
+msgid "XOR policy (balance-xor, 2)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
+msgid "Yes"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
+msgid "Yes (none, 0)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:177
+msgid ""
+"You appear to be currently connected to the device via the \"%h\" interface. "
+"Do you really want to shut down the interface?"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
+msgid ""
+"You can enable or disable installed init scripts here. Changes will applied "
+"after a device reboot.<br /><strong>Warning: If you disable essential init "
+"scripts like \"network\", your device might become inaccessible!</strong>"
+msgstr ""
+
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
+#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
+#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
+msgid ""
+"You must enable JavaScript in your browser or LuCI will not work properly."
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:117
+msgid ""
+"You must select a primary interface which is included in selected slave "
+"interfaces!"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:98
+msgid ""
+"You must select at least one ARP IP target if ARP monitoring is selected!"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:212
+msgid "ZRam Compression Algorithm"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:205
+msgid "ZRam Settings"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:207
+msgid "ZRam Size"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:448
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163
+msgid "any"
+msgstr "enhver"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1482
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1490
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1495
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230
+#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
+#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
+msgid "auto"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:776
+msgid "automatic"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
+msgid "baseT"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1555
+msgid "bridged"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:405
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
+#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
+msgid "create"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
+msgid "create:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:267
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:269
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:270
+#: 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/wireless.js:263
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:269
+#: 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:276
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:279
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:306
+#: 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:311
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:312
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:316
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:317
+msgid "dBm"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1087
+msgid "disable"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:627
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:765
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:869
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:964
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
+msgid "disabled"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:577
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:611
+msgid "driver default"
+msgstr ""
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
+msgid "e.g: --proxy 10.10.10.10"
+msgstr ""
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
+msgid "e.g: dump"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:725
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:140
+msgid "expired"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:780
+msgid "forced"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
+msgid "forward"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
+msgid "full-duplex"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
+msgid "half-duplex"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
+msgid "hexadecimal encoded value"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1816
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:297
+msgid "hidden"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:771
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:875
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:903
+msgid "hybrid mode"
+msgstr ""
+
+#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
+msgid "ignore"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
+msgid "input"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
+msgid "key between 8 and 63 characters"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
+msgid "key with either 5 or 13 characters"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:793
+msgid "managed config (M)"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1389
+msgid "medium security"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1538
+msgid "minutes"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:797
+msgid "mobile home agent (H)"
+msgstr ""
+
+#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:423
+msgid "netif_carrier_ok()"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
+msgid "no"
+msgstr "nej"
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:103
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
+msgid "no link"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
+msgid "non-empty value"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
+msgid "none"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
+msgid "not present"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:349
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:965
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:969
+msgid "off"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:778
+msgid "on available prefix"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1390
+msgid "open network"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:795
+msgid "other config (O)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
+msgid "output"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
+msgid "positive decimal value"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
+msgid "positive integer value"
+msgstr ""
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:105
+msgid "random"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:769
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:873
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:901
+msgid "relay mode"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1556
+msgid "routed"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1166
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1175
+msgid "sec"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:767
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:871
+msgid "server mode"
+msgstr ""
+
+#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
+msgid "sstpc Log-level"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1388
+msgid "strong security"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:354
+msgid "tagged"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1521
+msgid "time units (TUs / 1.024 ms) [1000-65535]"
+msgstr ""
+
+#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
+msgid ""
+"uHTTPd offers <abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> or "
+"<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network "
+"access."
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
+msgid "unique value"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1433
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1445
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:592
+msgid "unknown"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:455
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:723
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:744
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:138
+msgid "unlimited"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:396
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:432
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:469
+#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:565
+#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
+#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
+msgid "unspecified"
+msgstr ""
+
+#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
+msgid "unspecified -or- create:"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
+msgid "untagged"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
+msgid "valid IP address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
+msgid "valid IP address or prefix"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+msgid "valid IPv4 CIDR"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
+msgid "valid IPv4 address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
+msgid "valid IPv4 address or network"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
+msgid "valid IPv4 address:port"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
+msgid "valid IPv4 network"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
+msgid "valid IPv4 or IPv6 CIDR"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
+msgid "valid IPv4 prefix value (0-32)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
+msgid "valid IPv6 CIDR"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
+msgid "valid IPv6 address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
+msgid "valid IPv6 address or prefix"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
+msgid "valid IPv6 host id"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
+msgid "valid IPv6 network"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+msgid "valid IPv6 prefix value (0-128)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
+msgid "valid MAC address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
+msgid "valid UCI identifier"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
+msgid "valid UCI identifier, hostname or IP address range"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
+msgid "valid address:port"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
+msgid "valid date (YYYY-MM-DD)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
+msgid "valid decimal value"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+msgid "valid hexadecimal WEP key"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
+msgid "valid hexadecimal WPA key"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
+msgid "valid host:port"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
+msgid "valid hostname"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
+msgid "valid hostname or IP address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
+msgid "valid integer value"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
+msgid "valid multicast MAC address"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
+msgid "valid network in address/netmask notation"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
+msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+msgid "valid port or port range (port1-port2)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
+msgid "valid port value"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
+msgid "valid time (HH:MM:SS)"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
+msgid "value between %d and %d characters"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
+msgid "value between %f and %f"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
+msgid "value greater or equal to %f"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+msgid "value smaller or equal to %f"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+msgid "value with %d characters"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
+msgid "value with at least %d characters"
+msgstr ""
+
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
+msgid "value with at most %d characters"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1390
+msgid "weak security"
+msgstr ""
+
+#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
+msgid "yes"
+msgstr "ja"
+
+#: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
+msgid "« Back"
+msgstr "« Tilbage"
diff --git a/modules/luci-base/po/de/base.po b/modules/luci-base/po/de/base.po
index a4b763bac3..acceb945ea 100644
--- a/modules/luci-base/po/de/base.po
+++ b/modules/luci-base/po/de/base.po
@@ -22,7 +22,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d ungültige Felder"
@@ -58,19 +58,19 @@ msgid "-- Additional Field --"
msgstr "-- Zusätzliches Feld --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Bitte auswählen --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- benutzerdefiniert --"
@@ -218,7 +218,7 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
msgid "A configuration for the device \"%s\" already exists"
msgstr "Es existiert bereits eine Konfiguration für den Netzwerkadapter \"%s\""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Es existiert bereits ein Verzeichnis mit dem gleichen Namen."
@@ -227,7 +227,7 @@ msgid "A new login is required since the authentication session expired."
msgstr ""
"Ein neuer Login ist erforderlich da die Benutzersitzung abgelaufen ist."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -406,11 +406,11 @@ msgstr "Adaptiver Lastausgleich (balance-alb, 6)"
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "Adaptiver Sendelastausgleich (balance-tlb, 5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -642,7 +642,7 @@ msgstr ""
"Erlaubt es dem <em>root</em> Benutzer sich mit einem Passwort statt einem "
"Zertifikat einzuloggen"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "Erlaubte IP-Adressen"
@@ -810,18 +810,18 @@ msgstr ""
msgid "Apply backup?"
msgstr "Backup anwenden?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
"Anforderung zur Anwendung der Änderungen mit Status <code>%h</code> "
"fehlgeschlagen"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "Ungeprüft übernehmen"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "Warte auf das Anwenden der Konfiguration… %ds"
@@ -882,6 +882,7 @@ msgid "Authoritative"
msgstr "Authoritativ"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Autorisierung benötigt"
@@ -1104,8 +1105,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr "Broadcast-Richtlinie (broadcast, 3)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Durchsuchen…"
@@ -1137,8 +1138,8 @@ msgstr "Im Cache"
msgid "Call failed"
msgstr "Anruf fehlgeschlagen"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1214,11 +1215,11 @@ msgstr ""
msgid "Chain"
msgstr "Kette"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Änderungen"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "Änderungen wurden verworfen."
@@ -1323,7 +1324,7 @@ msgstr "Client"
msgid "Client ID to send when requesting DHCP"
msgstr "Zu sendende Client-ID bei DHCP Anfragen"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1391,16 +1392,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "Prüfsummen für zu sendende Pakete berechnet (optional)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Konfiguration"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "Die Konfiguration wurde angewendet."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "Die Konfiguration wurde zurückgerollt!"
@@ -1514,7 +1515,7 @@ msgstr "Inhalte wurden gespeichert."
msgid "Continue"
msgstr "Fortfahren"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1759,11 +1760,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr "IPv6-Präfix-Delegation"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1775,7 +1776,7 @@ msgstr "Löschen"
msgid "Delete key"
msgstr "Schlüssel löschen"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "Löschauftrag fehlgeschlagen: %s"
@@ -1789,11 +1790,11 @@ msgstr "DTIM (Delivery Traffic Indication) Nachrichtenintervall"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Beschreibung"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Abwählen"
@@ -1867,7 +1868,7 @@ msgstr "Netzwerkadapter nicht vorhanden"
msgid "Device type"
msgstr "Adaptertyp"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Das Gerät ist nicht erreichbar!"
@@ -1888,7 +1889,7 @@ msgstr "Diagnosen"
msgid "Dial number"
msgstr "Einwahlnummer"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Verzeichnis"
@@ -1962,10 +1963,14 @@ msgstr "Verbindungstrennung fehlgeschlagen"
msgid "Disconnection attempt failed."
msgstr "Trennungsversuch fehlgeschlagen."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -2059,7 +2064,7 @@ msgstr ""
"Keine <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>-"
"Nachrichten an diese Schnittstelle senden."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "Soll \"%s\" wirklich gelöscht werden?"
@@ -2072,7 +2077,7 @@ msgstr ""
msgid "Do you really want to erase all settings?"
msgstr "Möchten Sie wirklich alle Einstellungen löschen?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Soll das Verzeichnis \"%s\" wirklich rekursiv gelöscht werden?"
@@ -2114,7 +2119,7 @@ msgstr "Mtdblock-Datei herunterladen"
msgid "Downstream SNR offset"
msgstr "Downstream SNR-Offset"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "Ziehen zur Neuanordnung"
@@ -2165,9 +2170,9 @@ msgstr "EA-Bitlänge"
msgid "EAP-Method"
msgstr "EAP-Methode"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2214,6 +2219,10 @@ msgstr "Notfall"
msgid "Enable"
msgstr "Aktivieren"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2420,11 +2429,11 @@ msgstr "Kapselung"
msgid "Encryption"
msgstr "Verschlüsselung"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr "Entfernter Server"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr "Entfernter Port"
@@ -2527,7 +2536,7 @@ msgstr "Erwarte eine gültige IPv6-Adresse"
msgid "Expecting two priority values separated by a colon"
msgstr "Erwarte zwei durch Doppelpunkt getrennte Prioritätswerte"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2607,7 +2616,7 @@ msgstr "FT Protokoll"
msgid "Failed to change the system password."
msgstr "Das Systempasswort konnte nicht geändert werden."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
"Konnte nicht innerhalb von %d Sekunden bestätigen, warte auf Zurückrollen "
@@ -2617,7 +2626,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Fehler beim Ausführen der Aktion \"/etc/init.d/%s %s\": %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Datei"
@@ -2630,7 +2639,7 @@ msgstr ""
"<code>server=1.2.3.4</code> für domainspezifische oder volle Upstream-<abbr "
"title=\"Domain Name System\">DNS</abbr>-Server beinhalten."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "Datei nicht verfügbar"
@@ -2644,7 +2653,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr "Lokale <abbr title=\"Domain Name System\">DNS</abbr>-Datei"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "Dateiname"
@@ -2753,7 +2762,7 @@ msgstr "Flash-Operationen"
msgid "Flashing…"
msgstr "Aktualisieren…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2949,7 +2958,7 @@ msgstr "Konfiguration generieren"
msgid "Generate Key"
msgstr "Key generieren"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2961,7 +2970,7 @@ msgstr "PMK lokal generieren"
msgid "Generate archive"
msgstr "Sicherung erstellen"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2979,21 +2988,20 @@ msgstr "Globale Einstellungen"
msgid "Global network options"
msgstr "Globale Netzwerkeinstellungen"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Zur Passwortkonfiguration..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3149,7 +3157,7 @@ msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr ""
"<abbr title=\"Extended Service Set Identifier\">ESSID</abbr> verstecken"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3334,7 +3342,7 @@ msgstr "IPv4 Gateway"
msgid "IPv4 netmask"
msgstr "IPv4 Netzmaske"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr "IPv4-Netzwerk in Addresse/Netzmaske-Notation"
@@ -3435,7 +3443,7 @@ msgstr "IPv6 Zuweisungslänge"
msgid "IPv6 gateway"
msgstr "IPv6 Gateway"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr "IPv6-Netzwerk in Addresse/Netzmaske-Notation"
@@ -3506,7 +3514,7 @@ msgstr "IPv6-über-IPv4 (6to4)"
msgid "Identity"
msgstr "Identität"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3549,7 +3557,7 @@ msgstr ""
"Wenn angegeben, wird das Gerät nach anhand des Partitionslabels statt fester "
"Gerätedatei gemounted"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3876,6 +3884,8 @@ msgid "Invalid hexadecimal value"
msgstr "Ungültiger Hexadezimalwert"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr ""
"Ungültiger Benutzername oder ungültiges Passwort! Bitte erneut versuchen."
@@ -3896,7 +3906,7 @@ msgstr ""
"Das verwendete Image scheint zu groß für den internen Flash-Speicher zu "
"sein. Überprüfen Sie die Imagedatei!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -4073,7 +4083,7 @@ msgstr ""
"802.11b-Raten verhindert die effiziente Ausnutzung des Funkspektrums. Es "
"wird empfohlen, die veralteten Datenraten wo immer möglich zu deaktivieren."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "Legende:"
@@ -4200,17 +4210,19 @@ msgstr "Last"
msgid "Load Average"
msgstr "Durchschnittslast"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "Lade Verzeichniseinträge…"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "Lade Seite…"
@@ -4322,6 +4334,7 @@ msgstr ""
"(optional)."
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Anmelden"
@@ -4687,7 +4700,7 @@ msgstr "Monitor"
msgid "More Characters"
msgstr "Mehr Zeichen"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "Mehr…"
@@ -4793,8 +4806,8 @@ msgstr "NT-Domäne"
msgid "NTP server candidates"
msgstr "NTP Server Kandidaten"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4893,7 +4906,7 @@ msgstr "Name der neuen Schnittstelle…"
msgid "Next »"
msgstr "Weiter »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4923,7 +4936,6 @@ msgstr "Kein NAT-T"
msgid "No RX signal"
msgstr "Kein Signal empfangen"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4954,7 +4966,7 @@ msgstr "Keine Erzwingung"
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "Keine Einträge in diesem Verzeichnis"
@@ -4996,7 +5008,7 @@ msgstr ""
msgid "No negative cache"
msgstr "Kein Negativ-Cache"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -5165,7 +5177,7 @@ msgstr "Link-lokale Route"
msgid "One of hostname or MAC address must be specified!"
msgstr "Es muss entweder ein Hostname oder eine MAC-Adresse angegeben werden!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "Eine der folgenden Möglichkeiten: %s"
@@ -5240,20 +5252,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "Betriebsfrequenz"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr "Eingabefeld \"%s\" enthält einen ungültigen Wert."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr "Eingabefeld \"%s\" darf nicht leer sein."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Option geändert"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Option entfernt"
@@ -5285,7 +5297,7 @@ msgstr ""
"Server empfangen wird, kombiniert das System das Suffix mit dem Präfix um "
"eine lokale IPv6-Adresse (z.B. 'a:b:c:d::1') für die Schnittstelle zu formen."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
@@ -5293,11 +5305,11 @@ msgstr ""
"Optional. Base64-kodierter, vorhab ausgetauschter Schlüssel um eine weitere "
"Ebene an symmetrischer Verschlüsselung für erhöhte Sicherheit hinzuzufügen."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr "Optional. Routen für erlaubte IP-Adressen erzeugen."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "Optionale Beschreibung des entfernten VPN-Partners."
@@ -5305,7 +5317,7 @@ msgstr "Optionale Beschreibung des entfernten VPN-Partners."
msgid "Optional. Do not create host routes to peers."
msgstr "Optional. Unterdrückt die Einrichtung von Host-Routen zu VPN-Nachbarn."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
@@ -5313,7 +5325,7 @@ msgstr ""
"Optional. Hostname oder Adresse des Verbindungspartners. Namen werden vor "
"dem Verbindungsaufbau aufgelöst."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5324,11 +5336,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "Optional. Maximale MTU des Tunneladapters."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "Optional. Port-Nummer des Verbindungspartners."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5475,7 +5487,7 @@ msgstr "Überschreibt die benutzte Tabelle für interne Routen"
msgid "Overview"
msgstr "Übersicht"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "Existierende Datei \"%s\" überschreiben?"
@@ -5611,6 +5623,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Passwort"
@@ -5700,6 +5713,10 @@ msgstr "Entfernte IP-Adresse fehlt"
msgid "Peer device name"
msgstr "Linkpartner-Adaptername"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "Verbindungspartner"
@@ -5727,7 +5744,7 @@ msgstr "Reset durchführen"
msgid "Permission denied"
msgstr "Zugriff verweigert"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "Persistentes Keep-Alive"
@@ -5758,7 +5775,7 @@ msgstr "Pkte."
msgid "Please enter your username and password."
msgstr "Bitte Benutzernamen und Passwort eingeben."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "Bitte wählen Sie die hochzuladende Datei aus."
@@ -5778,7 +5795,7 @@ msgstr "Port-Isolation"
msgid "Port status:"
msgstr "Port-Status:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr "Mögliche Negation von: %s"
@@ -5806,7 +5823,7 @@ msgstr "Delegiertes Präfix"
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "Gemeinsamer Schlüssel"
@@ -5906,7 +5923,7 @@ msgstr "Neues Netzwerk anbieten"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Pseudo Ad-Hoc (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Öffentlicher Schlüssel"
@@ -5935,8 +5952,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr "QMI Cellular"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -6175,7 +6192,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr "Benötigt. Base64-kodierter privater Schlüssel für diese Schnittstelle."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
"Benötigt. Base64-kodierter öffentlicher Schlüssel für diese Schnittstelle."
@@ -6306,8 +6323,8 @@ msgstr ""
"Hostnamen je nach anfragendem Subnetz auflösen wenn mehrere IPs verfügbar "
"sind"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Passwort zeigen/verstecken"
@@ -6315,19 +6332,19 @@ msgstr "Passwort zeigen/verstecken"
msgid "Reverse path filter"
msgstr "Reverse-Pfad-Filter"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Verwerfen"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "Änderungen verwerfen"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr "Anforderung zum Verwerfen mit Status <code>%h</code> fehlgeschlagen"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "Verwerfe Konfigurationsänderungen…"
@@ -6350,7 +6367,7 @@ msgstr "Wurzelverzeichnis erzeugen"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr "Round-Robin-Richtlinie (balance-rr, 0)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "Erlaubte IP-Adressen routen"
@@ -6459,7 +6476,7 @@ msgstr "SSTP-Server"
msgid "SWAP"
msgstr "SWAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6470,7 +6487,7 @@ msgid "Save"
msgstr "Speichern"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Speichern & Anwenden"
@@ -6496,11 +6513,11 @@ msgstr "Suche"
msgid "Scheduled Tasks"
msgstr "Geplante Aufgaben"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Sektion hinzugefügt"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Sektion entfernt"
@@ -6518,9 +6535,9 @@ msgstr ""
"wenn die Formatüberprüfung fehlschlägt. Diese Option nur benutzen wenn das "
"Abbild korrekt und für dieses Gerät bestimmt ist!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "Datei auswählen…"
@@ -6721,7 +6738,7 @@ msgstr "Signal-Wiederholfrequenz"
msgid "Signal:"
msgstr "Signal:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Größe"
@@ -7134,7 +7151,7 @@ msgstr "Startpriorität"
msgid "Start refresh"
msgstr "Aktualisierungen aktivieren"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "Starte Anwendung der Konfigurationsänderungen…"
@@ -7207,6 +7224,10 @@ msgstr "WPS stoppen"
msgid "Stop refresh"
msgstr "Aktualisierungen deaktivieren"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr "strikte Filterung"
@@ -7272,7 +7293,7 @@ msgstr "Wechsle Protokoll"
msgid "Switch to CIDR list notation"
msgstr "Auf CIDR-Listen-Notation wechseln"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "Symbolischer Link"
@@ -7309,7 +7330,6 @@ msgstr "Systemeigenschaften"
msgid "System log buffer size"
msgstr "Größe des Systemprotokoll-Puffers"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7364,11 +7384,15 @@ msgstr ""
msgid "Target network"
msgstr "Zielnetzwerk"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Beenden"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7510,7 +7534,7 @@ msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
"Die MTU darf nicht die %d Byte MTU des übergeordneten Gerätes überschreiten"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7542,7 +7566,7 @@ msgstr ""
"Bei der Verbindung zu einem versteckten Netzwerk muss die korrekte SSID "
"manuell angegeben werden"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7652,7 +7676,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr "Länge des IPv6-Präfix in Bits"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7679,6 +7703,10 @@ msgstr "Die lokale IPv4-Netzmaske"
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr "Die lokale IPv6-Adresse, über die der Tunnel erstellt wird (optional)."
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7850,11 +7878,11 @@ msgstr "Dieser Wert ist durch Konfiguration überschrieben. Originalwert: %s"
msgid "There are no active leases"
msgstr "Es gibt keine aktiven Leases"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "Es gibt keine anzuwendenden Änderungen"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7960,8 +7988,8 @@ msgstr ""
"Diese Option kann nicht verwendet werden, da das Paket ca-bundle nicht "
"installiert ist."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -8244,7 +8272,7 @@ msgstr "Aushängen"
msgid "Unnamed key"
msgstr "Unbenannter Schlüssel"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Ungespeicherte Änderungen"
@@ -8274,7 +8302,7 @@ msgstr "Hoch"
msgid "Up Delay"
msgstr "Up Delay"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Upload"
@@ -8291,21 +8319,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Backup wiederherstellen..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "Datei hochladen"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "Datei hochladen…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "Upload-Anfrage fehlgeschlagen: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "Datei wird hochgeladen…"
@@ -8516,6 +8544,7 @@ msgstr "PEM-kodierter Benutzerschlüssel"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Benutzername"
@@ -8825,7 +8854,7 @@ msgstr "Systemprotokoll in Datei schreiben"
msgid "XOR policy (balance-xor, 2)"
msgstr "XOR-Richtlinie (balance-xor, 2)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8854,7 +8883,7 @@ msgstr ""
"><strong>Warnung: Wenn essentielle Startscripte wie \"network\" deaktiviert "
"werden könnte das Gerät unerreichbar werden!</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -9023,7 +9052,7 @@ msgstr "Voll-Duplex"
msgid "half-duplex"
msgstr "Halb-Duplex"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "hexadezimal kodierten Wert"
@@ -9048,11 +9077,11 @@ msgstr "ignorieren"
msgid "input"
msgstr "eingehend"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "Schlüssel zwischen 8 und 63 Zeichen"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "Schlüssel mit exakt 5 oder 13 Zeichen"
@@ -9085,12 +9114,12 @@ msgstr "nein"
msgid "no link"
msgstr "nicht verbunden"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "nicht-leeren Wert"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "kein"
@@ -9124,11 +9153,11 @@ msgstr "andere Konfiguration (O)"
msgid "output"
msgstr "ausgehend"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "positiven Dezimalwert"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "positive Ganzzahl"
@@ -9179,7 +9208,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "eindeutigen Wert"
@@ -9197,7 +9226,7 @@ msgstr "unbekannt"
msgid "unlimited"
msgstr "unlimitiert"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -9218,175 +9247,175 @@ msgstr "nichts auswählen -oder- erstellen:"
msgid "untagged"
msgstr "unmarkiert"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "gültige IP-Adresse"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "gültige IP-Adresse oder gültiges IP-Präfix"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "gültige IPv4-CIDR-Notation"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "gültige IPv4-Adresse"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "gültige IPv4-Adresse oder gültiges IPv4-Netzwerk"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "gültige IPv4 \"Adresse:Port\" Notation"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "gültiges IPv4-Netzwerk"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "gültige IPv4- oder IPv6-CIDR-Notation"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "gültiger IPv4-Präfix-Wert (0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "gültige iPv6-CIDR-Notation"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "gültige IPv6-Adresse"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "gültige IPv6 addresse oder gültiger IPv6-Präfix"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "gültige IPv6 Host-Identifikation"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "gültiges IPv6-Netzwerk"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "gültiger IPv6-Präfix-Wert (0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "gültige MAC-Adresse"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "gültigen UCI-Bezeichner"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "gültigen UCI-Bezeichner, Hostnamen oder IP-Adresse"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "gültige \"Adresse:Port\" Notation"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "gültiges Datum (JJJJ-MM-DD)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "gültigen Dezimalwert"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "gültigen hexadezimalen WEP-Schlüssel"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "gültigen hexadezimalen WPA-Schlüssel"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "gültige \"Host:Port\" Notation"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "gültigen Hostnamen"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "gültigen Hostnamen oder IP-Adresse"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "gültige Ganzzahl"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "gültiges Netzwerk in \"Addresse/Netzmaske\" Notation"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "gültige Telefonnummernziffer (0-0, \"*\", \"#\", \"!\" oder \".\")"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "gültigen Netzwerkport oder Port-Bereich (von-bis)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "gültigen Netzwerkport"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "gültige Zeit (SS:MM:ss)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "Wert zwischen %d und %d Zeichen"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "Wert zwischen %f und %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "Wert größer oder gleich %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "Wert kleiner oder gleich %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "Wert mit %d Zeichen"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "Wert mit mindestens %d Zeichen"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "Wert mit maximal %d Zeichen"
diff --git a/modules/luci-base/po/el/base.po b/modules/luci-base/po/el/base.po
index c8028b123e..93e8a00949 100644
--- a/modules/luci-base/po/el/base.po
+++ b/modules/luci-base/po/el/base.po
@@ -21,7 +21,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d μη έγκυρο/α πεδίο/α"
@@ -57,19 +57,19 @@ msgid "-- Additional Field --"
msgstr "-- Επιπλέον Πεδίο --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Παρακαλώ επιλέξτε --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- προσαρμοσμένο --"
@@ -216,7 +216,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Ένας φάκελος με το ίδιο όνομα υπάρχει ήδη."
@@ -224,7 +224,7 @@ msgstr "Ένας φάκελος με το ίδιο όνομα υπάρχει ή
msgid "A new login is required since the authentication session expired."
msgstr "Απαιτείται νέα σύνδεση καθώς η συνεδρία ελέγχου ταυτότητας έληξε."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -403,11 +403,11 @@ msgstr ""
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -635,7 +635,7 @@ msgid "Allow the <em>root</em> user to login with password"
msgstr ""
"Να επιτρέπεται στον χρήστη <em>root</em> να συνδέετε με κωδικό πρόσβασης"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "Επιτρεπόμενες IPs"
@@ -791,16 +791,16 @@ msgstr ""
msgid "Apply backup?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr ""
@@ -855,6 +855,7 @@ msgid "Authoritative"
msgstr "Κύριος"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Απαιτείται Εξουσιοδότηση"
@@ -1071,8 +1072,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr ""
@@ -1102,8 +1103,8 @@ msgstr ""
msgid "Call failed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1169,11 +1170,11 @@ msgstr ""
msgid "Chain"
msgstr "Αλυσίδα"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Αλλαγές"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr ""
@@ -1272,7 +1273,7 @@ msgstr "πελάτης"
msgid "Client ID to send when requesting DHCP"
msgstr "Αναγνωριστικό πελάτη που αποστέλλετε κατά την αίτηση DHCP"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1337,16 +1338,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Διαμόρφωση"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr ""
@@ -1444,7 +1445,7 @@ msgstr ""
msgid "Continue"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1678,11 +1679,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1694,7 +1695,7 @@ msgstr "Διαγραφή"
msgid "Delete key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr ""
@@ -1708,11 +1709,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Περιγραφή"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr ""
@@ -1785,7 +1786,7 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr ""
@@ -1806,7 +1807,7 @@ msgstr "Διαγνωστικά"
msgid "Dial number"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Φάκελος"
@@ -1880,10 +1881,14 @@ msgstr ""
msgid "Disconnection attempt failed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1972,7 +1977,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -1984,7 +1989,7 @@ msgstr ""
msgid "Do you really want to erase all settings?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr ""
@@ -2026,7 +2031,7 @@ msgstr ""
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr ""
@@ -2077,9 +2082,9 @@ msgstr ""
msgid "EAP-Method"
msgstr "Μέθοδος EAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2124,6 +2129,10 @@ msgstr "Έκτακτη ανάγκη"
msgid "Enable"
msgstr "Ενεργοποίηση"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2322,11 +2331,11 @@ msgstr "Λειτουργία ενθυλάκωσης"
msgid "Encryption"
msgstr "Κρυπτογράφηση"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2429,7 +2438,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2510,7 +2519,7 @@ msgstr ""
msgid "Failed to change the system password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2518,7 +2527,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Αρχείο"
@@ -2528,7 +2537,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr ""
@@ -2542,7 +2551,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr "τοπικό αρχείο <abbr title=\"Domain Name System\">DNS</abbr>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr ""
@@ -2649,7 +2658,7 @@ msgstr "Λειτουργίες φλασάρισματος"
msgid "Flashing…"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2833,7 +2842,7 @@ msgstr ""
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2845,7 +2854,7 @@ msgstr ""
msgid "Generate archive"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2861,21 +2870,20 @@ msgstr ""
msgid "Global network options"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3030,7 +3038,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "Κρυφό <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3215,7 +3223,7 @@ msgstr "Πύλη IPv4"
msgid "IPv4 netmask"
msgstr "Μάσκα IPv4"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3316,7 +3324,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr "Πύλη IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3386,7 +3394,7 @@ msgstr ""
msgid "Identity"
msgstr "Ταυτότητα"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3425,7 +3433,7 @@ msgstr ""
"Αν οριστεί, προσάρτησε τη συσκευή με βάση την ετικέτα της αντί για το "
"καθορισμένο όνομα της"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3737,6 +3745,8 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Άκυρο όνομα χρήστη και/ή κωδικός πρόσβασης! Παρακαλώ προσπαθήστε ξανά."
@@ -3757,7 +3767,7 @@ msgstr ""
"Φαίνεται πως προσπαθείτε να φλασάρετε μια εικόνα που δεν χωράει στην μνήμη "
"flash, παρακαλώ επιβεβαιώστε το αρχείο εικόνας!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3930,7 +3940,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "Υπόμνημα:"
@@ -4040,17 +4050,19 @@ msgstr "Φόρτος"
msgid "Load Average"
msgstr "Μέσος όρος φόρτου"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr ""
@@ -4156,6 +4168,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Σύνδεση"
@@ -4511,7 +4524,7 @@ msgstr "Παρακολούθηση"
msgid "More Characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr ""
@@ -4617,8 +4630,8 @@ msgstr ""
msgid "NTP server candidates"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4714,7 +4727,7 @@ msgstr ""
msgid "Next »"
msgstr "Επόμενο »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4744,7 +4757,6 @@ msgstr ""
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4775,7 +4787,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr ""
@@ -4815,7 +4827,7 @@ msgstr ""
msgid "No negative cache"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4980,7 +4992,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr ""
@@ -5044,20 +5056,20 @@ msgstr ""
msgid "Operating frequency"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Η επιλογή άλλαξε"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Η επιλογή αφαιρέθηκε"
@@ -5083,17 +5095,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr ""
@@ -5101,13 +5113,13 @@ msgstr ""
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5118,11 +5130,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5263,7 +5275,7 @@ msgstr ""
msgid "Overview"
msgstr "Επισκόπηση"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5398,6 +5410,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Κωδικός Πρόσβασης"
@@ -5487,6 +5500,10 @@ msgstr ""
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr ""
@@ -5514,7 +5531,7 @@ msgstr "Διενέργεια αρχικοποίησης"
msgid "Permission denied"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
@@ -5545,7 +5562,7 @@ msgstr "Πκτ."
msgid "Please enter your username and password."
msgstr "Παρακαλώ εισάγετε όνομα χρήστη και κωδικό πρόσβασης."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr ""
@@ -5565,7 +5582,7 @@ msgstr ""
msgid "Port status:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5593,7 +5610,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr ""
@@ -5685,7 +5702,7 @@ msgstr ""
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Ψευδό Ad-Hoc (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Δημόσιο κλειδί"
@@ -5706,8 +5723,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5940,7 +5957,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -6068,8 +6085,8 @@ msgid ""
"received if multiple IPs are available."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr ""
@@ -6077,19 +6094,19 @@ msgstr ""
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Αναίρεση"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr ""
@@ -6112,7 +6129,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6219,7 +6236,7 @@ msgstr ""
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6230,7 +6247,7 @@ msgid "Save"
msgstr "Αποθήκευση"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Αποθήκευση & Εφαρμογή"
@@ -6256,11 +6273,11 @@ msgstr "Σάρωση"
msgid "Scheduled Tasks"
msgstr "Προγραμματισμένες Εργασίες"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr ""
@@ -6275,9 +6292,9 @@ msgid ""
"your device!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr ""
@@ -6459,7 +6476,7 @@ msgstr ""
msgid "Signal:"
msgstr "Σήμα:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Μέγεθος"
@@ -6795,7 +6812,7 @@ msgstr "Προτεραιότητα εκκίνησης"
msgid "Start refresh"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr ""
@@ -6864,6 +6881,10 @@ msgstr ""
msgid "Stop refresh"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -6926,7 +6947,7 @@ msgstr ""
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr ""
@@ -6963,7 +6984,6 @@ msgstr "Ιδιότητες Συστήματος"
msgid "System log buffer size"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7017,11 +7037,15 @@ msgstr ""
msgid "Target network"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Τερματισμός"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7136,7 +7160,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7164,7 +7188,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7254,7 +7278,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7281,6 +7305,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7414,11 +7442,11 @@ msgstr ""
msgid "There are no active leases"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7504,8 +7532,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7777,7 +7805,7 @@ msgstr ""
msgid "Unnamed key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Μη-αποθηκευμένες Αλλαγές"
@@ -7807,7 +7835,7 @@ msgstr ""
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr ""
@@ -7822,21 +7850,21 @@ msgstr ""
msgid "Upload archive..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr ""
@@ -8025,6 +8053,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Όνομα Χρήστη"
@@ -8316,7 +8345,7 @@ msgstr ""
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8343,7 +8372,7 @@ msgstr ""
"><strong>Προειδοποίηση: Αν απενεργοποιήσετε απαραίτητα σενάρια εκκίνησης "
"όπως το \"network\", η συσκευή σας μπορεί να καταστεί μη-προσβάσιμη!</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8507,7 +8536,7 @@ msgstr ""
msgid "half-duplex"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr ""
@@ -8532,11 +8561,11 @@ msgstr ""
msgid "input"
msgstr "είσοδος"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr ""
@@ -8569,12 +8598,12 @@ msgstr "όχι"
msgid "no link"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "κανένα"
@@ -8608,11 +8637,11 @@ msgstr ""
msgid "output"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr ""
@@ -8663,7 +8692,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr ""
@@ -8681,7 +8710,7 @@ msgstr ""
msgid "unlimited"
msgstr "απεριόριστα"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8702,175 +8731,175 @@ msgstr "μη-καθορισμένο -ή- δημιουργείστε:"
msgid "untagged"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr ""
diff --git a/modules/luci-base/po/en/base.po b/modules/luci-base/po/en/base.po
index f0a2e34b77..75ce904c8f 100644
--- a/modules/luci-base/po/en/base.po
+++ b/modules/luci-base/po/en/base.po
@@ -22,7 +22,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr ""
@@ -58,19 +58,19 @@ msgid "-- Additional Field --"
msgstr "-- Additional Field --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Please choose --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- custom --"
@@ -217,7 +217,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "A new login is required since the authentication session expired."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -402,11 +402,11 @@ msgstr ""
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -628,7 +628,7 @@ msgstr ""
msgid "Allow the <em>root</em> user to login with password"
msgstr "Allow the <em>root</em> user to login with password"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr ""
@@ -784,16 +784,16 @@ msgstr ""
msgid "Apply backup?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr ""
@@ -848,6 +848,7 @@ msgid "Authoritative"
msgstr "Authoritative"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Authorization Required"
@@ -1063,8 +1064,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr ""
@@ -1094,8 +1095,8 @@ msgstr ""
msgid "Call failed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1161,11 +1162,11 @@ msgstr ""
msgid "Chain"
msgstr "Chain"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Changes"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr ""
@@ -1264,7 +1265,7 @@ msgstr "Client"
msgid "Client ID to send when requesting DHCP"
msgstr "Client ID to send when requesting DHCP"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1328,16 +1329,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Configuration"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr ""
@@ -1435,7 +1436,7 @@ msgstr ""
msgid "Continue"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1670,11 +1671,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1686,7 +1687,7 @@ msgstr "Delete"
msgid "Delete key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr ""
@@ -1700,11 +1701,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Description"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr ""
@@ -1777,7 +1778,7 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr ""
@@ -1798,7 +1799,7 @@ msgstr "Diagnostics"
msgid "Dial number"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Directory"
@@ -1870,10 +1871,14 @@ msgstr ""
msgid "Disconnection attempt failed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1958,7 +1963,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -1970,7 +1975,7 @@ msgstr ""
msgid "Do you really want to erase all settings?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr ""
@@ -2012,7 +2017,7 @@ msgstr ""
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr ""
@@ -2060,9 +2065,9 @@ msgstr ""
msgid "EAP-Method"
msgstr "EAP-Method"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2107,6 +2112,10 @@ msgstr ""
msgid "Enable"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2305,11 +2314,11 @@ msgstr ""
msgid "Encryption"
msgstr "Encryption"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2411,7 +2420,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2489,7 +2498,7 @@ msgstr ""
msgid "Failed to change the system password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2497,7 +2506,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr ""
@@ -2507,7 +2516,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr ""
@@ -2521,7 +2530,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr "local <abbr title=\"Domain Name System\">DNS</abbr> file"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr ""
@@ -2628,7 +2637,7 @@ msgstr ""
msgid "Flashing…"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2810,7 +2819,7 @@ msgstr ""
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2822,7 +2831,7 @@ msgstr ""
msgid "Generate archive"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2838,21 +2847,20 @@ msgstr ""
msgid "Global network options"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3007,7 +3015,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3192,7 +3200,7 @@ msgstr ""
msgid "IPv4 netmask"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3293,7 +3301,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3363,7 +3371,7 @@ msgstr ""
msgid "Identity"
msgstr "Identity"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3398,7 +3406,7 @@ msgid ""
"device node"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3709,6 +3717,8 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Invalid username and/or password! Please try again."
@@ -3729,7 +3739,7 @@ msgstr ""
"It appears that you try to flash an image that does not fit into the flash "
"memory, please verify the image file!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3902,7 +3912,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr ""
@@ -4012,17 +4022,19 @@ msgstr "Load"
msgid "Load Average"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr ""
@@ -4128,6 +4140,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Login"
@@ -4482,7 +4495,7 @@ msgstr "Monitor"
msgid "More Characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr ""
@@ -4588,8 +4601,8 @@ msgstr ""
msgid "NTP server candidates"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4685,7 +4698,7 @@ msgstr ""
msgid "Next »"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4715,7 +4728,6 @@ msgstr ""
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4746,7 +4758,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr ""
@@ -4786,7 +4798,7 @@ msgstr ""
msgid "No negative cache"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4951,7 +4963,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr ""
@@ -5015,20 +5027,20 @@ msgstr ""
msgid "Operating frequency"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr ""
@@ -5054,17 +5066,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr ""
@@ -5072,13 +5084,13 @@ msgstr ""
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5089,11 +5101,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5234,7 +5246,7 @@ msgstr ""
msgid "Overview"
msgstr "Overview"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5369,6 +5381,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Password"
@@ -5458,6 +5471,10 @@ msgstr ""
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr ""
@@ -5485,7 +5502,7 @@ msgstr ""
msgid "Permission denied"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
@@ -5516,7 +5533,7 @@ msgstr "Pkts."
msgid "Please enter your username and password."
msgstr "Please enter your username and password."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr ""
@@ -5536,7 +5553,7 @@ msgstr ""
msgid "Port status:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5564,7 +5581,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr ""
@@ -5655,7 +5672,7 @@ msgstr ""
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Pseudo Ad-Hoc (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr ""
@@ -5676,8 +5693,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5910,7 +5927,7 @@ msgstr "Required for certain ISPs, e.g. Charter with DOCSIS 3"
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -6038,8 +6055,8 @@ msgid ""
"received if multiple IPs are available."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr ""
@@ -6047,19 +6064,19 @@ msgstr ""
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Revert"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr ""
@@ -6082,7 +6099,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6189,7 +6206,7 @@ msgstr ""
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6200,7 +6217,7 @@ msgid "Save"
msgstr "Save"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Save & Apply"
@@ -6226,11 +6243,11 @@ msgstr "Scan"
msgid "Scheduled Tasks"
msgstr "Scheduled Tasks"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr ""
@@ -6245,9 +6262,9 @@ msgid ""
"your device!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr ""
@@ -6429,7 +6446,7 @@ msgstr ""
msgid "Signal:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Size"
@@ -6765,7 +6782,7 @@ msgstr "Start priority"
msgid "Start refresh"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr ""
@@ -6834,6 +6851,10 @@ msgstr ""
msgid "Stop refresh"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -6896,7 +6917,7 @@ msgstr ""
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr ""
@@ -6933,7 +6954,6 @@ msgstr ""
msgid "System log buffer size"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -6987,11 +7007,15 @@ msgstr ""
msgid "Target network"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Terminate"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7106,7 +7130,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7132,7 +7156,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7222,7 +7246,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7249,6 +7273,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7382,11 +7410,11 @@ msgstr ""
msgid "There are no active leases"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7470,8 +7498,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7742,7 +7770,7 @@ msgstr ""
msgid "Unnamed key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Unsaved Changes"
@@ -7772,7 +7800,7 @@ msgstr ""
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr ""
@@ -7787,21 +7815,21 @@ msgstr ""
msgid "Upload archive..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr ""
@@ -7990,6 +8018,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Username"
@@ -8283,7 +8312,7 @@ msgstr ""
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8309,7 +8338,7 @@ msgstr ""
"after a device reboot.<br /><strong>Warning: If you disable essential init "
"scripts like \"network\", your device might become inaccessible!</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8472,7 +8501,7 @@ msgstr ""
msgid "half-duplex"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr ""
@@ -8497,11 +8526,11 @@ msgstr ""
msgid "input"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr ""
@@ -8534,12 +8563,12 @@ msgstr ""
msgid "no link"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "none"
@@ -8573,11 +8602,11 @@ msgstr ""
msgid "output"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr ""
@@ -8628,7 +8657,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr ""
@@ -8646,7 +8675,7 @@ msgstr ""
msgid "unlimited"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8667,175 +8696,175 @@ msgstr "unspecified -or- create:"
msgid "untagged"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr ""
diff --git a/modules/luci-base/po/es/base.po b/modules/luci-base/po/es/base.po
index 74118e0341..2788e0e52c 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: 2021-11-02 17:26+0000\n"
+"PO-Revision-Date: 2021-11-27 23:39+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.9-dev\n"
+"X-Generator: Weblate 4.10-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
msgid "%.1f dB"
@@ -22,7 +22,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d campo(s) inválido(s)"
@@ -58,19 +58,19 @@ msgid "-- Additional Field --"
msgstr "-- Campo adicional --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Por favor elija --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- Personalizado --"
@@ -220,7 +220,7 @@ msgstr "Servicio <abbr title=\"Router Advertisement\">RA</abbr>"
msgid "A configuration for the device \"%s\" already exists"
msgstr "Ya existe una configuración para el dispositivo \"%s\""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Ya existe un directorio con el mismo nombre."
@@ -230,7 +230,7 @@ msgstr ""
"Se requiere un nuevo inicio de sesión ya que la sesión de autenticación "
"expiró."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -411,11 +411,11 @@ msgstr "Equilibrio de carga adaptativo (balance-alb, 6)"
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "Equilibrio de carga de transmisión adaptativa (balance-tlb, 5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -649,7 +649,7 @@ msgstr "Permitir sondeo de funciones del sistema"
msgid "Allow the <em>root</em> user to login with password"
msgstr "Permitir al usuario <em>root</em> conectar con contraseña"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "IPs permitidas"
@@ -817,16 +817,16 @@ msgstr "Aplique las opciones de DHCP a esta red. (Vacío = todos los clientes)."
msgid "Apply backup?"
msgstr "¿Aplicar respaldo?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "Solicitud de aplicar fallida con estado <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "Aplicar sin restricción"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "Esperando a que se aplique la configuración… %ds"
@@ -888,6 +888,7 @@ msgid "Authoritative"
msgstr "Autorizar"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Autorización requerida"
@@ -1114,8 +1115,8 @@ msgstr "Activar la interfaz de puente incluso si no hay puertos conectados"
msgid "Broadcast policy (broadcast, 3)"
msgstr "Política de difusión (difusión, 3)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Explorar…"
@@ -1146,8 +1147,8 @@ msgstr "En caché"
msgid "Call failed"
msgstr "Llamada fallida"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1223,11 +1224,11 @@ msgstr ""
msgid "Chain"
msgstr "Cadena"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Cambios"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "Se revirtieron los cambios."
@@ -1330,7 +1331,7 @@ msgstr "Cliente"
msgid "Client ID to send when requesting DHCP"
msgstr "ID de cliente que se enviará al solicitar DHCP"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1399,16 +1400,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "Calcular la suma de verificación saliente (opcional)."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Configuración"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "Se ha aplicado la configuración."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "¡La configuración ha sido revertida!"
@@ -1522,7 +1523,7 @@ msgstr "Se han guardado los contenidos."
msgid "Continue"
msgstr "Continuar"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1769,11 +1770,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr "Delegar prefijos de IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1785,7 +1786,7 @@ msgstr "Eliminar"
msgid "Delete key"
msgstr "Eliminar clave"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "Error al eliminar la solicitud: %s"
@@ -1799,11 +1800,11 @@ msgstr "Intervalo de mensaje de indicación de tráfico de entrega"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Descripción"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Deseleccionar"
@@ -1876,7 +1877,7 @@ msgstr "Dispositivo no presente"
msgid "Device type"
msgstr "Tipo de dispositivo"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Dispositivo inalcanzable!"
@@ -1897,7 +1898,7 @@ msgstr "Diagnósticos"
msgid "Dial number"
msgstr "Marcar el número"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Directorio"
@@ -1971,10 +1972,14 @@ msgstr "Intento de desconexión fallido"
msgid "Disconnection attempt failed."
msgstr "Intento de desconexión fallido."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr "Espacio del disco"
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -2067,7 +2072,7 @@ msgstr ""
"No envíe ningún mensaje <abbr title=\"Router Advertisement, ICMPv6 Type "
"134\">RA</abbr> en esta interfaz."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "¿Realmente quieres eliminar \"%s\" ?"
@@ -2079,7 +2084,7 @@ msgstr "¿Realmente quiere eliminar la siguiente clave SSH?"
msgid "Do you really want to erase all settings?"
msgstr "¿Realmente quieres borrar todos las configuraciones?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "¿Realmente desea eliminar recursivamente el directorio \"%s\" ?"
@@ -2121,7 +2126,7 @@ msgstr "Descargar mtdblock"
msgid "Downstream SNR offset"
msgstr "Desplazamiento SNR en sentido descendente"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "Arrastrar para reordenar"
@@ -2171,9 +2176,9 @@ msgstr "Longitud de bits EA"
msgid "EAP-Method"
msgstr "Método EAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2220,6 +2225,12 @@ msgstr "Emergencia"
msgid "Enable"
msgstr "Activar"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+"Activar / Desactivar par. Reinicie la interfaz wireguard para aplicar los "
+"cambios."
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2431,11 +2442,11 @@ msgstr "Modo de encapsulado"
msgid "Encryption"
msgstr "Encriptación"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr "Punto final de Host"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr "Punto final del puerto"
@@ -2538,7 +2549,7 @@ msgstr "Esperando una dirección IPv6 válida"
msgid "Expecting two priority values separated by a colon"
msgstr "Esperando dos valores de prioridad separados por dos puntos"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2618,7 +2629,7 @@ msgstr "Protocolo FT"
msgid "Failed to change the system password."
msgstr "Error al cambiar la contraseña del sistema."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
"Error al confirmar aplicar dentro de %ds. Esperando a que se reviertan los "
@@ -2628,7 +2639,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Error al ejecutar la acción \"/etc/init.d/%s%s\": %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Archivo"
@@ -2641,7 +2652,7 @@ msgstr ""
"'server=1.2.3.4' para dominios específicos o servidores <abbr title=\"Domain "
"Name System\">DNS</abbr> full upstream."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "Archivo no accesible"
@@ -2653,7 +2664,7 @@ msgstr "Archivo en donde se almacenará información de las asignaciones DHCP."
msgid "File with upstream resolvers."
msgstr "Archivo <abbr title=\"Domain Name System\">DNS</abbr> local"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "Nombre del archivo"
@@ -2766,7 +2777,7 @@ msgstr "Operaciones de grabado"
msgid "Flashing…"
msgstr "Instalando…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr "Para la compatibilidad con código QR, instale el paquete qrencode!"
@@ -2963,7 +2974,7 @@ msgstr "Generar Config"
msgid "Generate Key"
msgstr "Generar clave"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr "Generar nuevo código QR"
@@ -2975,7 +2986,7 @@ msgstr "Generar PMK localmente"
msgid "Generate archive"
msgstr "Generar archivo"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr "Generar nuevo código QR"
@@ -2993,7 +3004,6 @@ msgstr "Configuración global"
msgid "Global network options"
msgstr "Opciones globales de red"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
@@ -3001,14 +3011,14 @@ msgstr "Opciones globales de red"
msgid "Go to firmware upgrade..."
msgstr "Ir a actualización de firmware..."
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Ir a la configuración de la contraseña..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3163,7 +3173,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "Ocultar <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr "Ocultar código QR"
@@ -3355,7 +3365,7 @@ msgstr "Puerta de enlace IPv4"
msgid "IPv4 netmask"
msgstr "Máscara de red IPv4"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr "Red IPv4 en notación de dirección / máscara de red"
@@ -3456,7 +3466,7 @@ msgstr "Longitud de asignación de IPv6"
msgid "IPv6 gateway"
msgstr "Puerta de enlace IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr "Red IPv6 en notación de dirección / máscara de red"
@@ -3527,7 +3537,7 @@ msgstr "IPv6-sobre-IPv4 (6to4)"
msgid "Identity"
msgstr "Identidad"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr "Si está disponible, la \"PresharedKey\" del cliente"
@@ -3568,7 +3578,7 @@ msgstr ""
"Montar el dispositivo por la etiqueta de la partición en vez de por el nodo "
"fijo de dispositivo si se especifica"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3896,6 +3906,8 @@ msgid "Invalid hexadecimal value"
msgstr "Valor hexadecimal inválido"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "¡Nombre de usuario y/o contraseña no válidos! Por favor reintente."
@@ -3916,7 +3928,7 @@ msgstr ""
"Parece que está intentando grabar una imagen de firmware mayor que la "
"memoria flash de su equipo. ¡Por favor, verifique el archivo!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -4094,7 +4106,7 @@ msgstr ""
"tiempo en el aire puede reducirse significativamente cuando se utilizan. Se "
"recomienda no permitir velocidades 802.11b siempre que sea posible."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "Registro de cambios:"
@@ -4218,17 +4230,19 @@ msgstr "Carga"
msgid "Load Average"
msgstr "Carga media"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr "Cargando código QR..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "Cargando el contenido del directorio…"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "Cargando vista…"
@@ -4338,6 +4352,7 @@ 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)."
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Iniciar sesión"
@@ -4704,7 +4719,7 @@ msgstr "Monitor"
msgid "More Characters"
msgstr "Más caracteres"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "Más…"
@@ -4810,8 +4825,8 @@ msgstr "Dominio NT"
msgid "NTP server candidates"
msgstr "Servidores NTP a consultar"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4911,7 +4926,7 @@ msgstr "Nuevo nombre de interfaz…"
msgid "Next »"
msgstr "Siguiente »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4941,7 +4956,6 @@ msgstr "Sin NAT-T"
msgid "No RX signal"
msgstr "No hay señal RX"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4976,7 +4990,7 @@ msgstr "Sin aplicación"
msgid "No entries available"
msgstr "No hay entradas disponibles"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "No hay entradas en este directorio"
@@ -5016,7 +5030,7 @@ msgstr "No hay más esclavos disponibles, no se puede guardar la interfaz"
msgid "No negative cache"
msgstr "Sin caché negativa"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -5186,7 +5200,7 @@ msgstr "Ruta en enlace"
msgid "One of hostname or MAC address must be specified!"
msgstr "¡Debe especificar al menos un nombre de host o dirección MAC!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "uno de los siguientes: %s"
@@ -5261,20 +5275,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "Frecuencia de operación"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr "La opción \"%s\" contiene un valor de entrada no válido."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr "La opción \"%s\" no debe estar vacía."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Opción cambiada"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Opción removida"
@@ -5306,7 +5320,7 @@ msgstr ""
"servidor delegante, use el sufijo (como '::1') para formar la dirección IPv6 "
"('a:b:c:d::1') para la interfaz."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
@@ -5315,11 +5329,11 @@ msgstr ""
"adicional de criptografía de clave simétrica para la resistencia post-"
"cuántica."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr "Opcional. Crear rutas para IPs permitidas para este par."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "Opcional. Descripción del par."
@@ -5327,14 +5341,14 @@ msgstr "Opcional. Descripción del par."
msgid "Optional. Do not create host routes to peers."
msgstr "Opcional. No crea rutas de host para los pares."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
"Opcional. Host de pares. Los nombres se resuelven antes de abrir la interfaz."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5348,11 +5362,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "Opcional. Unidad máxima de transmisión de la interfaz del túnel."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "Opcional. Puerto de pares."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5503,7 +5517,7 @@ msgstr "Anular la tabla utilizada para rutas internas"
msgid "Overview"
msgstr "Visión general"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "Sobrescribir archivo \"%s\" existente?"
@@ -5638,6 +5652,7 @@ msgstr "Traspasar (Duplicar dispositivo físico a una sola MAC VLAN)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Contraseña"
@@ -5727,6 +5742,10 @@ msgstr "Falta la dirección del compañero"
msgid "Peer device name"
msgstr "Nombre del dispositivo del par"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr "Par desactivado"
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "Pares"
@@ -5754,7 +5773,7 @@ msgstr "Realizar restablecimiento"
msgid "Permission denied"
msgstr "Permiso denegado"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "Mantener conectado continuamente"
@@ -5785,7 +5804,7 @@ msgstr "Paq."
msgid "Please enter your username and password."
msgstr "Por favor, introduzca su nombre de usuario y contraseña."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "Por favor, seleccione el archivo que desea cargar."
@@ -5805,7 +5824,7 @@ msgstr "Aislamiento de puertos"
msgid "Port status:"
msgstr "Estado del puerto:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr "negación potencial de: %s"
@@ -5833,7 +5852,7 @@ msgstr "Prefijo delegado"
msgid "Prefix suppressor"
msgstr "Supresor de prefijo"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "Clave precompartida"
@@ -5932,7 +5951,7 @@ msgstr "Introduzca una nueva red"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Pseudo Ad-Hoc (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Clave pública"
@@ -5960,8 +5979,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr "QMI Celular"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr "Código QR"
@@ -6199,7 +6218,7 @@ msgstr "Requerido para ciertos ISPs, por ejemplo Charter con DOCSIS 3"
msgid "Required. Base64-encoded private key for this interface."
msgstr "Requerido. Clave privada codificada en base64 para esta interfaz."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr "Requerido. Base64 codificada clave pública de igual."
@@ -6329,8 +6348,8 @@ msgstr ""
"Localice el nombre del host en función de la subred que solicita si hay "
"varias IP disponibles"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Revelar/ocultar contraseña"
@@ -6338,19 +6357,19 @@ msgstr "Revelar/ocultar contraseña"
msgid "Reverse path filter"
msgstr "Filtro de ruta inversa"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Revertir"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "Revertir cambios"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr "Error al revertir la solicitud con el estado <code>%h</code>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "Revirtiendo configuración…"
@@ -6376,7 +6395,7 @@ msgstr "Preparación de la raíz"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr "Política Round-Robin (balance-rr, 0)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "Ruta permitida IPs"
@@ -6485,7 +6504,7 @@ msgstr "Servidor SSTP"
msgid "SWAP"
msgstr "SWAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6496,7 +6515,7 @@ msgid "Save"
msgstr "Guardar"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Guardar y Aplicar"
@@ -6522,11 +6541,11 @@ msgstr "Escanear"
msgid "Scheduled Tasks"
msgstr "Tareas programadas"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Sección añadida"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Sección removida"
@@ -6544,9 +6563,9 @@ msgstr ""
"la verificación del formato de la imagen. ¡Úselo solo si está seguro de que "
"el firmware es correcto y está diseñado para su dispositivo!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "Seleccionar archivo…"
@@ -6746,7 +6765,7 @@ msgstr "Frecuencia de actualización de la señal"
msgid "Signal:"
msgstr "Señal:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Tamaño"
@@ -7161,7 +7180,7 @@ msgstr "Prioridad de inicio"
msgid "Start refresh"
msgstr "Iniciar actualización"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "Iniciando aplicar configuración…"
@@ -7234,6 +7253,10 @@ msgstr "Detener WPS"
msgid "Stop refresh"
msgstr "Detener actualización"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr "Uso de almacenamiento"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr "Filtrado estricto"
@@ -7298,7 +7321,7 @@ msgstr "Intercambiar protocolo"
msgid "Switch to CIDR list notation"
msgstr "Cambiar a la notación de lista CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "Enlace simbólico"
@@ -7335,7 +7358,6 @@ msgstr "Propiedades del sistema"
msgid "System log buffer size"
msgstr "Tamaño del buffer de registro del sistema"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7391,11 +7413,16 @@ msgstr "Plataforma de destino"
msgid "Target network"
msgstr "Red de destino"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+#, fuzzy
+msgid "Temp space"
+msgstr "Espacio temporal"
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Terminar"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
#, fuzzy
msgid "The \"PublicKey\" of that wg interface"
msgstr "La \"PublicKey\" de esa interfaz de wg"
@@ -7537,7 +7564,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr "La MTU no debe exceder la MTU del dispositivo principal de %d bytes"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7570,7 +7597,7 @@ msgstr ""
"El SSID correcto debe especificarse manualmente para conectarse a una red Wi-"
"Fi oculta"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7680,7 +7707,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr "Longitud del prefijo IPv6 en bits"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7709,6 +7736,10 @@ msgstr "La máscara de red IPv4 local"
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)."
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr "La solicitud de inicio de sesión falló con el error: %h"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7873,11 +7904,11 @@ msgstr "El valor se reemplaza por la configuración. Original: %s"
msgid "There are no active leases"
msgstr "No hay asignaciones activas"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "No hay cambios para aplicar"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7976,8 +8007,8 @@ msgid ""
msgstr ""
"Esta opción no se puede usar porque el paquete ca-bundle no está instalado."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -8257,7 +8288,7 @@ msgstr "Desmontar"
msgid "Unnamed key"
msgstr "Clave sin nombre"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Cambios sin aplicar"
@@ -8287,7 +8318,7 @@ msgstr "Arriba"
msgid "Up Delay"
msgstr "Retraso de subida"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Cargar"
@@ -8304,21 +8335,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Subir archivo..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "Subir archivo"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "Subir archivo…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "Error al cargar la solicitud: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "Cargando archivo…"
@@ -8529,6 +8560,7 @@ msgstr "Clave de usuario (codificada PEM)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Nombre de usuario"
@@ -8838,7 +8870,7 @@ msgstr "Escribe el registro del sistema al archivo"
msgid "XOR policy (balance-xor, 2)"
msgstr "Política XOR (balance-xor, 2)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8867,7 +8899,7 @@ msgstr ""
"<strong>Advertencia: Si desactivas los scripts de inicio esenciales como "
"\"network\", ¡Tu dispositivo podría volverse inaccesible!</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -9036,7 +9068,7 @@ msgstr "Full dúplex"
msgid "half-duplex"
msgstr "Half dúplex"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "valor codificado en hexadecimal"
@@ -9061,11 +9093,11 @@ msgstr "ignorar"
msgid "input"
msgstr "Entrada"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "clave entre 8 y 63 caracteres"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "clave de 5 o 13 caracteres"
@@ -9099,12 +9131,12 @@ msgstr "no"
msgid "no link"
msgstr "Sin enlace"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "valor no vacío"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "ninguno"
@@ -9140,11 +9172,11 @@ msgstr "otra configuración (O)"
msgid "output"
msgstr "Salida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "valor decimal positivo"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "valor entero positivo"
@@ -9198,7 +9230,7 @@ msgstr ""
"\">HTTP</abbr> o <abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</"
"abbr>."
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "valor único"
@@ -9216,7 +9248,7 @@ msgstr "Desconocido"
msgid "unlimited"
msgstr "ilimitado"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -9237,175 +9269,175 @@ msgstr "No especificado -o- crear:"
msgid "untagged"
msgstr "Desetiquetado"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "dirección IP válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "dirección IP válida o prefijo"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "IPv4 válido CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "dirección IPv4 válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "dirección IPv4 o red válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "dirección IPv4 válida: puerto"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "red IPv4 válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "IPv4 válido o IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "valor de prefijo IPv4 válido (0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "IPv6 válido CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "dirección IPv6 válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "dirección IPv6 válida o prefijo"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "ID de host IPv6 válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "red IPv6 válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "valor de prefijo IPv6 válido (0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "dirección MAC válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "identificador UCI válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "identificador UCI válido, nombre del host o dirección IP"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "dirección válida: puerto"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "fecha válida (AAAA-MM-DD)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "valor decimal válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "clave WEP hexadecimal válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "clave hexadecimal WPA válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "host válido: puerto"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "nombre de host válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "nombre de host válido o dirección IP"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "valor entero valido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr "dirección MAC de multidifusión válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "red válida en notación de dirección/máscara de red"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "dígito de teléfono válido (0-9, \"*\", \"#\", \"!\" o \".\")"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "puerto válido o rango de puertos (port1-port2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "valor de puerto válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "tiempo válido (HH:MM:SS)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "valor entre %d y %d caracteres"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "valor entre %f y %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "valor mayor o igual a %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "valor menor o igual a %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "valor con %d caracteres"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "valor con al menos %d caracteres"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "valor con un máximo de %d caracteres"
diff --git a/modules/luci-base/po/fi/base.po b/modules/luci-base/po/fi/base.po
index 04608a1810..0cbde24393 100644
--- a/modules/luci-base/po/fi/base.po
+++ b/modules/luci-base/po/fi/base.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2021-08-13 04:43+0000\n"
-"Last-Translator: olli <olli.asikainen@gmail.com>\n"
+"PO-Revision-Date: 2021-11-16 17:38+0000\n"
+"Last-Translator: Hannu Nyman <hannu.nyman@iki.fi>\n"
"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/luci/fi/>"
"\n"
"Language: fi\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.8-dev\n"
+"X-Generator: Weblate 4.9.1-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
msgid "%.1f dB"
@@ -18,7 +18,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bitti"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d on virheellinen kenttä(t)"
@@ -54,19 +54,19 @@ msgid "-- Additional Field --"
msgstr "-- Lisäkenttä --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Valitse --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- mukautettu --"
@@ -188,6 +188,7 @@ msgstr "<abbr title = \"Valoa emittoiva diodi\"> LED </abbr> nimi"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897
msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
msgstr ""
+"<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-välityspalvelin"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:791
msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
@@ -195,25 +196,25 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
-msgstr ""
+msgstr "<abbr title=\"Router Advertisement\">RA</abbr> hyppyjen raja"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
-msgstr ""
+msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-käyttöikä"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
-msgstr ""
+msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:763
msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
-msgstr ""
+msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-palvelu"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:370
msgid "A configuration for the device \"%s\" already exists"
-msgstr ""
+msgstr "Laitteen \"%s\" määritys on jo olemassa"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Samanniminen hakemisto on jo olemassa."
@@ -221,7 +222,7 @@ msgstr "Samanniminen hakemisto on jo olemassa."
msgid "A new login is required since the authentication session expired."
msgstr "Istunnon päättymisen jälkeen tarvitaan uusi kirjautuminen."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -327,11 +328,11 @@ msgstr "Rajoita DNS-palvelu aliverkkoihin joille tarjoamme DNS: ää."
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
msgid "Accept local"
-msgstr ""
+msgstr "Hyväksy paikallinen"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
msgid "Accept packets with local source addresses"
-msgstr ""
+msgstr "Hyväksy paketit, joiden lähdeosoite on paikallinen"
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
msgid "Access Concentrator"
@@ -401,11 +402,11 @@ msgstr "Mukautuva kuormantasaus (painotettu-alb, 6)"
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "Mukautuva lähetyskuormantasaus (balance-tlb, 5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -636,7 +637,7 @@ msgstr "Salli järjestelmän ominaisuuksien testaus"
msgid "Allow the <em>root</em> user to login with password"
msgstr "Salli <em> root </em> -käyttäjän kirjautua sisään salasanalla"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "Sallitut IP:t"
@@ -794,16 +795,16 @@ msgstr ""
msgid "Apply backup?"
msgstr "Käytetääntkö varmuuskopiota?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "Pyyntö epäonnistui, tila <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "Käytä valitsematonta"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "Otetaan käyttöön määritysmuutoksia... %ds"
@@ -862,6 +863,7 @@ msgid "Authoritative"
msgstr "Määräävä"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Valtuutus vaaditaan"
@@ -1081,8 +1083,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr "Lähetyskäytäntö (lähetys, 3)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Selaa…"
@@ -1112,8 +1114,8 @@ msgstr "Välimuistissa"
msgid "Call failed"
msgstr "Kutsu epäonnistui"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1187,11 +1189,11 @@ msgstr ""
msgid "Chain"
msgstr "Ketju"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Muutokset"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "Muutokset on palautettu."
@@ -1294,7 +1296,7 @@ msgstr "Asiakas"
msgid "Client ID to send when requesting DHCP"
msgstr "Asiakastunnus, joka lähetetään DHCP: tä pyydettäessä"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1363,16 +1365,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "Laske lähtevä tarkistussumma (valinnainen)."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Kokoonpano"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "Määritysmuutokset ovat käytössä."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "Määritysmuutokset on peruttu!"
@@ -1472,7 +1474,7 @@ msgstr "Sisältö on tallennettu."
msgid "Continue"
msgstr "Jatka"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1715,11 +1717,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1731,7 +1733,7 @@ msgstr "Poista"
msgid "Delete key"
msgstr "Poista avain"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "Poistopyyntö epäonnistui: %s"
@@ -1745,11 +1747,11 @@ msgstr "Delivery Traffic Indication Message aikaväli"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Kuvaus"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Poista valinta"
@@ -1822,7 +1824,7 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Laitetta ei tavoiteta!"
@@ -1843,7 +1845,7 @@ msgstr "Diagnostiikka"
msgid "Dial number"
msgstr "Soita numeroon"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Hakemisto"
@@ -1917,10 +1919,14 @@ msgstr "Irrotusyritys epäonnistui"
msgid "Disconnection attempt failed."
msgstr "Yhteyden katkaiseminen epäonnistui."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1948,7 +1954,7 @@ msgid ""
msgstr ""
"Dnsmasq on yhdistetty <abbr title=\"Dynamic Host Configuration Protocol"
"\">DHCP</abbr>-palvelin ja <abbr title=\"Domain Name System\">DNS</abbr>-"
-"välittäjä <abbr title=\"Network Address Translation\">NAT</abbr>-palomuurille"
+"välittäjä"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413
msgid "Do not cache negative replies, e.g. for non-existent domains."
@@ -2008,7 +2014,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "Haluatko todella poistaa '%s'?"
@@ -2020,7 +2026,7 @@ msgstr "Haluatko todella poistaa seuraavan SSH-avaimen?"
msgid "Do you really want to erase all settings?"
msgstr "Haluatko todella poistaa kaikki asetukset?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Haluatko todella poistaa hakemiston '%s' alihakemistoineen?"
@@ -2062,7 +2068,7 @@ msgstr "Lataa mtd-osio"
msgid "Downstream SNR offset"
msgstr "Alavirran SNR-siirtymä"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "Vedä järjestääksesi uudelleen"
@@ -2113,9 +2119,9 @@ msgstr "EA-bittien pituus"
msgid "EAP-Method"
msgstr "EAP-menetelmä"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2162,6 +2168,10 @@ msgstr "Hätä"
msgid "Enable"
msgstr "Ota käyttöön"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2366,11 +2376,11 @@ msgstr "Kapselointitila"
msgid "Encryption"
msgstr "Salaus"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr "Päätepisteen palvelin"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr "Päätepisteen portti"
@@ -2471,7 +2481,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2551,7 +2561,7 @@ msgstr "FT-protokolla"
msgid "Failed to change the system password."
msgstr "Systeemin salasanan vaihto epäonnistui."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
"Tehtyjen muutosten onnistuminen ei varmistunut %d sekunnissa, joten "
@@ -2561,7 +2571,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Komento \"/etc/init.d/%s %s\" epäonnistui: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Tiedosto"
@@ -2574,7 +2584,7 @@ msgstr ""
"\"server=1.2.3.4\" toimialuekohtaisissa tai muissa <abbr title=\"Domain Name "
"System\">DNS</abbr> palvelimessa."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "Tiedostoa ei voida lukea"
@@ -2590,7 +2600,7 @@ msgstr ""
"paikallinen <abbr title = \"Verkkotunnusten nimijärjestelmä\">DNS</abbr>-"
"tiedosto"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "Tiedoston nimi"
@@ -2699,7 +2709,7 @@ msgstr "Flash toiminnot"
msgid "Flashing…"
msgstr "Kirjoitetaan laiteohjelmistoa…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2722,11 +2732,11 @@ msgstr "Pakota DHCP tähän verkkoon, vaikka toinen palvelin olisi havaittu."
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
msgid "Force IGMP version"
-msgstr ""
+msgstr "Pakota IGMP-versio"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:689
msgid "Force MLD version"
-msgstr ""
+msgstr "Pakota MLD-versio"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1232
msgid "Force TKIP"
@@ -2795,7 +2805,7 @@ msgstr "Välitä mesh peer liikennettä"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:711
msgid "Forward multicast packets as unicast packets on this device."
-msgstr ""
+msgstr "Välitä multicast-paketit unicast-paketteina tällä laitteella."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1554
msgid "Forwarding mode"
@@ -2873,7 +2883,7 @@ msgstr "Yleiset asetukset"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:336
msgid "General device options"
-msgstr ""
+msgstr "Yleiset laiteasetukset"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
msgid "Generate Config"
@@ -2883,9 +2893,9 @@ msgstr "Luo määritys"
msgid "Generate Key"
msgstr "Luo avain"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
-msgstr ""
+msgstr "Luo uusi QR-koodi"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1533
msgid "Generate PMK locally"
@@ -2895,9 +2905,9 @@ msgstr "Luo PMK paikallisesti"
msgid "Generate archive"
msgstr "Luo arkisto"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
-msgstr ""
+msgstr "Luo uusi QR-koodi"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
msgid "Given password confirmation did not match, password not changed!"
@@ -2911,21 +2921,20 @@ msgstr "Yleiset asetukset"
msgid "Global network options"
msgstr "Yleiset verkkoasetukset"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
-msgstr ""
+msgstr "Siirry laiteohjelmiston päivitykseen..."
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Siirry salasanan määritykseen ..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3081,9 +3090,9 @@ msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr ""
"Piilota <abbr title = \"Extended Service Set Identifier\"> ESSID </abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
-msgstr ""
+msgstr "Piilota QR-koodi"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332
@@ -3107,7 +3116,7 @@ msgstr "Palvelimen vanhenemisaika"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507
msgid "Host requests this filename from the boot server."
-msgstr ""
+msgstr "Isäntä pyytää tätä tiedostonimeä käynnistyspalvelimelta."
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
msgid "Host-Uniq tag content"
@@ -3139,11 +3148,11 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:19
msgid "How long (in milliseconds) the LED should be off"
-msgstr ""
+msgstr "Kuinka kauan (millisekunteina) LEDin tulee olla pois päältä"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:13
msgid "How long (in milliseconds) the LED should be on"
-msgstr ""
+msgstr "Kuinka kauan (millisekunteina) LEDin pitäisi palaa."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
msgid "Human-readable counters"
@@ -3227,15 +3236,15 @@ msgstr "IPv4-palomuuri"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:252
msgid "IPv4 Neighbours"
-msgstr ""
+msgstr "IPv4-naapurit"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251
msgid "IPv4 Routing"
-msgstr ""
+msgstr "IPv4-reititys"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120
msgid "IPv4 Rules"
-msgstr ""
+msgstr "IPv4-säännöt"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
msgid "IPv4 Upstream"
@@ -3266,7 +3275,7 @@ msgstr "IPv4-yhdyskäytävä"
msgid "IPv4 netmask"
msgstr "IPv4-verkkomaski"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr "IPv4-verkko osoite/verkkopeittemerkittynä"
@@ -3318,7 +3327,7 @@ msgstr "IPv6-palomuuri"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:669
msgid "IPv6 MTU"
-msgstr ""
+msgstr "IPv6 MTU"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:262
msgid "IPv6 Neighbours"
@@ -3326,15 +3335,15 @@ msgstr "IPv6-naapurit"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:635
msgid "IPv6 RA Settings"
-msgstr ""
+msgstr "IPv6 RA-asetukset"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:261
msgid "IPv6 Routing"
-msgstr ""
+msgstr "IPv6-reititys"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120
msgid "IPv6 Rules"
-msgstr ""
+msgstr "IPv6-säännöt"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634
msgid "IPv6 Settings"
@@ -3367,7 +3376,7 @@ msgstr "IPv6-varauksen pituus"
msgid "IPv6 gateway"
msgstr "IPv6-yhdyskäytävä"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr "IPv6-verkko osoite/verkkomaski merkittynä"
@@ -3438,7 +3447,7 @@ msgstr "IPv6-yli-IPv4 (6to4)"
msgid "Identity"
msgstr "Identiteetti"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3473,7 +3482,7 @@ msgid ""
"device node"
msgstr "Määritä laite osiotunnisteella kiinteän laitepolun sijasta"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3792,6 +3801,8 @@ msgid "Invalid hexadecimal value"
msgstr "Virheellinen heksadesimaaliarvo"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Virheellinen käyttäjätunnus tai salasana! Yritä uudelleen."
@@ -3811,7 +3822,7 @@ msgstr ""
"Näyttää siltä, että kirjoittaa kuvaa, joka ei sovi flash-muistiin, tarkista "
"kuvatiedosto!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3987,7 +3998,7 @@ msgstr ""
"protokollan mukaisia siirtonopeuksia toimiakseen. Niiden käyttö heikentää "
"tiedonsiirtotehoa huomattavasti eikä sitä suositella, jos vain mahdollista."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "Tietoja:"
@@ -4112,17 +4123,19 @@ msgstr "Kuormitus"
msgid "Load Average"
msgstr "Kuormituksen keskiarvo"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "Ladataan hakemiston sisältöä…"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "Ladataan näkymää…"
@@ -4231,6 +4244,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr "Looginen verkko, johon tunneli lisätään (sillataan) (valinnainen)."
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Kirjaudu sisään"
@@ -4589,7 +4603,7 @@ msgstr "Valvonta"
msgid "More Characters"
msgstr "Lisää merkkejä"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "Lisää…"
@@ -4695,8 +4709,8 @@ msgstr "NT-toimialue"
msgid "NTP server candidates"
msgstr "NTP-palvelin ehdokkaat"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4794,7 +4808,7 @@ msgstr "Uusi sovittimen nimi…"
msgid "Next »"
msgstr "Seuraava »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4824,7 +4838,6 @@ msgstr "Ei NAT-T:tä"
msgid "No RX signal"
msgstr "Ei RX-signaalia"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4855,7 +4868,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "Tässä hakemistossa ei ole merkintöjä"
@@ -4895,7 +4908,7 @@ msgstr "Ei enempää orjia saatavilla, sovitinta ei voi tallentaa"
msgid "No negative cache"
msgstr "Ei negatiivista välimuistia"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -5064,7 +5077,7 @@ msgstr "Reitti aina ylhäällä"
msgid "One of hostname or MAC address must be specified!"
msgstr "Palvelinnimi tai MAC-osoite on määritettävä!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "Jokin seuraavista: %s"
@@ -5130,20 +5143,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "Toimintataajuus"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr "Vaihtoehto \"%s\" sisältää virheellisen arvon."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr "Vaihtoehto %s ei saa olla tyhjä."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Vaihtoehto muuttui"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Vaihtoehto poistettu"
@@ -5175,7 +5188,7 @@ msgstr ""
"delegoivalta palvelimelta, muodosta liite (kuten ':: 1') IPv6-osoitteen "
"muodostamiseksi ('a:b:c:d::1 ') käyttöliittymälle."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
@@ -5183,11 +5196,11 @@ msgstr ""
"Valinnainen. Base64-koodattu esijaettu avain. Lisää ylimääräisen symmetrisen "
"avaimen salauksen tason kvanttiresistenssiä varten."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr "Valinnainen. Luo reitit sallituille IP-reitit tälle vertaiskoneelle."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "Valinnainen. Vertaiskoneen kuvaus."
@@ -5195,7 +5208,7 @@ msgstr "Valinnainen. Vertaiskoneen kuvaus."
msgid "Optional. Do not create host routes to peers."
msgstr "Valinnainen. Älä luo isäntäreittejä vertaiskoneisiin."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
@@ -5203,7 +5216,7 @@ msgstr ""
"Valinnainen. Vertaiskoneen isäntä. Nimet ratkaistaan ennen sovittimen "
"aktivoimista."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5214,11 +5227,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "Valinnainen. Tunnelisovittimen suurin siirtoyksikkö (MTU)."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "Valinnainen. Vertaiskoneen portti."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5363,7 +5376,7 @@ msgstr "Ohita sisäisissä reiteissä käytettävä taulukko"
msgid "Overview"
msgstr "Yleiskatsaus"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "Korvataanko aiemmin luotu tiedosto %s?"
@@ -5498,6 +5511,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Salasana"
@@ -5587,6 +5601,10 @@ msgstr "Vertaisosoite puuttuu"
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "Vertaiskoneet"
@@ -5614,7 +5632,7 @@ msgstr "Suorita nollaus"
msgid "Permission denied"
msgstr "Lupa evätty"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "Persistent Keep Alive"
@@ -5645,7 +5663,7 @@ msgstr "Paket."
msgid "Please enter your username and password."
msgstr "Anna käyttäjätunnus ja salasana."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "Valitse ladattava tiedosto."
@@ -5665,7 +5683,7 @@ msgstr ""
msgid "Port status:"
msgstr "Portin tila:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr "Mahdollinen kieltäytyminen:%s"
@@ -5693,7 +5711,7 @@ msgstr "Delegoitu etuliite"
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "Esijaettu avain"
@@ -5790,7 +5808,7 @@ msgstr "Tarjoa uusi verkko"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Pseudo-ad-hoc (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Julkinen avain"
@@ -5816,8 +5834,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr "QMI Cellular"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5904,9 +5922,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345
msgid "Read <code>/etc/ethers</code> to configure the DHCP server."
-msgstr ""
-"Lue <code>/etc/ethers</code> määrittääksesi <abbr title=\"Dynamic Host "
-"Configuration Protocol\">DHCP</abbr>-palvelin"
+msgstr "Lue <code>/etc/ethers</code> määrittääksesi DHCP-palvelin"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:559
msgid "Really switch protocol?"
@@ -6055,7 +6071,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr "Tarvitaan. Tämän liittymän Base64-koodattu yksityinen avain."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr "Tarvitaan. Vertaiskoneen base64-koodattu julkinen avain."
@@ -6185,8 +6201,8 @@ msgstr ""
"Lokalisoi nimi pyynnön esittäneen aliverkon mukaan, jos käytettävissä on "
"useita IP-osoitteita"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Paljasta/piilota salasana"
@@ -6194,19 +6210,19 @@ msgstr "Paljasta/piilota salasana"
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Palauta"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "Palauta muutokset"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr "Palautuspyyntö epäonnistui, tila <code>%h</code>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "Palautetaan määritystä…"
@@ -6229,7 +6245,7 @@ msgstr "Juuren valmistelu"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr "Round-Robin -käytäntö (painotettu-rr, 0)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "Reititä sallitut IPt"
@@ -6336,7 +6352,7 @@ msgstr "SSTP Palvelin"
msgid "SWAP"
msgstr "Välimuisti"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6347,7 +6363,7 @@ msgid "Save"
msgstr "Tallenna"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Tallenna ja käytä"
@@ -6373,11 +6389,11 @@ msgstr "Etsi"
msgid "Scheduled Tasks"
msgstr "Ajoitetut tehtävät"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Osa lisätty"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Osa poistettu"
@@ -6395,9 +6411,9 @@ msgstr ""
"tarkistus epäonnistuu. Käytätätä vain, jos olet varma, että laiteohjelmisto "
"on oikea ja tarkoitettu laitteellesi!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "Valitse tiedosto…"
@@ -6581,7 +6597,7 @@ msgstr "Signaalin virkistysnopeus"
msgid "Signal:"
msgstr "Signaali:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Koko"
@@ -6968,7 +6984,7 @@ msgstr "Aloitusprioriteetti"
msgid "Start refresh"
msgstr "Aloita päivitys"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "Aloitetaan määrityksen käyttöönotto…"
@@ -7039,6 +7055,10 @@ msgstr "Lopeta WPS"
msgid "Stop refresh"
msgstr "Lopeta päivitys"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -7102,7 +7122,7 @@ msgstr "Kytkinprokokolla"
msgid "Switch to CIDR list notation"
msgstr "Vaihda CIDR-luettelomerkintään"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "Symbolinen linkki"
@@ -7139,7 +7159,6 @@ msgstr "Järjestelmän ominaisuudet"
msgid "System log buffer size"
msgstr "Järjestelmälokin puskurin koko"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7147,7 +7166,7 @@ msgstr ""
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86
msgid "Sytem running in recovery (initramfs) mode."
-msgstr ""
+msgstr "Järjestelmä toimii palautustilassa (initramfs)."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:338
msgid "TCP:"
@@ -7168,7 +7187,7 @@ msgstr "TX-nopeus"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:618
msgid "TX queue length"
-msgstr ""
+msgstr "TX-jonon pituus"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166
@@ -7193,13 +7212,17 @@ msgstr ""
msgid "Target network"
msgstr "Kohdeverkko"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Lopeta"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
-msgstr ""
+msgstr "Tämän wg-liittymän julkinen avain (\"PublicKey\")"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
msgid ""
@@ -7316,7 +7339,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7346,7 +7369,7 @@ msgstr ""
"Oikea SSID täytyy määritellä käsin, kun liitytään piilotettuun langattomaan "
"verkkoon"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7448,7 +7471,7 @@ msgstr "IPv4-etuliitteen pituus bitteissä, loput käytetään IPv6-osoitteissa.
msgid "The length of the IPv6 prefix in bits"
msgstr "IPv6-etuliitteen pituus bitteissä"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7475,6 +7498,10 @@ msgstr "Paikallinen IPv4-verkkomaski"
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr "Paikallinen IPv6-osoite, jonka yli tunneli luodaan (valinnainen)."
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7620,11 +7647,11 @@ msgstr ""
msgid "There are no active leases"
msgstr "Aktiivisia lainoja ei ole"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "Ei muutoksia käyttöönotettavaksi"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7723,8 +7750,8 @@ msgid ""
msgstr ""
"Tätä vaihtoehtoa ei voi käyttää, koska ca-bundle -pakettia ei ole asennettu."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7995,7 +8022,7 @@ msgstr "Irroita"
msgid "Unnamed key"
msgstr "Nimeämätön avain"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Tallentamattomia muutoksia"
@@ -8025,7 +8052,7 @@ msgstr "Ylhäällä"
msgid "Up Delay"
msgstr "Viivästys"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Lähetä"
@@ -8042,21 +8069,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Lähetä arkisto..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "Lähetä tiedosto"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "Lähetä tiedosto…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "Lähetyspyyntö epäonnistui:% s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "Lähetetään tiedostoa …"
@@ -8260,6 +8287,7 @@ msgstr "Käyttäjäavain (PEM-koodattu)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Käyttäjätunnus"
@@ -8567,7 +8595,7 @@ msgstr "Kirjoita järjestelmäloki tiedostoon"
msgid "XOR policy (balance-xor, 2)"
msgstr "XOR-käytäntö (tasapaino-xor, 2)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8596,7 +8624,7 @@ msgstr ""
"<strong> Varoitus: Jos poistat käytöstä välttämättömät aloituskomentosarjat, "
"kuten \"verkko\", saatat kadottaa pääsyn laitteeseesi! </strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8761,7 +8789,7 @@ msgstr "kaksisuuntainen"
msgid "half-duplex"
msgstr "yksisuuntainen"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "heksadesimaalinen koodattu arvo"
@@ -8786,11 +8814,11 @@ msgstr "ohita"
msgid "input"
msgstr "tulo"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "8 - 63 merkkiä pitkä avain"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "5 tai 13 merkkiä pitkä avain"
@@ -8823,12 +8851,12 @@ msgstr "ei"
msgid "no link"
msgstr "ei linkkiä"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "ei-tyhjä arvo"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "ei mitään"
@@ -8862,11 +8890,11 @@ msgstr ""
msgid "output"
msgstr "lähtö"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "positiivinen desimaaliarvo"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "positiivinen kokonaisluku"
@@ -8917,7 +8945,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "ainutlaatuinen arvo"
@@ -8935,7 +8963,7 @@ msgstr "tuntematon"
msgid "unlimited"
msgstr "rajoittamaton"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8956,175 +8984,175 @@ msgstr "määrittelemätön tai luo:"
msgid "untagged"
msgstr "merkitön"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "kelvollinen IP-osoite"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "kelvollinen IP-osoite tai etuliite"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "kelvollinen IPv4 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "kelvollinen IPv4-osoite"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "kelvollinen IPv4-osoite tai verkko"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "kelvollinen IPv4-osoite:portti"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "kelvollinen IPv4-verkko"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "kelvollinen IPv4 tai IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "kelvollinen IPv4-etuliitearvo (0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "kelvollinen IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "kelvollinen IPv6-osoite"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "kelvollinen IPv6-osoite tai etuliite"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "kelvollinen IPv6-isäntätunnus"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "kelvollinen IPv6-verkko"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "kelvollinen IPv6-etuliite (0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "kelvollinen MAC-osoite"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "kelvollinen UCI-tunniste"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "kelvollinen UCI-tunniste, isäntänimi tai IP-osoite"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "kelvollinen osoite:portti"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "kelvollinen päivämäärä (VVVV-KK-PP)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "kelvollinen desimaaliarvo"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "kelvollinen heksadesimaalinen WEP-avain"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "kelvollinen heksadesimaali-WPA-avain"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "kelvollinen palvelin:portti"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "kelvollinen palvelinnimi"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "kelvollinen palvelinnimi tai IP-osoite"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "kelvollinen kokonaisluku"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "kelvollinen verkko osoite / verkkomaskin merkintä"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "kelvollinen puhelinnumero (0-9, \"*\", \"#\", \"!\" tai \".\")"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "kelvollinen portti tai porttialue (portti1-portti2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "kelvollinen portin arvo"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "kelvollinen aika (HH:MM:SS)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "arvo välillä %d - %d merkkiä"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "arvo välillä %f ja %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "suurempi tai yhtä suuri kuin %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "pienempi tai yhtä suuri kuin %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "arvo, jossa on %d merkkiä"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "arvo, jossa on vähintään %d merkkiä"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "arvo, jossa on enintään %d merkkiä"
diff --git a/modules/luci-base/po/fr/base.po b/modules/luci-base/po/fr/base.po
index 99820f6cb5..84b820e5cc 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: 2021-10-18 08:06+0000\n"
-"Last-Translator: ButterflyOfFire <ButterflyOfFire@protonmail.com>\n"
+"PO-Revision-Date: 2021-11-25 01:53+0000\n"
+"Last-Translator: Felix Braun <f.bhelicopter@gmail.com>\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.9-dev\n"
+"X-Generator: Weblate 4.10-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
msgid "%.1f dB"
@@ -22,7 +22,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d champs invalides"
@@ -58,19 +58,19 @@ msgid "-- Additional Field --"
msgstr "-- Champ Supplémentaire --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Choisir --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- personnalisé --"
@@ -196,7 +196,7 @@ msgstr "Nom de la <abbr title=\"Diode Électro-Luminescente\">DEL</abbr>"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897
msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
-msgstr ""
+msgstr "Proxy <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:791
msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
@@ -222,7 +222,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr "Une configuration pour l'appareil \"%s\" existe déjà"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Un dossier avec le même nom existe déjà."
@@ -231,7 +231,7 @@ msgid "A new login is required since the authentication session expired."
msgstr ""
"Il est nécessaire de s'authentifier de nouveau car la session a expiré."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -344,11 +344,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
msgid "Accept local"
-msgstr ""
+msgstr "Accepter source locale"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
msgid "Accept packets with local source addresses"
-msgstr ""
+msgstr "Accepter des paquets entrants avec une adresse-source locale"
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
msgid "Access Concentrator"
@@ -415,11 +415,11 @@ msgstr "Équilibrage adaptatif de la charge (balance-alb, 6)"
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "Équilibrage adaptatif de la charge de transmission (balance-tlb, 5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -456,7 +456,7 @@ msgstr "Ajouter une configuration d’appareil"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1232
msgid "Add device configuration…"
-msgstr ""
+msgstr "Ajouter une configuration d’appareil…"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
msgid "Add instance"
@@ -470,8 +470,7 @@ msgstr "Ajouter une clé"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409
msgid "Add local domain suffix to names served from hosts files."
-msgstr ""
-"Ajouter le suffixe du domaine local aux noms résolus d'après le fichier hosts"
+msgstr "Ajouter un suffixe de domaine locale aux noms tirés du fichier hôtes."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:465
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1119
@@ -542,7 +541,7 @@ msgstr "Options avancées de l’appareil"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:513
msgid "Ageing time"
-msgstr ""
+msgstr "âge limite"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27
msgid "Aggregate Transmit Power (ACTATP)"
@@ -594,7 +593,7 @@ msgid ""
"address."
msgstr ""
"Allouer les adresses IP de manière séquentielle en commençant par les plus "
-"petites"
+"petites."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377
msgid "Allocate IPs sequentially"
@@ -655,7 +654,7 @@ msgid "Allow the <em>root</em> user to login with password"
msgstr ""
"Autoriser l'utilisateur <em>root</em> à se connecter avec un mot de passe"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "IP autorisées"
@@ -686,7 +685,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
msgid "Amount of Duplicate Address Detection probes to send"
-msgstr ""
+msgstr "Nombre de demandes DAD à transmettre"
#: modules/luci-base/htdocs/luci-static/resources/form.js:603
msgid "An error occurred while saving the form:"
@@ -694,7 +693,7 @@ msgstr "Une erreur pendant enregistrement formulaire :"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
msgid "An optional, short description for this device"
-msgstr ""
+msgstr "Une courte description optionnelle pour cet appareil"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1464
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20
@@ -766,18 +765,24 @@ msgid ""
"Announce this device as default router if a local IPv6 default route is "
"present."
msgstr ""
+"Annoncer cet appareil comme routeur par défaut si une route IPv6 locale est "
+"présente."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:779
msgid ""
"Announce this device as default router if a public IPv6 prefix is available, "
"regardless of local default route availability."
msgstr ""
+"Annoncer cet appareil comme routeur par défaut si un préfixe IPv6 public est "
+"disponible, sans égard à une disponibilité d’une route locale par défaut."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:781
msgid ""
"Announce this device as default router regardless of whether a prefix or "
"default route is present."
msgstr ""
+"Annoncer cet appareil comme routeur par défaut indépendamment d’un préfixe "
+"ou d’une route par défaut éventuellement présents."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
msgid "Announced DNS domains"
@@ -808,22 +813,22 @@ msgstr "N'importe quelle zone"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
msgid "Apply DHCP Options to this net. (Empty = all clients)."
-msgstr ""
+msgstr "Appliquer les options DHCP à ce réseau. (Vide = tous les clients)."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
msgid "Apply backup?"
msgstr "Appliquer la sauvegarde ?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "La demande a échoué avec le statut <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "Appliquer sans vérification"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "Application des changements de configuration en cours... %ds"
@@ -833,7 +838,7 @@ msgstr "Architecture"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:155
msgid "Arp-scan"
-msgstr ""
+msgstr "Balayage ARP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
msgid ""
@@ -884,6 +889,7 @@ msgid "Authoritative"
msgstr "Autoritaire"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Autorisation requise"
@@ -998,7 +1004,7 @@ msgstr "Bande"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:377
msgid "Base device"
-msgstr ""
+msgstr "Appareil de base"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:974
msgid "Beacon Interval"
@@ -1018,8 +1024,8 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326
msgid "Bind dynamically to interfaces rather than wildcard address."
msgstr ""
-"Lier dynamiquement les interfaces plutôt que l'adresse joker (recommandé "
-"comme défaut pour linux)"
+"Lier dynamiquement aux interfaces au lieu d’utiliser la méta-adresse "
+"(standard recommandé pour les systèmes Linux)."
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
@@ -1030,7 +1036,7 @@ msgstr ""
#: 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 "Interface de liaison"
+msgstr "Lier à l’interface"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
@@ -1062,25 +1068,26 @@ msgstr "Passerelle"
msgctxt "MACVLAN mode"
msgid "Bridge (Support direct communication between MAC VLANs)"
msgstr ""
+"Passerelle (rend possible la communication directe entre interfaces MAC-VLAN)"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:339
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:481
msgid "Bridge VLAN filtering"
-msgstr ""
+msgstr "Filtre de passerelle-VLAN"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:344
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1387
msgid "Bridge device"
-msgstr ""
+msgstr "Passerelle"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:480
msgid "Bridge port specific options"
-msgstr ""
+msgstr "Options spécifiques au port"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
msgid "Bridge ports"
-msgstr ""
+msgstr "Ports de la passerelle"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1552
msgid "Bridge unit number"
@@ -1088,22 +1095,22 @@ msgstr "Numéro d'unité du pont"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
msgid "Bring up empty bridge"
-msgstr ""
+msgstr "Configurer un pont vide"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:575
msgid "Bring up on boot"
-msgstr "L'activer au démarrage"
+msgstr "Activer au démarrage"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
msgid "Bring up the bridge interface even if no ports are attached"
-msgstr ""
+msgstr "Activer le pont même si des ports liés font défaut"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
msgid "Broadcast policy (broadcast, 3)"
msgstr "Politique de diffusion (diffusion, 3)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Parcourir…"
@@ -1135,8 +1142,8 @@ msgstr "Mise en cache"
msgid "Call failed"
msgstr "L'appel a échoué"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1212,11 +1219,11 @@ msgstr ""
msgid "Chain"
msgstr "Chaîne"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Changements"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "Les modifications ont été annulées."
@@ -1322,7 +1329,7 @@ msgstr "Client"
msgid "Client ID to send when requesting DHCP"
msgstr "Identifiant client à envoyer dans les requêtes DHCP"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1391,16 +1398,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "Calculer la somme de contrôle sortante (facultatif)."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Configuration"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "Les changements de configuration sont appliqués."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "Les changements de configuration ont été annulés !"
@@ -1502,7 +1509,7 @@ msgstr "Le contenu a été enregistré."
msgid "Continue"
msgstr "Continuer"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1711,7 +1718,7 @@ msgstr "%d par défaut"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:774
msgid "Default router"
-msgstr ""
+msgstr "Routeur par défaut"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:12
msgid "Default state"
@@ -1743,11 +1750,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1759,7 +1766,7 @@ msgstr "Effacer"
msgid "Delete key"
msgstr "Touche de suppression"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "Échec de la demande de suppression : %s"
@@ -1773,11 +1780,11 @@ msgstr "Intervalle entre les messages d'indication du trafic de livraison"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Description"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Désélectionner"
@@ -1787,7 +1794,7 @@ msgstr "Apparence"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:715
msgid "Designated master"
-msgstr ""
+msgstr "Maître désigné"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
@@ -1850,7 +1857,7 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Appareil inaccessible !"
@@ -1871,7 +1878,7 @@ msgstr "Diagnostiques"
msgid "Dial number"
msgstr "Composer le numéro"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Répertoire"
@@ -1945,10 +1952,14 @@ msgstr "La tentative de déconnexion a échoué"
msgid "Disconnection attempt failed."
msgstr "La tentative de déconnexion a échoué."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -2016,7 +2027,7 @@ msgstr "Empêcher l'écoute sur ces interfaces."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:870
msgid "Do not offer DHCPv6 service on this interface."
-msgstr ""
+msgstr "Ne pas offrir de service DHCPv6 sur cet interface."
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:158
msgctxt "VLAN port state"
@@ -2028,6 +2039,8 @@ msgid ""
"Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
"packets."
msgstr ""
+"Ne pas acheminer des paquets <abbr title=\"Neighbour Discovery Protocol"
+"\">NDP</abbr>."
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
msgid "Do not send a hostname"
@@ -2039,7 +2052,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "Voulez-vous vraiment supprimer « %s » ?"
@@ -2051,7 +2064,7 @@ msgstr "Voulez-vous vraiment supprimer cette clé SSH ?"
msgid "Do you really want to erase all settings?"
msgstr "Voulez-vous vraiment effacer tous les paramètres ?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Voulez-vous vraiment supprimer récursivement le répertoire « %s » ?"
@@ -2093,7 +2106,7 @@ msgstr "Télécharger mtdblock"
msgid "Downstream SNR offset"
msgstr "Décalage du Rapport signal - bruit descendant"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "Faites glisser pour réorganiser"
@@ -2143,9 +2156,9 @@ msgstr "Longueur des bits de l'EA"
msgid "EAP-Method"
msgstr "Méthode EAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2192,6 +2205,10 @@ msgstr "Urgence"
msgid "Enable"
msgstr "Activer"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2398,11 +2415,11 @@ msgstr "Mode encapsulé"
msgid "Encryption"
msgstr "Chiffrement"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr "Hôte du point terminal"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr "Port du point terminal"
@@ -2505,7 +2522,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2585,7 +2602,7 @@ msgstr "Protocole FT"
msgid "Failed to change the system password."
msgstr "Impossible de modifier le mot de passe du système."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
"La demande n'a pas été confirmée dans les délais impartis (%ds), en attente "
@@ -2595,7 +2612,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Impossible d'exécuter l'action \"/etc/init.d/%s %s\" action : %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Fichier"
@@ -2608,7 +2625,7 @@ msgstr ""
"'server=1.2.3.4' pour les serveurs <abbr title=\"Domain Name System\">DNS</"
"abbr> spécifiques au domaine ou entièrement en amont."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "Fichier non accessible"
@@ -2622,7 +2639,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr "fichier local <abbr title = \"Domain Name System\"> DNS </abbr>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "Nom de fichier"
@@ -2735,7 +2752,7 @@ msgstr "Opérations d'écriture"
msgid "Flashing…"
msgstr "Écriture en cours…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2919,7 +2936,7 @@ msgstr "Générer la configuration"
msgid "Generate Key"
msgstr "Générer une clé"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2931,7 +2948,7 @@ msgstr "Générer PMK localement"
msgid "Generate archive"
msgstr "Construire l'archive"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2949,21 +2966,20 @@ msgstr "Paramètres généraux"
msgid "Global network options"
msgstr "Options globales de réseau"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Aller à la configuration du mot de passe…"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3118,7 +3134,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "Cacher le <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3303,7 +3319,7 @@ msgstr "Passerelle IPv4"
msgid "IPv4 netmask"
msgstr "Masque-réseau IPv4"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr "Réseau IPv4 au format adresse/masque réseau"
@@ -3404,7 +3420,7 @@ msgstr "Longueur d'attribution IPv6"
msgid "IPv6 gateway"
msgstr "Passerelle IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr "Réseau IPv6 au format adresse/masque réseau"
@@ -3476,7 +3492,7 @@ msgstr "IPv6 sur IPv4 (6 vers 4)"
msgid "Identity"
msgstr "Identité"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3515,7 +3531,7 @@ msgstr ""
"Monte le périphérique identifié par cette étiquette au lieu d'un nom de "
"périphérique fixe"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3835,6 +3851,8 @@ msgid "Invalid hexadecimal value"
msgstr "Valeur hexadécimale invalide"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Nom d'utilisateur et/ou mot de passe invalides ! Réessayez."
@@ -3854,7 +3872,7 @@ msgstr ""
"L'image que vous essayez de flasher est vraisemblablement trop grosse pour "
"tenir dans la mémoire flash, merci de vérifier le fichier !"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -4027,7 +4045,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "Légende :"
@@ -4152,17 +4170,19 @@ msgstr "Charge"
msgid "Load Average"
msgstr "Charge moyenne"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "Chargement du contenu des répertoires…"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "Chargement de la vue…"
@@ -4269,6 +4289,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Connexion"
@@ -4391,7 +4412,7 @@ msgstr "Manuel"
#: modules/luci-base/htdocs/luci-static/resources/network.js:3872
msgid "Master"
-msgstr "Master"
+msgstr "Maître"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
@@ -4627,7 +4648,7 @@ msgstr "Monitor"
msgid "More Characters"
msgstr "Plus de caractères"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "Plus…"
@@ -4733,8 +4754,8 @@ msgstr "Domaine NT"
msgid "NTP server candidates"
msgstr "Serveurs NTP candidats"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4833,7 +4854,7 @@ msgstr "Nom de la nouvelle interface …"
msgid "Next »"
msgstr "Prochain »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4863,7 +4884,6 @@ msgstr "Pas de NAT-T"
msgid "No RX signal"
msgstr "Pas de signal RX"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4894,7 +4914,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "Aucune entrée dans ce répertoire"
@@ -4934,7 +4954,7 @@ msgstr "Plus d'esclaves disponibles, ne peut pas sauver l'interface"
msgid "No negative cache"
msgstr "Pas de cache négatif"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -5101,7 +5121,7 @@ msgstr "Route On-Link"
msgid "One of hostname or MAC address must be specified!"
msgstr "Il faut indiquer un nom d'hôte ou une adresse MAC !"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "L’un des éléments suivants : %s"
@@ -5167,20 +5187,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "Fréquence de fonctionnement"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr "Option \"%s\" contient une valeur erronée."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr "Option \"%s\" doit être vide."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Option modifiée"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Option retirée"
@@ -5212,7 +5232,7 @@ msgstr ""
"d'un serveur délégant, utiliser le suffixe (comme '::1') pour former "
"l'adresse IPv6 ('a:b:c:d::1') de l'interface."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
@@ -5221,11 +5241,11 @@ msgstr ""
"supplémentaire de cryptographie à clé symétrique pour la résistance post-"
"quantique."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr "Facultatif. Créer des itinéraires pour les IP autorisés pour ce pair."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "Facultatif. Description du pair."
@@ -5233,7 +5253,7 @@ msgstr "Facultatif. Description du pair."
msgid "Optional. Do not create host routes to peers."
msgstr "Optionnel. Ne créez pas de routes hôtes vers des homologues."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
@@ -5241,7 +5261,7 @@ msgstr ""
"Facultatif. Hôte du pair. Les noms sont résolus avant de mettre en place "
"l'interface."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5252,11 +5272,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "Facultatif. Unité de transmission maximale de l'interface du tunnel."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "Facultatif. Port de pair."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5402,7 +5422,7 @@ msgstr "Modifier la table utilisée pour les routes internes"
msgid "Overview"
msgstr "Aperçu"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "Remplacer le fichier existant \"%s\" ?"
@@ -5537,6 +5557,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Mot de passe"
@@ -5626,6 +5647,10 @@ msgstr "L'adresse du pair est manquante"
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "Pairs"
@@ -5653,7 +5678,7 @@ msgstr "Réinitialiser"
msgid "Permission denied"
msgstr "Permission refusée"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "Maintien persistant"
@@ -5684,7 +5709,7 @@ msgstr "Pqts."
msgid "Please enter your username and password."
msgstr "Saisissez votre nom d'utilisateur et mot de passe."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "Veuillez sélectionner le fichier à téléverser."
@@ -5704,7 +5729,7 @@ msgstr ""
msgid "Port status:"
msgstr "Statut du port :"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr "Négation potentielle de : %s"
@@ -5732,7 +5757,7 @@ msgstr "Préfixe Délégué"
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "Clé pré-partagée"
@@ -5827,7 +5852,7 @@ msgstr "Donner un nouveau réseau"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Pseudo Ad-Hoc (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Clé publique"
@@ -5854,8 +5879,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr "QMI Cellulaire"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -6090,7 +6115,7 @@ msgstr "Nécessaire avec certains FAIs, par ex. : Charter avec DOCSIS 3"
msgid "Required. Base64-encoded private key for this interface."
msgstr "Obligatoire. Clé privée encodée en Base64 pour cette interface."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr "Obligatoire. Clé publique du pair encodée en Base64."
@@ -6220,8 +6245,8 @@ msgstr ""
"Trouve le nom d'hôte suivant le sous-réseau d'où vient la requête si "
"plusieurs adresses IPs sont possibles"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Montrer/cacher le mot de passe"
@@ -6229,19 +6254,19 @@ msgstr "Montrer/cacher le mot de passe"
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Annuler les modifications"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "Annuler les modifications"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr "La demande d'annulation a échoué, statut <code>%h</code>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "Annulation de la configuration…"
@@ -6264,7 +6289,7 @@ msgstr "Préparation root"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr "Politique Round-Robin (balance-rr, 0)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "Route IP autorisées"
@@ -6372,7 +6397,7 @@ msgstr "Serveur SSTP"
msgid "SWAP"
msgstr "SWAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6383,7 +6408,7 @@ msgid "Save"
msgstr "Enregistrer"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Enregistrer et Appliquer"
@@ -6409,11 +6434,11 @@ msgstr "Scan"
msgid "Scheduled Tasks"
msgstr "Tâches Régulières"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Section ajoutée"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Section retirée"
@@ -6431,9 +6456,9 @@ msgstr ""
"vérification du format de l'image échoue. N'utilisez que si vous êtes sûr "
"que le microprogramme est correct et destiné à votre appareil !"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "Sélectionner un fichier…"
@@ -6556,7 +6581,7 @@ msgstr "Échec de la définition du mode de fonctionnement"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:11
msgid "Settings"
-msgstr ""
+msgstr "Paramètres"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906
msgid "Setup routes for proxied IPv6 neighbours."
@@ -6622,7 +6647,7 @@ msgstr ""
msgid "Signal:"
msgstr "Signal :"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Taille"
@@ -7006,7 +7031,7 @@ msgstr "Priorité de démarrage"
msgid "Start refresh"
msgstr "Lancer l'actualisation"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "La configuration de départ s'applique…"
@@ -7079,6 +7104,10 @@ msgstr ""
msgid "Stop refresh"
msgstr "Arrêter le rafraîchissement"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -7144,7 +7173,7 @@ msgstr "Changer de protocole"
msgid "Switch to CIDR list notation"
msgstr "Passer à la notation de liste CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "Lien symbolique"
@@ -7181,7 +7210,6 @@ msgstr "Propriétés système"
msgid "System log buffer size"
msgstr "Taille du tampon du journal système"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7235,11 +7263,15 @@ msgstr ""
msgid "Target network"
msgstr "Réseau cible"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Éteindre"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7362,7 +7394,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7392,7 +7424,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7499,7 +7531,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr "La longueur du préfixe IPv6 en bits"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7526,6 +7558,10 @@ msgstr "Le masque de réseau IPv4 local"
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr "Adresse IPv6 locale sur laquelle le tunnel est créé (facultatif)."
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7674,11 +7710,11 @@ msgstr ""
msgid "There are no active leases"
msgstr "Aucun bail actif"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "Il n'y a aucun changement à appliquer"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7783,8 +7819,8 @@ msgstr ""
"Cette option ne peut pas être utilisée car le package ca-bundle n'est pas "
"installé."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -8056,7 +8092,7 @@ msgstr "Démonter"
msgid "Unnamed key"
msgstr "Clé sans nom"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Changements non appliqués"
@@ -8086,7 +8122,7 @@ msgstr "Haut"
msgid "Up Delay"
msgstr "Délai d'attente"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Téléverser"
@@ -8103,21 +8139,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Envoi de l'archive…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "Téléverser un fichier"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "Téléverser un fichier…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "Échec de la demande de téléchargement: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "Téléchargement du fichier…"
@@ -8323,6 +8359,7 @@ msgstr "Clé utilisateur (codée PEM)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Nom d'utilisateur"
@@ -8625,7 +8662,7 @@ msgstr "Écrire les log systèmes dans un fichier"
msgid "XOR policy (balance-xor, 2)"
msgstr "Stratégie XOR (balance-xor, 2)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8654,7 +8691,7 @@ msgstr ""
"><strong>Attention : Si vous désactivez des scripts essentiels comme \"réseau"
"\", votre équipement pourrait ne plus être accessible !</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8823,7 +8860,7 @@ msgstr "full-duplex"
msgid "half-duplex"
msgstr "half-duplex"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "valeur codée hexadécimale"
@@ -8848,11 +8885,11 @@ msgstr "ignorer"
msgid "input"
msgstr "entrée"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "clé avec entre 8 et 63 caractères"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "clé avec 5 ou 13 caractères"
@@ -8885,12 +8922,12 @@ msgstr "non"
msgid "no link"
msgstr "pas de lien"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "valeur non vide"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "aucun"
@@ -8924,11 +8961,11 @@ msgstr ""
msgid "output"
msgstr "sortie"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "valeur décimale positive"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "valeur entière positive"
@@ -8979,7 +9016,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "valeur unique"
@@ -8997,7 +9034,7 @@ msgstr "inconnu"
msgid "unlimited"
msgstr "non limité"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -9018,175 +9055,175 @@ msgstr "non précisé -ou- créer :"
msgid "untagged"
msgstr "non marqué"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "adresse IP valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "adresse IP ou préfixe valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "CIDR IPv4 valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "adresse IPv4 valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "adresse IPv4 ou réseau valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "adresse:port IPv4 valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "réseau IPv4 valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "CIDR IPv4 ou IPv6 valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "valeur de préfixe IPv4 valide (0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "CIDR IPv6 valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "adresse IPv6 valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "adresse IPv6 ou préfixe valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "ID d'hôte IPv6 valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "réseau IPv6 valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "valeur de préfixe IPv6 valide (0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "adresse MAC valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "identifiant UCI valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "identifiant UCI, nom d'hôte ou adresse IP valides"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "adresse:port valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "date valide (AAAA-MM-JJ)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "valeur décimale valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "clé WEP hexadécimale valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "clé WPA hexadécimale valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "hôte:port valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "nom d'hôte valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "nom d'hôte ou adresse IP valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "valeur entière valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "réseau valide en notation adresse/masque de réseau"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "chiffre de téléphone valide (0-9, \"*\", \"#\", \"!\" ou \".\")"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "port ou plage de ports valide (port1-port2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "valeur de port valide"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "heure valide (HH:MM:SS)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "valeur entre %d et %d caractères"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "valeur entre %f et %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "valeur supérieure ou égale à %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "valeur inférieure ou égale à %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "valeur avec %d caractères"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "valeur avec au moins %d caractères"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "valeur avec au plus %d caractères"
diff --git a/modules/luci-base/po/he/base.po b/modules/luci-base/po/he/base.po
index 53771b7636..002cf3dbb8 100644
--- a/modules/luci-base/po/he/base.po
+++ b/modules/luci-base/po/he/base.po
@@ -20,7 +20,7 @@ msgstr "%.1f דציבל"
msgid "%d Bit"
msgstr "%d סיביות"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d שדות שגויים"
@@ -56,19 +56,19 @@ msgid "-- Additional Field --"
msgstr "-- שדה נוסף --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- נא לבחור --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- מותאם אישית --"
@@ -215,7 +215,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr ""
@@ -223,7 +223,7 @@ msgstr ""
msgid "A new login is required since the authentication session expired."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -402,11 +402,11 @@ msgstr ""
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -632,7 +632,7 @@ msgstr ""
msgid "Allow the <em>root</em> user to login with password"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "כתובות IP מורשות"
@@ -790,16 +790,16 @@ msgstr ""
msgid "Apply backup?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr ""
@@ -854,6 +854,7 @@ msgid "Authoritative"
msgstr "מוסמך"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "דרוש אימות"
@@ -1070,8 +1071,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr ""
@@ -1101,8 +1102,8 @@ msgstr ""
msgid "Call failed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1168,11 +1169,11 @@ msgstr ""
msgid "Chain"
msgstr "שרשרת"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "שינויים"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr ""
@@ -1265,7 +1266,7 @@ msgstr ""
msgid "Client ID to send when requesting DHCP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1327,16 +1328,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "הגדרות"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr ""
@@ -1434,7 +1435,7 @@ msgstr ""
msgid "Continue"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1668,11 +1669,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1684,7 +1685,7 @@ msgstr "למחוק"
msgid "Delete key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr ""
@@ -1698,11 +1699,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "תיאור"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr ""
@@ -1775,7 +1776,7 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr ""
@@ -1796,7 +1797,7 @@ msgstr "אבחון"
msgid "Dial number"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr ""
@@ -1868,10 +1869,14 @@ msgstr ""
msgid "Disconnection attempt failed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1950,7 +1955,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -1962,7 +1967,7 @@ msgstr ""
msgid "Do you really want to erase all settings?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr ""
@@ -2004,7 +2009,7 @@ msgstr ""
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr ""
@@ -2051,9 +2056,9 @@ msgstr ""
msgid "EAP-Method"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2098,6 +2103,10 @@ msgstr "מצב חרום"
msgid "Enable"
msgstr "אפשר"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2296,11 +2305,11 @@ msgstr ""
msgid "Encryption"
msgstr "הצפנה"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2401,7 +2410,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2479,7 +2488,7 @@ msgstr ""
msgid "Failed to change the system password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2487,7 +2496,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr ""
@@ -2497,7 +2506,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr ""
@@ -2509,7 +2518,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr ""
@@ -2616,7 +2625,7 @@ msgstr ""
msgid "Flashing…"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2798,7 +2807,7 @@ msgstr ""
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2810,7 +2819,7 @@ msgstr ""
msgid "Generate archive"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2826,21 +2835,20 @@ msgstr ""
msgid "Global network options"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -2993,7 +3001,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3178,7 +3186,7 @@ msgstr ""
msgid "IPv4 netmask"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3279,7 +3287,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3349,7 +3357,7 @@ msgstr ""
msgid "Identity"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3384,7 +3392,7 @@ msgid ""
"device node"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3690,6 +3698,8 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "שם משתמש ו/או סיסמה שגויים! אנא נסה שנית."
@@ -3707,7 +3717,7 @@ msgid ""
"flash memory, please verify the image file!"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3880,7 +3890,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr ""
@@ -3990,17 +4000,19 @@ msgstr "עומס"
msgid "Load Average"
msgstr "עומס ממוצע"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr ""
@@ -4106,6 +4118,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr ""
@@ -4456,7 +4469,7 @@ msgstr ""
msgid "More Characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr ""
@@ -4560,8 +4573,8 @@ msgstr ""
msgid "NTP server candidates"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4657,7 +4670,7 @@ msgstr ""
msgid "Next »"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4687,7 +4700,6 @@ msgstr ""
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4718,7 +4730,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr ""
@@ -4758,7 +4770,7 @@ msgstr ""
msgid "No negative cache"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4923,7 +4935,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr ""
@@ -4987,20 +4999,20 @@ msgstr ""
msgid "Operating frequency"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr ""
@@ -5026,17 +5038,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr ""
@@ -5044,13 +5056,13 @@ msgstr ""
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5061,11 +5073,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5206,7 +5218,7 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5341,6 +5353,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr ""
@@ -5430,6 +5443,10 @@ msgstr ""
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr ""
@@ -5457,7 +5474,7 @@ msgstr ""
msgid "Permission denied"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
@@ -5488,7 +5505,7 @@ msgstr ""
msgid "Please enter your username and password."
msgstr "אנא הזן את שם המשתמש והסיסמה שלך:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr ""
@@ -5508,7 +5525,7 @@ msgstr ""
msgid "Port status:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5536,7 +5553,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr ""
@@ -5627,7 +5644,7 @@ msgstr ""
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "מפתח ציבורי"
@@ -5648,8 +5665,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5880,7 +5897,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -6008,8 +6025,8 @@ msgid ""
"received if multiple IPs are available."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr ""
@@ -6017,19 +6034,19 @@ msgstr ""
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr ""
@@ -6052,7 +6069,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6157,7 +6174,7 @@ msgstr ""
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6168,7 +6185,7 @@ msgid "Save"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr ""
@@ -6194,11 +6211,11 @@ msgstr ""
msgid "Scheduled Tasks"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr ""
@@ -6213,9 +6230,9 @@ msgid ""
"your device!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr ""
@@ -6397,7 +6414,7 @@ msgstr ""
msgid "Signal:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr ""
@@ -6735,7 +6752,7 @@ msgstr ""
msgid "Start refresh"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr ""
@@ -6807,6 +6824,10 @@ msgstr ""
msgid "Stop refresh"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -6869,7 +6890,7 @@ msgstr ""
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr ""
@@ -6906,7 +6927,6 @@ msgstr ""
msgid "System log buffer size"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -6960,11 +6980,15 @@ msgstr ""
msgid "Target network"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7079,7 +7103,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7105,7 +7129,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7193,7 +7217,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7220,6 +7244,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7346,11 +7374,11 @@ msgstr ""
msgid "There are no active leases"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7430,8 +7458,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7700,7 +7728,7 @@ msgstr ""
msgid "Unnamed key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr ""
@@ -7730,7 +7758,7 @@ msgstr ""
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr ""
@@ -7745,21 +7773,21 @@ msgstr ""
msgid "Upload archive..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr ""
@@ -7946,6 +7974,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "שם משתמש"
@@ -8237,7 +8266,7 @@ msgstr ""
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8260,7 +8289,7 @@ msgid ""
"scripts like \"network\", your device might become inaccessible!</strong>"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8423,7 +8452,7 @@ msgstr ""
msgid "half-duplex"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr ""
@@ -8448,11 +8477,11 @@ msgstr ""
msgid "input"
msgstr "קלט"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr ""
@@ -8485,12 +8514,12 @@ msgstr "לא"
msgid "no link"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "ללא"
@@ -8524,11 +8553,11 @@ msgstr ""
msgid "output"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr ""
@@ -8579,7 +8608,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr ""
@@ -8597,7 +8626,7 @@ msgstr ""
msgid "unlimited"
msgstr "ללא הגבלה"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8618,175 +8647,175 @@ msgstr "לא מוגדר -או- יצר"
msgid "untagged"
msgstr "לא מתויג"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr ""
diff --git a/modules/luci-base/po/hi/base.po b/modules/luci-base/po/hi/base.po
index 08c3542f92..7f09bf78d4 100644
--- a/modules/luci-base/po/hi/base.po
+++ b/modules/luci-base/po/hi/base.po
@@ -17,7 +17,7 @@ msgstr "%.1f डेसिबल"
msgid "%d Bit"
msgstr "%d बिट"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d अमान्य क्षेत्र"
@@ -53,19 +53,19 @@ msgid "-- Additional Field --"
msgstr "अतिरिक्त अनुभाग"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "कृपया चुने"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "--अमानक--"
@@ -212,7 +212,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "समान नाम वाली एक निर्देशिका पहले से मौजूद है।"
@@ -220,7 +220,7 @@ msgstr "समान नाम वाली एक निर्देशिक
msgid "A new login is required since the authentication session expired."
msgstr "प्रमाणीकरण सत्र समाप्त होने के बाद से एक नया लॉगिन आवश्यक है।"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -397,11 +397,11 @@ msgstr ""
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -623,7 +623,7 @@ msgstr ""
msgid "Allow the <em>root</em> user to login with password"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr ""
@@ -779,16 +779,16 @@ msgstr ""
msgid "Apply backup?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr ""
@@ -843,6 +843,7 @@ msgid "Authoritative"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr ""
@@ -1055,8 +1056,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr ""
@@ -1086,8 +1087,8 @@ msgstr ""
msgid "Call failed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1153,11 +1154,11 @@ msgstr ""
msgid "Chain"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr ""
@@ -1250,7 +1251,7 @@ msgstr ""
msgid "Client ID to send when requesting DHCP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1312,16 +1313,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr ""
@@ -1419,7 +1420,7 @@ msgstr ""
msgid "Continue"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1649,11 +1650,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1665,7 +1666,7 @@ msgstr ""
msgid "Delete key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr ""
@@ -1679,11 +1680,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr ""
@@ -1756,7 +1757,7 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr ""
@@ -1777,7 +1778,7 @@ msgstr ""
msgid "Dial number"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr ""
@@ -1849,10 +1850,14 @@ msgstr ""
msgid "Disconnection attempt failed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1931,7 +1936,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -1943,7 +1948,7 @@ msgstr ""
msgid "Do you really want to erase all settings?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr ""
@@ -1985,7 +1990,7 @@ msgstr ""
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr ""
@@ -2030,9 +2035,9 @@ msgstr ""
msgid "EAP-Method"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2077,6 +2082,10 @@ msgstr ""
msgid "Enable"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2275,11 +2284,11 @@ msgstr ""
msgid "Encryption"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2380,7 +2389,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2458,7 +2467,7 @@ msgstr ""
msgid "Failed to change the system password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2466,7 +2475,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr ""
@@ -2476,7 +2485,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr ""
@@ -2488,7 +2497,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr ""
@@ -2595,7 +2604,7 @@ msgstr ""
msgid "Flashing…"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2777,7 +2786,7 @@ msgstr ""
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2789,7 +2798,7 @@ msgstr ""
msgid "Generate archive"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2805,21 +2814,20 @@ msgstr ""
msgid "Global network options"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -2972,7 +2980,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3157,7 +3165,7 @@ msgstr ""
msgid "IPv4 netmask"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3258,7 +3266,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3328,7 +3336,7 @@ msgstr ""
msgid "Identity"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3363,7 +3371,7 @@ msgid ""
"device node"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3669,6 +3677,8 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr ""
@@ -3686,7 +3696,7 @@ msgid ""
"flash memory, please verify the image file!"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3859,7 +3869,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr ""
@@ -3969,17 +3979,19 @@ msgstr ""
msgid "Load Average"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr ""
@@ -4085,6 +4097,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr ""
@@ -4435,7 +4448,7 @@ msgstr ""
msgid "More Characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr ""
@@ -4539,8 +4552,8 @@ msgstr ""
msgid "NTP server candidates"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4636,7 +4649,7 @@ msgstr ""
msgid "Next »"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4666,7 +4679,6 @@ msgstr ""
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4697,7 +4709,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr ""
@@ -4737,7 +4749,7 @@ msgstr ""
msgid "No negative cache"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4902,7 +4914,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr ""
@@ -4966,20 +4978,20 @@ msgstr ""
msgid "Operating frequency"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr ""
@@ -5005,17 +5017,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr ""
@@ -5023,13 +5035,13 @@ msgstr ""
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5040,11 +5052,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5185,7 +5197,7 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5320,6 +5332,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr ""
@@ -5409,6 +5422,10 @@ msgstr ""
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr ""
@@ -5436,7 +5453,7 @@ msgstr ""
msgid "Permission denied"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
@@ -5467,7 +5484,7 @@ msgstr ""
msgid "Please enter your username and password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr ""
@@ -5487,7 +5504,7 @@ msgstr ""
msgid "Port status:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5515,7 +5532,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr ""
@@ -5606,7 +5623,7 @@ msgstr ""
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr ""
@@ -5627,8 +5644,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5859,7 +5876,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -5987,8 +6004,8 @@ msgid ""
"received if multiple IPs are available."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr ""
@@ -5996,19 +6013,19 @@ msgstr ""
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr ""
@@ -6031,7 +6048,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6136,7 +6153,7 @@ msgstr ""
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6147,7 +6164,7 @@ msgid "Save"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr ""
@@ -6173,11 +6190,11 @@ msgstr ""
msgid "Scheduled Tasks"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr ""
@@ -6192,9 +6209,9 @@ msgid ""
"your device!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr ""
@@ -6376,7 +6393,7 @@ msgstr ""
msgid "Signal:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr ""
@@ -6712,7 +6729,7 @@ msgstr ""
msgid "Start refresh"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr ""
@@ -6781,6 +6798,10 @@ msgstr ""
msgid "Stop refresh"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -6843,7 +6864,7 @@ msgstr ""
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr ""
@@ -6880,7 +6901,6 @@ msgstr ""
msgid "System log buffer size"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -6934,11 +6954,15 @@ msgstr ""
msgid "Target network"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7053,7 +7077,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7079,7 +7103,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7167,7 +7191,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7194,6 +7218,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7320,11 +7348,11 @@ msgstr ""
msgid "There are no active leases"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7404,8 +7432,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7673,7 +7701,7 @@ msgstr ""
msgid "Unnamed key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr ""
@@ -7703,7 +7731,7 @@ msgstr ""
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr ""
@@ -7718,21 +7746,21 @@ msgstr ""
msgid "Upload archive..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr ""
@@ -7919,6 +7947,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr ""
@@ -8210,7 +8239,7 @@ msgstr ""
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8233,7 +8262,7 @@ msgid ""
"scripts like \"network\", your device might become inaccessible!</strong>"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8396,7 +8425,7 @@ msgstr ""
msgid "half-duplex"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr ""
@@ -8421,11 +8450,11 @@ msgstr ""
msgid "input"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr ""
@@ -8458,12 +8487,12 @@ msgstr ""
msgid "no link"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr ""
@@ -8497,11 +8526,11 @@ msgstr ""
msgid "output"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr ""
@@ -8552,7 +8581,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr ""
@@ -8570,7 +8599,7 @@ msgstr ""
msgid "unlimited"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8591,175 +8620,175 @@ msgstr ""
msgid "untagged"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr ""
diff --git a/modules/luci-base/po/hu/base.po b/modules/luci-base/po/hu/base.po
index 26c2a3b7da..0f46cc69ec 100644
--- a/modules/luci-base/po/hu/base.po
+++ b/modules/luci-base/po/hu/base.po
@@ -20,7 +20,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d érvénytelen mező"
@@ -56,19 +56,19 @@ msgid "-- Additional Field --"
msgstr "-- További mező --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Kérem válasszon --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- egyéni --"
@@ -218,7 +218,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Már létezik egy ilyen nevű könyvtár."
@@ -226,7 +226,7 @@ msgstr "Már létezik egy ilyen nevű könyvtár."
msgid "A new login is required since the authentication session expired."
msgstr "Új bejelentkezés szükséges, mivel a hitelesítés munkamenete lejárt."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -407,11 +407,11 @@ msgstr ""
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -639,7 +639,7 @@ msgid "Allow the <em>root</em> user to login with password"
msgstr ""
"Engedélyezés a <em>root</em> felhasználónak, hogy jelszóval jelentkezzen be"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "Engedélyezett IP-k"
@@ -798,16 +798,16 @@ msgstr ""
msgid "Apply backup?"
msgstr "Alkalmazza a biztonsági mentést?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "A kérés alkalmazása meghiúsult <code>%h</code> állapotkóddal"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "Kijelöletlenek alkalmazása"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "A beállítások változtatásainak alkalmazása… %d mp"
@@ -868,6 +868,7 @@ msgid "Authoritative"
msgstr "Hiteles"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Hitelesítés szükséges"
@@ -1086,8 +1087,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Tallózás…"
@@ -1119,8 +1120,8 @@ msgstr "Gyorsítótárazott"
msgid "Call failed"
msgstr "Hívás sikertelen"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1194,11 +1195,11 @@ msgstr ""
msgid "Chain"
msgstr "Lánc"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Változtatások"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "A változtatások visszavonva."
@@ -1304,7 +1305,7 @@ msgstr "Ügyfél"
msgid "Client ID to send when requesting DHCP"
msgstr "DHCP kérésekor küldendő ügyfél-azonosító"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1373,16 +1374,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Beállítás"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "A beállítás változtatásai alkalmazva."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "A beállítás változtatásai vissza lettek állítva!"
@@ -1480,7 +1481,7 @@ msgstr "A tartalom mentésre került."
msgid "Continue"
msgstr "Tovább"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1721,11 +1722,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1737,7 +1738,7 @@ msgstr "Törlés"
msgid "Delete key"
msgstr "Kulcs törlése"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "Törlési kérés sikertelen: %s"
@@ -1751,11 +1752,11 @@ msgstr "Kézbesítési forgalom jelző üzenet időköze"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Leírás"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Kijelölés megszüntetése"
@@ -1828,7 +1829,7 @@ msgstr ""
msgid "Device type"
msgstr "Eszköz típus"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Az eszköz elérhetetlen!"
@@ -1849,7 +1850,7 @@ msgstr "Diagnosztika"
msgid "Dial number"
msgstr "Szám tárcsázása"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Könyvtár"
@@ -1923,10 +1924,14 @@ msgstr "Leválasztási kísérlet sikertelen"
msgid "Disconnection attempt failed."
msgstr "Lecsatlakozás sikertelen."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -2014,7 +2019,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "Valóban törölni szeretné ezt: „%s”?"
@@ -2026,7 +2031,7 @@ msgstr "Valóban törölni szeretné a következő SSH-kulcsot?"
msgid "Do you really want to erase all settings?"
msgstr "Valóban törölni szeretné az összes beállítást?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Valóban törölni szeretné rekurzívan a(z) „%s” könyvtárat?"
@@ -2068,7 +2073,7 @@ msgstr "Az mtdblock letöltése"
msgid "Downstream SNR offset"
msgstr "Belső SNR eltolás"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "Húzza az átrendezéshez"
@@ -2119,9 +2124,9 @@ msgstr "EA-bitek hossza"
msgid "EAP-Method"
msgstr "EAP módszer"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2168,6 +2173,10 @@ msgstr "Vészhelyzet"
msgid "Enable"
msgstr "Engedélyezés"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2370,11 +2379,11 @@ msgstr "Beágyazási mód"
msgid "Encryption"
msgstr "Titkosítás"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr "Végpont gépe"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr "Végpont portja"
@@ -2477,7 +2486,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2555,7 +2564,7 @@ msgstr "FT protokoll"
msgid "Failed to change the system password."
msgstr "Nem sikerült megváltoztatni a rendszer jelszavát."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
"Nem sikerült megerősíteni az alkalmazást %d másodpercen belül, várakozás a "
@@ -2565,7 +2574,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Nem sikerült végrehajtani az „/etc/init.d/%s %s” műveletet: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Fájl"
@@ -2578,7 +2587,7 @@ msgstr ""
"vagy „server=1.2.3.4” a tartományra jellemző vagy teljesen külső <abbr title="
"\"Domain Name System\">DNS</abbr>-kiszolgálókhoz."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "A fájl nem érhető el"
@@ -2592,7 +2601,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr "helyi <abbr title=\"Domain Name System\">DNS</abbr>-fájl"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "Fájlnév"
@@ -2701,7 +2710,7 @@ msgstr "Beírás műveletei"
msgid "Flashing…"
msgstr "Telepítés…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2887,7 +2896,7 @@ msgstr "Beállítás előállítása"
msgid "Generate Key"
msgstr "Kulcs generálása"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2899,7 +2908,7 @@ msgstr "PMK előállítása helyileg"
msgid "Generate archive"
msgstr "Archívum előállítása"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2916,21 +2925,20 @@ msgstr "Globális beállítások"
msgid "Global network options"
msgstr "Globális hálózati beállítások"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Ugrás a jelszóbeállításhoz…"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3085,7 +3093,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr> elrejtése"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3270,7 +3278,7 @@ msgstr "IPv4-átjáró"
msgid "IPv4 netmask"
msgstr "IPv4 hálózati maszk"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr "IPv4 hálózat cím/hálózati maszk jelölésben"
@@ -3371,7 +3379,7 @@ msgstr "IPv6 hozzárendelés hossza"
msgid "IPv6 gateway"
msgstr "IPv6-átjáró"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr "IPv6 hálózat cím/hálózati maszk jelölésben"
@@ -3441,7 +3449,7 @@ msgstr "IPv6 IPv4 felett (6to4)"
msgid "Identity"
msgstr "Személyazonosság"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3480,7 +3488,7 @@ msgstr ""
"Ha meg van adva, akkor az eszköz a rögzített eszközcsomópont helyett "
"partíciós címke alapján lesz csatolva"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3804,6 +3812,8 @@ msgid "Invalid hexadecimal value"
msgstr "Érvénytelen hexadecimális érték"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Érvénytelen felhasználónév és/vagy jelszó! Próbálja újra."
@@ -3823,7 +3833,7 @@ msgstr ""
"Úgy tűnik, hogy olyan képfájlt próbál beírni, amely nem fér bele a flash-"
"memóriába. Ellenőrizze a képfájlt!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3998,7 +4008,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "Jelmagyarázat:"
@@ -4121,17 +4131,19 @@ msgstr "Terhelés"
msgid "Load Average"
msgstr "Átlagos terhelés"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "Könyvtártartalmak betöltése…"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "Nézet betöltése…"
@@ -4239,6 +4251,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Bejelentkezés"
@@ -4597,7 +4610,7 @@ msgstr "Megfigyelés"
msgid "More Characters"
msgstr "Több karakter"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "Több…"
@@ -4703,8 +4716,8 @@ msgstr "NT-tartomány"
msgid "NTP server candidates"
msgstr "NTP-kiszolgáló jelöltek"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4802,7 +4815,7 @@ msgstr "Új csatolónév…"
msgid "Next »"
msgstr "Következő »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4832,7 +4845,6 @@ msgstr "Nincs NAT-T"
msgid "No RX signal"
msgstr "Nincs RX jel"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4864,7 +4876,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "Nincsenek bejegyzések ebben a könyvtárban"
@@ -4904,7 +4916,7 @@ msgstr ""
msgid "No negative cache"
msgstr "Nincs negatív gyorsítótár"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -5075,7 +5087,7 @@ msgstr "Kapcsolatkori útválasztás"
msgid "One of hostname or MAC address must be specified!"
msgstr "A gépnév vagy a MAC-cím egyikét meg kell adni!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "A következők egyike: %s"
@@ -5139,20 +5151,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "Működési gyakoriság"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Beállítás megváltoztatva"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Beállítás eltávolítva"
@@ -5184,7 +5196,7 @@ msgstr ""
"delegált kiszolgálótól, akkor használja az utótagot (például „::1”) az IP-"
"cím formázásához („a:b:c:d::1”) a csatolónál."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
@@ -5192,13 +5204,13 @@ msgstr ""
"Elhagyható. Base64 kódolású előre megosztott kulcs. Egy szimmetrikus kulcsú "
"kriptográfia további rétegében adja hozzá a kvantum utáni ellenállósághoz."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
"Elhagyható. Útvonalak létrehozása az engedélyezett IP-khez ennél a "
"partnernél."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "Elhagyható. A partner leírása."
@@ -5206,7 +5218,7 @@ msgstr "Elhagyható. A partner leírása."
msgid "Optional. Do not create host routes to peers."
msgstr "Elhagyható. Ne hozzon létre gépútvonalakat a partnerekhez."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
@@ -5214,7 +5226,7 @@ msgstr ""
"Elhagyható. A partner gépe. A nevek a csatoló felhidazása előtt lesznek "
"feloldva."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5225,11 +5237,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "Elhagyható. Az alagút csatoló legnagyobb átviteli egysége."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "Elhagyható. A partner portja."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5376,7 +5388,7 @@ msgstr "A belső útvonalakhoz használt tábla felülbírálása"
msgid "Overview"
msgstr "Áttekintés"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "Felülírja a meglévő „%s” fájlt?"
@@ -5511,6 +5523,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Jelszó"
@@ -5600,6 +5613,10 @@ msgstr "A partnercím hiányzik"
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "Partnerek"
@@ -5627,7 +5644,7 @@ msgstr "Visszaállítás végrehajtása"
msgid "Permission denied"
msgstr "Hozzáférés megtagadva"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "Állandó életben tartás"
@@ -5658,7 +5675,7 @@ msgstr "csom."
msgid "Please enter your username and password."
msgstr "Adja meg a felhasználónevét és a jelszavát."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "Válassza ki a feltöltendő fájlt."
@@ -5678,7 +5695,7 @@ msgstr "Port izoláció"
msgid "Port status:"
msgstr "Port állapota:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr "Lehetséges tagadása ennek: %s"
@@ -5706,7 +5723,7 @@ msgstr "Előtag delegálva"
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "Előre megosztott kulcs"
@@ -5799,7 +5816,7 @@ msgstr "Új hálózat szolgáltatása"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Áleseti (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Nyilvános kulcs"
@@ -5827,8 +5844,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr "QMI sejtes"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -6067,7 +6084,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr "Kötelező. Base64 kódolású személyes kulcs ehhez a csatolóhoz."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr "Kötelező. A partner Base64 kódolású nyilvános kulcsa."
@@ -6197,8 +6214,8 @@ msgstr ""
"Gépnév behatárolása a lekérdező alhálózattól függően, ha több IP-cím is "
"elérhető"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Jelszó felfedése/elrejtése"
@@ -6206,19 +6223,19 @@ msgstr "Jelszó felfedése/elrejtése"
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Visszavonás"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "Változtatások visszavonása"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr "A kérés visszavonása meghiúsult <code>%h</code> állapotkóddal"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "Beállítás visszaállítása…"
@@ -6241,7 +6258,7 @@ msgstr "Gyökér előkészítés"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "Engedélyezett IP-k irányítása"
@@ -6348,7 +6365,7 @@ msgstr "SSTP szerver"
msgid "SWAP"
msgstr "SWAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6359,7 +6376,7 @@ msgid "Save"
msgstr "Mentés"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Mentés és alkalmazás"
@@ -6385,11 +6402,11 @@ msgstr "Keresés"
msgid "Scheduled Tasks"
msgstr "Ütemezett feladatok"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Szakasz hozzáadva"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Szakasz eltávolítva"
@@ -6407,9 +6424,9 @@ msgstr ""
"akkor is ha a lemezképformátum ellenőrzése sikertelen. Csak akkor használja, "
"ha biztos abban, hogy a firmware helyes és az Ön eszközéhez készült!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "Fájl kiválasztása…"
@@ -6597,7 +6614,7 @@ msgstr "Jel frissítési ráta"
msgid "Signal:"
msgstr "Jel:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Méret"
@@ -6949,7 +6966,7 @@ msgstr "Indítási prioritás"
msgid "Start refresh"
msgstr "Frissítés indítása"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "Beállítások alkalmazásának indítása…"
@@ -7022,6 +7039,10 @@ msgstr "WPS leállítása"
msgid "Stop refresh"
msgstr "Frissítés leállítása"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -7086,7 +7107,7 @@ msgstr "Protokoll váltása"
msgid "Switch to CIDR list notation"
msgstr "Váltás CIDR lista jelölésre"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "Szimbolikus hivatkozás"
@@ -7123,7 +7144,6 @@ msgstr "Rendszer tulajdonságai"
msgid "System log buffer size"
msgstr "Rendszernapló-puffer mérete"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7177,11 +7197,15 @@ msgstr ""
msgid "Target network"
msgstr "Célhálózat"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Megszakítás"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7300,7 +7324,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7329,7 +7353,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7436,7 +7460,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr "Az IPv6-előtag hossza bitekben"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7463,6 +7487,10 @@ msgstr "Helyi IPv4 netmaszk"
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7612,11 +7640,11 @@ msgstr "Az érték felülírva a konfiguráció által. Eredeti: %s"
msgid "There are no active leases"
msgstr "Nincsenek aktív bérletek"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "Nincsenek alkalmazandó változtatások"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7719,8 +7747,8 @@ msgstr ""
"Ezt a beállítást nem lehet használni, mert a ca-bundle csomag nincs "
"telepítve."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7992,7 +8020,7 @@ msgstr "Leválasztás"
msgid "Unnamed key"
msgstr "Névtelen kulcs"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Mentetlen változtatások"
@@ -8022,7 +8050,7 @@ msgstr "Fel"
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Feltöltés"
@@ -8039,21 +8067,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Archívum feltöltése…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "Fájl feltöltése"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "Fájl feltöltése…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "Feltöltési kérés sikertelen: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "Fájl feltöltése…"
@@ -8253,6 +8281,7 @@ msgstr "Felhasználói kulcs (PEM kódolású)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Felhasználónév"
@@ -8556,7 +8585,7 @@ msgstr "Rendszernapló írása fájlba"
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8587,7 +8616,7 @@ msgstr ""
"előkészítő parancsfájlokat, mint például a „network” parancsfájlt, akkor az "
"eszköz elérhetetlenné válhat!</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8752,7 +8781,7 @@ msgstr "teljes kétirányú"
msgid "half-duplex"
msgstr "váltakozó kétirányú"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "hexadecimális kódolt érték"
@@ -8777,11 +8806,11 @@ msgstr "mellőzés"
msgid "input"
msgstr "bemenet"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "8 és 63 karakter közötti kulcs"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "kulcs 5 vagy 13 karakterrel"
@@ -8814,12 +8843,12 @@ msgstr "nem"
msgid "no link"
msgstr "nincs kapcsolat"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "nem üres érték"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "nincs"
@@ -8853,11 +8882,11 @@ msgstr ""
msgid "output"
msgstr "kimenet"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "pozitív számérték"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "pozitív egész szám érték"
@@ -8908,7 +8937,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "egyedi érték"
@@ -8926,7 +8955,7 @@ msgstr "ismeretlen"
msgid "unlimited"
msgstr "korlátlan"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8947,175 +8976,175 @@ msgstr "meghatározatlan -vagy- létrehozás:"
msgid "untagged"
msgstr "címkézetlen"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "érvényes IP-cím"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "érvényes IP-cím vagy előtag"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "érvényes IPv4 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "érvényes IPv4-cím"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "érvényes IPv4-cím vagy hálózat"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "érvényes IPv4-cím:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "érvényes IPv4 hálózat"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "érvényes IPv4 vagy IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "érvényes IPv4-előtagérték (0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "érvényes IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "érvényes IPv6-cím"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "érvényes IPv6-cím vagy előtag"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "érvényes IPv6 gépazonosító"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "érvényes IPv6 hálózat"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "érvényes IPv6-előtagérték (0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "érvényes MAC-cím"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "érvényes UCI azonosító"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "érvényes UCI-azonosító, gépnév vagy IP-cím"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "érvényes cím:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "érvényes dátum (YYYY-MM-DD)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "érvényes decimális érték"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "érvényes hexadecimális WEP-kulcs"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "érvényes hexadecimális WPA-kulcs"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "érvényes gép:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "érvényes gépnév"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "érvényes gépnév vagy IP-cím"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "érvényes egész érték"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "érvényes hálózat cím/hálózati maszk jelölésben"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "érvényes telefonszám karakter (0-9, „*”, „#”, „!” vagy „.”)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "érvényes port vagy porttartomány (port1-port2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "érvényes portérték"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "érvényes idő (HH:MM:SS)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "%d és %d karakter közötti érték"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "%f és %f közötti érték"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "az érték nagyobb vagy egyenlő mint %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "az érték kisebb vagy egyenlő mint %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "érték %d karakterrel"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "érték legalább %d karakterrel"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "érték legfeljebb %d karakterrel"
diff --git a/modules/luci-base/po/it/base.po b/modules/luci-base/po/it/base.po
index 937d7c826b..41ceed2f96 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: 2021-10-19 18:57+0000\n"
-"Last-Translator: pisquan8 <cimurro@outlook.de>\n"
+"PO-Revision-Date: 2021-11-18 18:36+0000\n"
+"Last-Translator: Giovanni Giacobbi <giovanni@giacobbi.net>\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.9-dev\n"
+"X-Generator: Weblate 4.9.1-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
msgid "%.1f dB"
@@ -22,7 +22,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d campo/i non valido/i"
@@ -58,19 +58,19 @@ msgid "-- Additional Field --"
msgstr "-- Campo Aggiuntivo --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Scegli --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- personalizzato --"
@@ -224,7 +224,7 @@ msgstr "Servizio <abbr title=\"Router Advertisement\">RA</abbr>"
msgid "A configuration for the device \"%s\" already exists"
msgstr "Esiste già una configurazione per il dispositivo \"%s\""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Esiste già una directory con lo stesso nome del file."
@@ -233,7 +233,7 @@ msgid "A new login is required since the authentication session expired."
msgstr ""
"È necessario un nuovo login poiché la sessione di autenticazione è scaduta."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -415,11 +415,11 @@ msgstr ""
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -648,7 +648,7 @@ msgstr ""
msgid "Allow the <em>root</em> user to login with password"
msgstr "Abilita l'accesso all'utente <em>root</em> via password"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "IP permessi"
@@ -806,16 +806,16 @@ msgstr ""
msgid "Apply backup?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "Applica senza controllo"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "Applicazione delle modifiche in corso… %ds"
@@ -870,6 +870,7 @@ msgid "Authoritative"
msgstr "Autoritativo"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Autorizzazione Richiesta"
@@ -1087,8 +1088,8 @@ msgstr "Attiva l'interfaccia bridge anche se non sono collegate porte"
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr ""
@@ -1118,8 +1119,8 @@ msgstr "In cache"
msgid "Call failed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1185,11 +1186,11 @@ msgstr ""
msgid "Chain"
msgstr "Catena"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Modifiche"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "Le modifiche sono state annullate."
@@ -1293,7 +1294,7 @@ msgstr "Client"
msgid "Client ID to send when requesting DHCP"
msgstr "ID Cliente da inviare all'interno della richiesta DHCP"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1362,16 +1363,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "Calcolare il checksum in uscita (facoltativo)."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Configurazione"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "Modifiche alla configurazione applicate."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "Le modifiche alla configurazione sono state annullate!"
@@ -1484,7 +1485,7 @@ msgstr "I contenuti sono stati salvati."
msgid "Continue"
msgstr "Continua"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1627,7 +1628,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437
msgid "DNS server port"
-msgstr "Porta Server <abbr title=\"Domain Name System\">DNS</abbr>"
+msgstr "Porta server <abbr title=\"Domain Name System\">DNS</abbr>"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
msgid "DNS weight"
@@ -1725,11 +1726,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1741,7 +1742,7 @@ msgstr "Elimina"
msgid "Delete key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr ""
@@ -1756,11 +1757,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Descrizione"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr ""
@@ -1833,7 +1834,7 @@ msgstr ""
msgid "Device type"
msgstr "Tipo dispositivo"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Dispositivo irraggiungibile!"
@@ -1854,7 +1855,7 @@ msgstr "Diagnostica"
msgid "Dial number"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Directory"
@@ -1928,10 +1929,14 @@ msgstr ""
msgid "Disconnection attempt failed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -2021,7 +2026,7 @@ msgstr ""
"Non inviare messaggi <abbr title=\"Router Advertisement, ICMPv6 Type "
"134\">RA</abbr> su questa interfaccia."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -2033,7 +2038,7 @@ msgstr ""
msgid "Do you really want to erase all settings?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr ""
@@ -2075,7 +2080,7 @@ msgstr "Scarica mtdblock"
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr ""
@@ -2125,9 +2130,9 @@ msgstr ""
msgid "EAP-Method"
msgstr "Metodo EAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2172,6 +2177,10 @@ msgstr "Emergenza"
msgid "Enable"
msgstr "Abilita"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2374,11 +2383,11 @@ msgstr "Modalità di incapsulamento"
msgid "Encryption"
msgstr "Crittografia"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2447,7 +2456,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338
msgid "Exclude interfaces"
-msgstr ""
+msgstr "Escludi interfacce"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
msgid ""
@@ -2481,7 +2490,7 @@ msgstr "Necessario indirizzo IPv6 valido"
msgid "Expecting two priority values separated by a colon"
msgstr "Necessari due valori di priorità separati da due punti (:)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2561,7 +2570,7 @@ msgstr "Protocollo FT"
msgid "Failed to change the system password."
msgstr "Impossibile modificare la password di sistema."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2569,7 +2578,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "File"
@@ -2579,7 +2588,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr ""
@@ -2591,7 +2600,7 @@ msgstr "File per memorizzare i contratti DHCP."
msgid "File with upstream resolvers."
msgstr "File con i name server upstream."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr ""
@@ -2698,7 +2707,7 @@ msgstr "Operazioni flash"
msgid "Flashing…"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2872,7 +2881,7 @@ msgstr "Impostazioni Generali"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
msgid "General Setup"
-msgstr "Configurazione generale"
+msgstr "Configurazione Generale"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:336
msgid "General device options"
@@ -2886,7 +2895,7 @@ msgstr "Genera Configurazione"
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2898,7 +2907,7 @@ msgstr ""
msgid "Generate archive"
msgstr "Genera archivio"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2914,21 +2923,20 @@ msgstr "Impostazioni globali"
msgid "Global network options"
msgstr "Opzioni di rete globali"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Vai alla configurazione della password..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3083,7 +3091,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "Nascondi <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3268,7 +3276,7 @@ msgstr "Gateway IPv4"
msgid "IPv4 netmask"
msgstr "Maschera di rete IPv4"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3369,7 +3377,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr "Gateway IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3441,7 +3449,7 @@ msgstr "IPv6-su-IPv4 (6to4)"
msgid "Identity"
msgstr "Identità"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3480,7 +3488,7 @@ msgstr ""
"Se specificato, montare il dispositivo dall'etichetta della partizione "
"invece che dal nodo del dispositivo fisso"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3793,6 +3801,8 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Username e/o password non validi! Per favore riprova."
@@ -3812,7 +3822,7 @@ msgstr ""
"Sembra tu stia provando a scrivere un'immagine più grande delle dimensioni "
"della memoria flash, per favore controlla il file!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3989,7 +3999,7 @@ msgstr ""
"l'efficienza del tempo di trasmissione potrebbe essere ridotta. Si consiglia "
"di non consentire velocità 802.11b ove possibile."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "Legenda:"
@@ -4099,17 +4109,19 @@ msgstr "Carico"
msgid "Load Average"
msgstr "Carico Medio"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "Caricamento pagina…"
@@ -4216,6 +4228,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Login"
@@ -4576,7 +4589,7 @@ msgstr "Monitor"
msgid "More Characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr ""
@@ -4682,8 +4695,8 @@ msgstr ""
msgid "NTP server candidates"
msgstr "Candidati server NTP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4781,7 +4794,7 @@ msgstr ""
msgid "Next »"
msgstr "Prossimo »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4811,7 +4824,6 @@ msgstr ""
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4842,7 +4854,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr ""
@@ -4882,7 +4894,7 @@ msgstr ""
msgid "No negative cache"
msgstr "Nessuna cache negativa"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -5049,7 +5061,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr "Devi specificare almeno il nome host o l'indirizzo MAC!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr ""
@@ -5116,20 +5128,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "Frequenza"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Opzione cambiata"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Opzione cancellata"
@@ -5155,17 +5167,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr ""
@@ -5173,13 +5185,13 @@ msgstr ""
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5190,11 +5202,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5337,7 +5349,7 @@ msgstr "Sovrascrivi la tabella usata per le route interne"
msgid "Overview"
msgstr "Riepilogo"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5472,6 +5484,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Password"
@@ -5561,6 +5574,10 @@ msgstr ""
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "Peer"
@@ -5588,7 +5605,7 @@ msgstr "Esegui ripristino"
msgid "Permission denied"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
@@ -5598,7 +5615,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
msgid "Physical Settings"
-msgstr ""
+msgstr "Impostazioni Fisiche"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:91
@@ -5619,7 +5636,7 @@ msgstr ""
msgid "Please enter your username and password."
msgstr "Per favore inserisci il tuo username e la password."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr ""
@@ -5639,7 +5656,7 @@ msgstr ""
msgid "Port status:"
msgstr "Status porta:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5667,7 +5684,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr ""
@@ -5758,7 +5775,7 @@ msgstr "Fornisci nuova rete"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Pseudo Ad-Hoc (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Chiave pubblica"
@@ -5783,8 +5800,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -6015,7 +6032,7 @@ msgstr "Necessario per alcuni ISP, ad esempio Charter con DOCSIS 3"
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -6145,8 +6162,8 @@ msgstr ""
"Restituisce le risposte alle risoluzione DNS corrispondenti alla sottorete "
"da cui è stata ricevuta nel caso siano disponibili più IP."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Rivela/nascondi password"
@@ -6154,19 +6171,19 @@ msgstr "Rivela/nascondi password"
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Ripristina"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "Annulla modifiche"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "Ripristino della configurazione…"
@@ -6189,7 +6206,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6299,7 +6316,7 @@ msgstr "Server SSTP"
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6310,7 +6327,7 @@ msgid "Save"
msgstr "Salva"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Salva & Applica"
@@ -6336,11 +6353,11 @@ msgstr ""
msgid "Scheduled Tasks"
msgstr "Operazioni programmate"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Sezione aggiunta"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Sezione rimossa"
@@ -6355,9 +6372,9 @@ msgid ""
"your device!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "Seleziona file…"
@@ -6545,7 +6562,7 @@ msgstr "Frequenza di aggiornamento del segnale"
msgid "Signal:"
msgstr "Segnale:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Dimensione"
@@ -6906,7 +6923,7 @@ msgstr "Priorità di avvio"
msgid "Start refresh"
msgstr "Avvia aggiornamento"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "Inizializzazione configurazione…"
@@ -6979,6 +6996,10 @@ msgstr "Interrompi WPS"
msgid "Stop refresh"
msgstr "Interrompi aggiornamento"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -7042,7 +7063,7 @@ msgstr "Cambia protocollo"
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr ""
@@ -7079,7 +7100,6 @@ msgstr "Proprietà di Sistema"
msgid "System log buffer size"
msgstr "Dimensione buffer log di sistema"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7133,11 +7153,15 @@ msgstr ""
msgid "Target network"
msgstr "Rete di destinazione"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Chiudi"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr "La chiave pubblica (\"PublicKey\") dell'interfaccia wg"
@@ -7265,7 +7289,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7296,7 +7320,7 @@ msgstr ""
"L'SSID corretto deve essere specificato manualmente quando si accede a una "
"rete wireless nascosta"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7400,7 +7424,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7427,6 +7451,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7568,11 +7596,11 @@ msgstr ""
msgid "There are no active leases"
msgstr "Non ci sono lease attivi"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "Non ci sono modifiche da applicare"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7659,8 +7687,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7936,7 +7964,7 @@ msgstr "Smonta"
msgid "Unnamed key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Modifiche non salvate"
@@ -7966,7 +7994,7 @@ msgstr ""
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Upload"
@@ -7981,21 +8009,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Carica archivio..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr ""
@@ -8197,6 +8225,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Nome utente"
@@ -8438,7 +8467,7 @@ msgstr ""
#: 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:124
msgid "Wireless"
-msgstr "WiFi"
+msgstr "Wireless"
#: modules/luci-base/htdocs/luci-static/resources/network.js:2998
#: modules/luci-compat/luasrc/model/network.lua:1419
@@ -8496,7 +8525,7 @@ msgstr "Scrivi registro di sistema su file"
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8524,7 +8553,7 @@ msgstr ""
"inizializzazione essenziali come ad esempio la \"rete\", il dispositivo "
"potrebbe diventare inaccessibile!</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8689,7 +8718,7 @@ msgstr "full-duplex"
msgid "half-duplex"
msgstr "half-duplex"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "valore in codifica esadecimale"
@@ -8714,11 +8743,11 @@ msgstr ""
msgid "input"
msgstr "ingresso"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr ""
@@ -8751,12 +8780,12 @@ msgstr "no"
msgid "no link"
msgstr "Nessun collegamento"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "campo da compilare"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "nessuna"
@@ -8790,11 +8819,11 @@ msgstr ""
msgid "output"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr ""
@@ -8845,7 +8874,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr ""
@@ -8863,7 +8892,7 @@ msgstr "sconosciuto"
msgid "unlimited"
msgstr "illimitato"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8884,175 +8913,175 @@ msgstr "non specificato - o - creato:"
msgid "untagged"
msgstr "non etichettato"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "indirizzo IP valido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "indirizzo IP o prefisso valido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "indirizzo IPv4 valido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "indirizzo IPv4 o rete valido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "identificatore UCI valido, nome host o intervallo di indirizzi IP"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "nome host valido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "nome host o indirizzo IP valido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "valore compreso tra %f e %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "valore maggiore o uguale a %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "valore minore o uguale a %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "valore di %d caratteri"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "valore di almeno %d caratteri"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "valore di al più %d caratteri"
diff --git a/modules/luci-base/po/ja/base.po b/modules/luci-base/po/ja/base.po
index 489cbaacb0..7b9dd574ee 100644
--- a/modules/luci-base/po/ja/base.po
+++ b/modules/luci-base/po/ja/base.po
@@ -22,7 +22,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d ビット"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "無効な入力欄: %d個"
@@ -58,19 +58,19 @@ msgid "-- Additional Field --"
msgstr "-- 追加項目 --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- 選択してください --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- カスタム --"
@@ -217,7 +217,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr "デバイス \"%s\" の設定は既に存在しています"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "同じ名前のディレクトリがすでに存在します。"
@@ -225,7 +225,7 @@ msgstr "同じ名前のディレクトリがすでに存在します。"
msgid "A new login is required since the authentication session expired."
msgstr "認証セッションの期限が切れたため、再ログインが必要です。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -403,11 +403,11 @@ msgstr "アダプティブな負荷分散(balance-alb、6)"
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "アダプティブな送信負荷分散(balance-tlb、5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -632,7 +632,7 @@ msgstr "システム機能の調査を許可"
msgid "Allow the <em>root</em> user to login with password"
msgstr "パスワードでの <em>root</em> 権限へのログインを許可します"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "許可されたIP"
@@ -741,21 +741,26 @@ msgstr "このデバイスを IPv6 DNS サーバーとしてアナウンスし
msgid ""
"Announce this device as default router if a local IPv6 default route is "
"present."
-msgstr "ローカルの IPv6 デフォルトルートが存在する場合、このデバイスをデフォルト ルーターとしてアナウンスします"
+msgstr ""
+"ローカルの IPv6 デフォルトルートが存在する場合、このデバイスをデフォルト ルー"
+"ターとしてアナウンスします"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:779
msgid ""
"Announce this device as default router if a public IPv6 prefix is available, "
"regardless of local default route availability."
msgstr ""
-"パブリック IPv6 プレフィックスが利用可能である場合、ローカルのデフォルトルートの利用可否にかかわらずこのデバイスをデフォルト "
-"ルーターとしてアナウンスします"
+"パブリック IPv6 プレフィックスが利用可能である場合、ローカルのデフォルトルー"
+"トの利用可否にかかわらずこのデバイスをデフォルト ルーターとしてアナウンスしま"
+"す"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:781
msgid ""
"Announce this device as default router regardless of whether a prefix or "
"default route is present."
-msgstr "プレフィックスまたはデフォルトルートが存在するかどうかにかかわらず、このデバイスをデフォルト ルーターとしてアナウンスします"
+msgstr ""
+"プレフィックスまたはデフォルトルートが存在するかどうかにかかわらず、このデバ"
+"イスをデフォルト ルーターとしてアナウンスします"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
msgid "Announced DNS domains"
@@ -792,16 +797,16 @@ msgstr ""
msgid "Apply backup?"
msgstr "バックアップを適用しますか?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "適用のリクエストに失敗しました ステータスコード:<code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "チェックなしの適用"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "設定を適用中… 残り最大%d秒"
@@ -860,6 +865,7 @@ msgid "Authoritative"
msgstr "権威"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "ログイン"
@@ -1077,8 +1083,8 @@ msgstr "ポートがアタッチされていなくてもブリッジ インタ
msgid "Broadcast policy (broadcast, 3)"
msgstr "ブロードキャストポリシー(broadcast、3)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "参照…"
@@ -1108,8 +1114,8 @@ msgstr "キャッシュ済"
msgid "Call failed"
msgstr "呼び出しに失敗しました"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1183,11 +1189,11 @@ msgstr ""
msgid "Chain"
msgstr "チェイン"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "変更"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "変更は取り消されました。"
@@ -1292,7 +1298,7 @@ msgstr "クライアント"
msgid "Client ID to send when requesting DHCP"
msgstr "DHCPリクエスト時に送信するクライアントID"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1360,16 +1366,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "送信チェックサムを計算します(オプション)。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "設定"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "設定が適用されました。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "設定がロールバックされました!"
@@ -1399,14 +1405,17 @@ msgstr ""
msgid ""
"Configures the default router advertisement in <abbr title=\"Router "
"Advertisement\">RA</abbr> messages."
-msgstr "<abbr title=\"Router Advertisement\">RA</abbr> メッセージ内の既定のルーター広告を設定します。"
+msgstr ""
+"<abbr title=\"Router Advertisement\">RA</abbr> メッセージ内の既定のルーター広"
+"告を設定します。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764
msgid ""
"Configures the operation mode of the <abbr title=\"Router Advertisement"
"\">RA</abbr> service on this interface."
msgstr ""
-"このデバイスにおける <abbr title=\"Router Advertisement\">RA</abbr> サービスの動作モードを設定します。"
+"このデバイスにおける <abbr title=\"Router Advertisement\">RA</abbr> サービス"
+"の動作モードを設定します。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:868
msgid "Configures the operation mode of the DHCPv6 service on this interface."
@@ -1475,7 +1484,7 @@ msgstr "内容が保存されました。"
msgid "Continue"
msgstr "続行"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1718,11 +1727,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr "IPv6 プレフィックスの委任"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1734,7 +1743,7 @@ msgstr "削除"
msgid "Delete key"
msgstr "鍵を削除"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "削除の要求に失敗しました: %s"
@@ -1748,11 +1757,11 @@ msgstr "Delivery Traffic Indication Message(DTIM)間隔"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "説明"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "選択を解除"
@@ -1825,7 +1834,7 @@ msgstr "デバイスが存在しません"
msgid "Device type"
msgstr "デバイス タイプ"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "デバイスにアクセスできません!"
@@ -1846,7 +1855,7 @@ msgstr "診断"
msgid "Dial number"
msgstr "ダイヤル番号"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "ディレクトリ"
@@ -1921,10 +1930,14 @@ msgstr "切断の試行に失敗しました"
msgid "Disconnection attempt failed."
msgstr "切断の試行に失敗しました。"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -2008,10 +2021,10 @@ msgid ""
"Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
"abbr> messages on this interface."
msgstr ""
-"このインターフェースでは <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
-"メッセージを送信しません"
+"このインターフェースでは <abbr title=\"Router Advertisement, ICMPv6 Type "
+"134\">RA</abbr> メッセージを送信しません"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "本当に\"%s\"を削除しますか?"
@@ -2023,7 +2036,7 @@ msgstr "本当に以下のSSH公開鍵を削除しますか?"
msgid "Do you really want to erase all settings?"
msgstr "本当にすべての設定を消去しますか?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "本当にディレクトリ\"%s\"を再帰的に削除しますか?"
@@ -2065,7 +2078,7 @@ msgstr "mtdblockをダウンロード"
msgid "Downstream SNR offset"
msgstr "下りSNRオフセット"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "ドラッグして並び替え"
@@ -2114,9 +2127,9 @@ msgstr "EAビット長"
msgid "EAP-Method"
msgstr "EAPメソッド"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2163,6 +2176,10 @@ msgstr "緊急"
msgid "Enable"
msgstr "有効化"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2248,8 +2265,9 @@ msgid ""
"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure"
"\">HTTPS</abbr> port."
msgstr ""
-"<abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> リクエストの <abbr title="
-"\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> ポートへの自動リダイレクトを有効にします。"
+"<abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> リクエストの <abbr "
+"title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> ポートへの自動リダ"
+"イレクトを有効にします。"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:960
msgid ""
@@ -2370,11 +2388,11 @@ msgstr "カプセル化モード"
msgid "Encryption"
msgstr "暗号化"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr "エンドポイントホスト"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr "エンドポイントポート"
@@ -2478,7 +2496,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr "コロンで区切られた2つの優先度の値である必要があります"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2556,7 +2574,7 @@ msgstr "FTプロトコル"
msgid "Failed to change the system password."
msgstr "システムパスワードの変更に失敗しました。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "%d秒以内に適用できませんでした。ロールバック中です…"
@@ -2564,7 +2582,7 @@ msgstr "%d秒以内に適用できませんでした。ロールバック中で
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "\"/etc/init.d/%s %s\"の実行に失敗しました: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "ファイル"
@@ -2578,7 +2596,7 @@ msgstr ""
"\"Domain Name System\">DNS</abbr>サーバーを指定するための、'server=/"
"domain/1.2.3.4'や'server=1.2.3.4'といった行が含まれることがあります。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "ファイルにアクセスできません"
@@ -2592,7 +2610,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr "ローカル<abbr title=\"Domain Name System\">DNS</abbr>ファイル"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "ファイル名"
@@ -2702,7 +2720,7 @@ msgstr "フラッシュ操作"
msgid "Flashing…"
msgstr "フラッシュ中…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2771,8 +2789,9 @@ msgid ""
"messages received on the designated master interface to downstream "
"interfaces."
msgstr ""
-"マスターとして指定されたインターフェースで受信した <abbr title=\"Router Advertisement, ICMPv6 Type "
-"134\">RA</abbr> メッセージをダウンストリーム インターフェースへ転送します"
+"マスターとして指定されたインターフェースで受信した <abbr title=\"Router "
+"Advertisement, ICMPv6 Type 134\">RA</abbr> メッセージをダウンストリーム イン"
+"ターフェースへ転送します"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
msgid "Forward DHCP traffic"
@@ -2782,7 +2801,9 @@ msgstr "DHCPトラフィックを転送"
msgid ""
"Forward DHCPv6 messages between the designated master interface and "
"downstream interfaces."
-msgstr "マスターとして指定されたインターフェースとダウンストリーム インターフェースとの間で DHCPv6 メッセージを転送します"
+msgstr ""
+"マスターとして指定されたインターフェースとダウンストリーム インターフェースと"
+"の間で DHCPv6 メッセージを転送します"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
msgid "Forward Error Correction Seconds (FECS)"
@@ -2892,7 +2913,7 @@ msgstr "設定を生成"
msgid "Generate Key"
msgstr "キーを生成"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2904,7 +2925,7 @@ msgstr "ローカルでPMKを生成"
msgid "Generate archive"
msgstr "アーカイブを生成"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2922,21 +2943,20 @@ msgstr "全体設定"
msgid "Global network options"
msgstr "グローバルネットワークオプション"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "パスワード設定へ移動..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3091,7 +3111,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>を非表示"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3276,7 +3296,7 @@ msgstr "IPv4ゲートウェイ"
msgid "IPv4 netmask"
msgstr "IPv4ネットマスク"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr "IPv4ネットワーク(アドレス/ネットマスク表記)"
@@ -3377,7 +3397,7 @@ msgstr "IPv6割り当て長"
msgid "IPv6 gateway"
msgstr "IPv6ゲートウェイ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr "IPv6ネットワーク(アドレス/ネットマスク表記)"
@@ -3449,7 +3469,7 @@ msgstr "IPv6-over-IPv4(6to4)"
msgid "Identity"
msgstr "識別子"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3485,7 +3505,7 @@ msgid ""
msgstr ""
"固定のデバイスノード名のかわりに、パーティションラベルを使用してマウント"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3801,6 +3821,8 @@ msgid "Invalid hexadecimal value"
msgstr "無効な16進数"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr ""
"ユーザー名とパスワードのどちらかもしくは両方が間違っています!もう一度入力し"
@@ -3822,7 +3844,7 @@ msgstr ""
"フラッシュしようとしたイメージファイルはこのフラッシュメモリー向けではありま"
"せん。イメージファイルを確認してください!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3999,7 +4021,7 @@ msgstr ""
"する可能性があります。 可能な限り 802.11b レートを許可しないことをお勧めしま"
"す。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "凡例:"
@@ -4122,17 +4144,19 @@ msgstr "負荷"
msgid "Load Average"
msgstr "システム平均負荷"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "ディレクトリの内容を読み込み中…"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "画面表示を読み込み中…"
@@ -4240,6 +4264,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr "トンネルが追加される(ブリッジされる)論理ネットワーク(オプション)。"
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "ログイン"
@@ -4599,7 +4624,7 @@ msgstr "モニター"
msgid "More Characters"
msgstr "文字数不足"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "さらに表示…"
@@ -4705,8 +4730,8 @@ msgstr "NTドメイン"
msgid "NTP server candidates"
msgstr "NTPサーバー候補"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4804,7 +4829,7 @@ msgstr "新規インターフェース名…"
msgid "Next »"
msgstr "次 »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4834,7 +4859,6 @@ msgstr "NAT-Tを使用しない"
msgid "No RX signal"
msgstr "RX信号なし"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4865,7 +4889,7 @@ msgstr "強制しない"
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "このディレクトリ内にエントリーがありません"
@@ -4906,7 +4930,7 @@ msgstr "これ以上利用可能なスレーブがないため、インターフ
msgid "No negative cache"
msgstr "ネガティブキャッシュなし"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -5074,7 +5098,7 @@ msgstr "On-Linkルート"
msgid "One of hostname or MAC address must be specified!"
msgstr "ホスト名またはMACアドレスを指定してください!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "次のうちいずれか1つ: %s"
@@ -5140,20 +5164,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "動作周波数"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr "オプション\"%s\"に無効な入力値が含まれています。"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr "オプション\"%s\"を設定してください。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "変更されるオプション"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "削除されるオプション"
@@ -5185,7 +5209,7 @@ msgstr ""
"(例: '::1')を指定します(オプション) 。使用できる値: 'eui64','random'また"
"は'::1'や'::1:2'のような固定値。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
#, fuzzy
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
@@ -5194,11 +5218,11 @@ msgstr ""
"Base64でエンコードされた事前共有キーです。ポスト量子レジスタンスのため、対称"
"鍵暗号の追加層を追加します(オプション)。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr "このピアの許可されたIPのルートを作成します(オプション)。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "ピアの説明(オプション)。"
@@ -5206,7 +5230,7 @@ msgstr "ピアの説明(オプション)。"
msgid "Optional. Do not create host routes to peers."
msgstr "ピアへのホストルートを作成しない(オプション)。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
@@ -5214,7 +5238,7 @@ msgstr ""
"ピアのホストです。名前はインターフェースの起動前に解決されます(オプショ"
"ン)。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5225,11 +5249,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "トンネルインターフェースのMaximum Transmission Unit(オプション)。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "ピアのポート(オプション)。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
#, fuzzy
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
@@ -5375,7 +5399,7 @@ msgstr "内部ルートに使用されるテーブルを上書き"
msgid "Overview"
msgstr "概要"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "既存のファイル\"%s\"を上書きしますか?"
@@ -5510,6 +5534,7 @@ msgstr "パススルー(物理デバイスを単一の MAC ベース VLAN へ
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "パスワード"
@@ -5599,6 +5624,10 @@ msgstr "ピアアドレスがありません"
msgid "Peer device name"
msgstr "ピアのデバイス名"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "ピア"
@@ -5626,7 +5655,7 @@ msgstr "初期化する"
msgid "Permission denied"
msgstr "アクセス許可が拒否されました"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "永続的なキープアライブ"
@@ -5657,7 +5686,7 @@ msgstr "パケット"
msgid "Please enter your username and password."
msgstr "ユーザー名とパスワードを入力してください。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "アップロードするファイルを選択してください。"
@@ -5677,7 +5706,7 @@ msgstr "ポート分離"
msgid "Port status:"
msgstr "ポートステータス:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
#, fuzzy
msgid "Potential negation of: %s"
msgstr "存在しない可能性があります: %s"
@@ -5706,7 +5735,7 @@ msgstr "委任されたプレフィックス(PD)"
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "事前共有鍵"
@@ -5792,7 +5821,9 @@ msgstr "NTPサーバーを有効化"
msgid ""
"Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
"and requests."
-msgstr "このインターフェースで DHCPv6 サーバーを提供し、 DHCPv6 の要請やリクエストに応答します"
+msgstr ""
+"このインターフェースで DHCPv6 サーバーを提供し、 DHCPv6 の要請やリクエストに"
+"応答します"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:883
msgid "Provide new network"
@@ -5802,7 +5833,7 @@ msgstr "新しいネットワークを設定"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "擬似アドホック(ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "公開鍵"
@@ -5829,8 +5860,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr "QMIセルラー"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -6067,7 +6098,7 @@ msgstr "DOCSIS 3などを使用するいくつかのISPで必要です"
msgid "Required. Base64-encoded private key for this interface."
msgstr "このインターフェースに使用するBase64エンコードの秘密鍵(必須)。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr "Base64エンコードのピアの公開鍵(必須)。"
@@ -6198,8 +6229,8 @@ msgstr ""
"複数のIPが利用可能な場合、リクエスト中のサブネットによってホスト名をローカラ"
"イズ"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "パスワードを表示/隠す"
@@ -6207,19 +6238,19 @@ msgstr "パスワードを表示/隠す"
msgid "Reverse path filter"
msgstr "戻り経路フィルター"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "元に戻す"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "変更の取り消し"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr "取り消しのリクエストに失敗しました ステータスコード:<code>%h</code>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "設定を元に戻しています…"
@@ -6242,7 +6273,7 @@ msgstr "ルートの準備"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr "ラウンドロビンポリシー(balance-rr、0)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "許可されたIPのルート"
@@ -6349,7 +6380,7 @@ msgstr "SSTPサーバー"
msgid "SWAP"
msgstr "スワップ"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6360,7 +6391,7 @@ msgid "Save"
msgstr "保存"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "保存&適用"
@@ -6386,11 +6417,11 @@ msgstr "スキャン"
msgid "Scheduled Tasks"
msgstr "スケジュールタスク"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "追加されるセクション"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "削除されるセクション"
@@ -6408,9 +6439,9 @@ msgstr ""
"を選択してください。正しいファームウェアであること、デバイスに適したものであ"
"ることが確かな場合のみ使用してください!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "ファイルを選択…"
@@ -6423,8 +6454,8 @@ msgid ""
"Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
"messages advertising this device as IPv6 router."
msgstr ""
-"このデバイスを IPv6 ルーターとして広告する <abbr title=\"Router Advertisement, ICMPv6 Type "
-"134\">RA</abbr> メッセージを送信します"
+"このデバイスを IPv6 ルーターとして広告する <abbr title=\"Router "
+"Advertisement, ICMPv6 Type 134\">RA</abbr> メッセージを送信します"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:650
msgid "Send ICMP redirects"
@@ -6599,7 +6630,7 @@ msgstr "信号のリフレッシュ レート"
msgid "Signal:"
msgstr "信号:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "サイズ"
@@ -6694,8 +6725,9 @@ msgid ""
"If left unspecified, the device will announce itself as IPv6 DNS server "
"unless the <em>Local IPv6 DNS server</em> option is disabled."
msgstr ""
-"DHCPv6 を通してアナウンスされる IPv6 DNS サーバーアドレスの固定的なリストです。未指定である場合、<em>ローカル IPv6 DNS "
-"サーバー</em>オプションが無効でない限り、デバイスは自身を IPv6 DNS サーバーとしてアナウンスします。"
+"DHCPv6 を通してアナウンスされる IPv6 DNS サーバーアドレスの固定的なリストで"
+"す。未指定である場合、<em>ローカル IPv6 DNS サーバー</em>オプションが無効でな"
+"い限り、デバイスは自身を IPv6 DNS サーバーとしてアナウンスします。"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343
msgid ""
@@ -6985,7 +7017,7 @@ msgstr "開始優先順位"
msgid "Start refresh"
msgstr "更新開始"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "設定の適用を開始しています…"
@@ -7057,6 +7089,10 @@ msgstr "WPS停止"
msgid "Stop refresh"
msgstr "更新停止"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr "厳密なフィルタリング"
@@ -7121,7 +7157,7 @@ msgstr "プロトコルを切り替える"
msgid "Switch to CIDR list notation"
msgstr "CIDRリスト表記へ切り替える"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "シンボリックリンク"
@@ -7158,7 +7194,6 @@ msgstr "システムプロパティ"
msgid "System log buffer size"
msgstr "システムログバッファサイズ"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7212,11 +7247,15 @@ msgstr "ターゲット プラットフォーム"
msgid "Target network"
msgstr "対象ネットワーク"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "停止"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7336,7 +7375,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7366,7 +7405,7 @@ msgstr ""
"非表示の無線ネットワークに接続する場合、正しいSSIDを手動で指定する必要があり"
"ます"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7466,7 +7505,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr "IPv6プレフィックスの長さ(ビット)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7493,6 +7532,10 @@ msgstr "ローカルIPv4ネットマスク"
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr "トンネルが作成されるローカルIPv6アドレス(オプション)。"
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7638,11 +7681,11 @@ msgstr "設定値によりオーバーライドされます。元の値: %s"
msgid "There are no active leases"
msgstr "アクティブなリースはありません"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "適用する変更はありません"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7742,8 +7785,8 @@ msgstr ""
"ca-bundleパッケージがインストールされていないため、このオプションは使用できま"
"せん。"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -8014,7 +8057,7 @@ msgstr "アンマウント"
msgid "Unnamed key"
msgstr "名前がない鍵"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "保存されていない変更"
@@ -8044,7 +8087,7 @@ msgstr "上へ"
msgid "Up Delay"
msgstr "上り遅延"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "アップロード"
@@ -8061,21 +8104,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "アーカイブをアップロード..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "ファイルをアップロード"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "ファイルをアップロード…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "アップロードのリクエストに失敗: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "ファイルをアップロード中…"
@@ -8277,6 +8320,7 @@ msgstr "ユーザー鍵(PEMエンコード)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "ユーザー名"
@@ -8582,7 +8626,7 @@ msgstr "システムログをファイルに書き込む"
msgid "XOR policy (balance-xor, 2)"
msgstr "XORポリシー(balance-xor、2)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8610,7 +8654,7 @@ msgstr ""
"変更は再起動後に適用されます。<br /><strong>警告: \"network\"などの重要なスク"
"リプトを無効にするとデバイスにアクセスできなくなることがあります!</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8777,7 +8821,7 @@ msgstr "全二重"
msgid "half-duplex"
msgstr "半二重"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "エンコードされた値(16進数)"
@@ -8802,11 +8846,11 @@ msgstr "無視"
msgid "input"
msgstr "入力"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "8文字以上63文字以下のキー"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "5文字または13文字のキー"
@@ -8839,12 +8883,12 @@ msgstr "いいえ"
msgid "no link"
msgstr "リンクなし"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "空でない値"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "なし"
@@ -8878,11 +8922,11 @@ msgstr ""
msgid "output"
msgstr "出力"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "正の値(10進数)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "正の整数値"
@@ -8932,10 +8976,11 @@ msgid ""
"<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network "
"access."
msgstr ""
-"uHTTPd は <abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> または <abbr "
-"title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> ネットワークアクセスを提供します。"
+"uHTTPd は <abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> または "
+"<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> ネットワーク"
+"アクセスを提供します。"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "固有の値"
@@ -8953,7 +8998,7 @@ msgstr "不明"
msgid "unlimited"
msgstr "無制限"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8974,175 +9019,175 @@ msgstr "未設定 -または- 作成:"
msgid "untagged"
msgstr "タグなし"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "有効なIPアドレス"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "有効なIPアドレスまたはプレフィックス"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "有効なIPv4 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "有効なIPv4アドレス"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "有効なIPv4アドレスまたはネットワーク"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "有効なIPv4アドレス:ポート"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "有効なIPv4ネットワーク"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "有効なIPv4またはIPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "有効なIPv4プレフィックス値(0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "有効なIPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "有効なIPv6アドレス"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "有効なIPv6アドレスまたはプレフィックス"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "有効なIPv6ホストID"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "有効なIPv6ネットワーク"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "有効なIPv6プレフィックス値(0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "有効なMACアドレス"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "有効なUCI識別子"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "有効なUCI識別子、ホスト名またはIPアドレス"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "有効なアドレス:ポート"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "有効な日付(YYYY-MM-DD)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "有効な10進数の値"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "有効なWEPキー(16進数)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "有効なWPAキー(16進数)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "有効なホスト:ポート"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "有効なホスト名"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "有効なホスト名またはIPアドレス"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "有効な整数値"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "有効なネットワーク(アドレス/ネットマスク表記)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "有効な電話番号(0-9、\"*\"、\"#\"、\"!\"、\".\")"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "有効なポートまたはポート範囲(port1-port2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "有効なポート番号"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "有効な時刻(HH:MM:SS)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "%d文字以上%d文字以下の値"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "%fと%fの間の値"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "%f以上の値"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "%f以下の値"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "%d文字の値"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "%d文字以上の値"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "最大%d文字の値"
diff --git a/modules/luci-base/po/ko/base.po b/modules/luci-base/po/ko/base.po
index ad281cdce2..ee532e5081 100644
--- a/modules/luci-base/po/ko/base.po
+++ b/modules/luci-base/po/ko/base.po
@@ -22,7 +22,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d 잘못된 부분(들)"
@@ -58,19 +58,19 @@ msgid "-- Additional Field --"
msgstr "-- 추가 설정 --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- 선택하세요 --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- 사용자 지정 --"
@@ -217,7 +217,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "이미 같은 이름의 디렉터리가 존재합니다."
@@ -225,7 +225,7 @@ msgstr "이미 같은 이름의 디렉터리가 존재합니다."
msgid "A new login is required since the authentication session expired."
msgstr "인증 세션이 만료되어 새 로그인이 필요합니다."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -405,11 +405,11 @@ msgstr "적응형 부하 분산 (balance-alb, 6)"
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "적응형 송신 부하 분산 (balance-tlb, 5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -633,7 +633,7 @@ msgstr "시스템 기능 프로빙 허용"
msgid "Allow the <em>root</em> user to login with password"
msgstr "암호를 이용한 <em>root</em> 사용자 접근을 허용합니다"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "허용된 IP"
@@ -791,16 +791,16 @@ msgstr ""
msgid "Apply backup?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr ""
@@ -856,6 +856,7 @@ msgid "Authoritative"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "인증이 필요합니다"
@@ -1071,8 +1072,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr ""
@@ -1102,8 +1103,8 @@ msgstr "캐시 된 양"
msgid "Call failed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1169,11 +1170,11 @@ msgstr ""
msgid "Chain"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "변경 사항"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr ""
@@ -1276,7 +1277,7 @@ msgstr ""
msgid "Client ID to send when requesting DHCP"
msgstr "DHCP 요청시 전송할 Client ID"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1338,16 +1339,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "설정"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr ""
@@ -1445,7 +1446,7 @@ msgstr ""
msgid "Continue"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1682,11 +1683,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1698,7 +1699,7 @@ msgstr "삭제"
msgid "Delete key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr ""
@@ -1712,11 +1713,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "설명"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr ""
@@ -1789,7 +1790,7 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr ""
@@ -1810,7 +1811,7 @@ msgstr "진단"
msgid "Dial number"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr ""
@@ -1884,10 +1885,14 @@ msgstr ""
msgid "Disconnection attempt failed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1969,7 +1974,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -1981,7 +1986,7 @@ msgstr ""
msgid "Do you really want to erase all settings?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr ""
@@ -2023,7 +2028,7 @@ msgstr "mtdblock 다운로드"
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr ""
@@ -2072,9 +2077,9 @@ msgstr ""
msgid "EAP-Method"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2119,6 +2124,10 @@ msgstr ""
msgid "Enable"
msgstr "활성화"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2317,11 +2326,11 @@ msgstr ""
msgid "Encryption"
msgstr "암호화"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2422,7 +2431,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2500,7 +2509,7 @@ msgstr ""
msgid "Failed to change the system password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2508,7 +2517,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr ""
@@ -2518,7 +2527,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr ""
@@ -2532,7 +2541,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr "local <abbr title=\"Domain Name System\">DNS</abbr> 파일"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr ""
@@ -2639,7 +2648,7 @@ msgstr "플래시 작업"
msgid "Flashing…"
msgstr "플래시 중…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2821,7 +2830,7 @@ msgstr ""
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2833,7 +2842,7 @@ msgstr ""
msgid "Generate archive"
msgstr "아카이브 생성"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2849,21 +2858,20 @@ msgstr ""
msgid "Global network options"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "암호 설정 하기"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3017,7 +3025,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr> 숨기기"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3203,7 +3211,7 @@ msgstr ""
msgid "IPv4 netmask"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3304,7 +3312,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3375,7 +3383,7 @@ msgstr ""
msgid "Identity"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3410,7 +3418,7 @@ msgid ""
"device node"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3716,6 +3724,8 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr ""
@@ -3733,7 +3743,7 @@ msgid ""
"flash memory, please verify the image file!"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3907,7 +3917,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr ""
@@ -4018,17 +4028,19 @@ msgstr "부하"
msgid "Load Average"
msgstr "부하 평균"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr ""
@@ -4134,6 +4146,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "로그인"
@@ -4488,7 +4501,7 @@ msgstr ""
msgid "More Characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr ""
@@ -4592,8 +4605,8 @@ msgstr ""
msgid "NTP server candidates"
msgstr "NTP 서버 목록"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4689,7 +4702,7 @@ msgstr ""
msgid "Next »"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4719,7 +4732,6 @@ msgstr ""
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4750,7 +4762,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr ""
@@ -4790,7 +4802,7 @@ msgstr ""
msgid "No negative cache"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4955,7 +4967,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr ""
@@ -5019,20 +5031,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "동작 주파수"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "변경된 option"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "삭제된 option"
@@ -5058,17 +5070,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr ""
@@ -5076,13 +5088,13 @@ msgstr ""
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5093,11 +5105,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5240,7 +5252,7 @@ msgstr ""
msgid "Overview"
msgstr "개요"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5375,6 +5387,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "암호"
@@ -5464,6 +5477,10 @@ msgstr ""
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr ""
@@ -5491,7 +5508,7 @@ msgstr "초기화 하기"
msgid "Permission denied"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
@@ -5522,7 +5539,7 @@ msgstr "Pkts."
msgid "Please enter your username and password."
msgstr "사용자이름과 암호를 입력해 주세요."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr ""
@@ -5542,7 +5559,7 @@ msgstr ""
msgid "Port status:"
msgstr "포트 상태:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5570,7 +5587,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr ""
@@ -5662,7 +5679,7 @@ msgstr "새로운 네트워크를 추가합니다"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "공개 키"
@@ -5687,8 +5704,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5921,7 +5938,7 @@ msgstr "특정 ISP 들에 요구됨. 예: Charter (DOCSIS 3 기반)"
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -6049,8 +6066,8 @@ msgid ""
"received if multiple IPs are available."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "암호 보이기/숨기기"
@@ -6058,19 +6075,19 @@ msgstr "암호 보이기/숨기기"
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "변경 취소"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "변경사항 되돌리기"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "설정 되돌리는 중…"
@@ -6093,7 +6110,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr "라운드 로빈 정책 (balance-rr, 0)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6203,7 +6220,7 @@ msgstr "SSTP 서버"
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6214,7 +6231,7 @@ msgid "Save"
msgstr "저장"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "저장 & 적용"
@@ -6240,11 +6257,11 @@ msgstr "스캔"
msgid "Scheduled Tasks"
msgstr "작업 관리"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "추가된 section"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "섹션 삭제됨"
@@ -6261,9 +6278,9 @@ msgstr ""
"이미지 포맷 확인에 실패해도 이미지를 플래시 하려면 \"강제 업그레이드\"를 선택"
"하세요. 펌웨어에 문제가 없고 기기에 맞다는 확신이 있을 때만 사용하세요!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "파일 선택…"
@@ -6445,7 +6462,7 @@ msgstr ""
msgid "Signal:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "크기"
@@ -6783,7 +6800,7 @@ msgstr "시작 우선순위"
msgid "Start refresh"
msgstr "새로고침 시작"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "구성 적용 시작하는 중…"
@@ -6855,6 +6872,10 @@ msgstr ""
msgid "Stop refresh"
msgstr "새로고침 정지"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -6919,7 +6940,7 @@ msgstr "프로토콜 변경"
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "심볼릭 링크"
@@ -6956,7 +6977,6 @@ msgstr "시스템 정보"
msgid "System log buffer size"
msgstr "시스템 로그 버퍼 크기"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7010,11 +7030,15 @@ msgstr ""
msgid "Target network"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "종료"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7129,7 +7153,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7157,7 +7181,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7252,7 +7276,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7281,6 +7305,10 @@ msgstr "로컬 IPv4 넷마스크"
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr "터널이 생성되는 로컬 IPv6 주소 (선택사항)."
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7425,11 +7453,11 @@ msgstr ""
msgid "There are no active leases"
msgstr "활성화 되어 있는 임대 없음"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "변경된 사항이 없습니다"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7517,8 +7545,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7789,7 +7817,7 @@ msgstr ""
msgid "Unnamed key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "적용 안된 변경 사항"
@@ -7819,7 +7847,7 @@ msgstr ""
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr ""
@@ -7836,21 +7864,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "아카이브 업로드..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr ""
@@ -8044,6 +8072,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "사용자이름"
@@ -8335,7 +8364,7 @@ msgstr "시스템 로그 출력 파일 경로"
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8362,7 +8391,7 @@ msgstr ""
"와 같은 중요 init script 를 비활성화 할 경우, 장치에 접속을 못하실 수 있습니"
"다!</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8525,7 +8554,7 @@ msgstr ""
msgid "half-duplex"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr ""
@@ -8550,11 +8579,11 @@ msgstr ""
msgid "input"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr ""
@@ -8587,12 +8616,12 @@ msgstr ""
msgid "no link"
msgstr "link 없음"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "없음"
@@ -8627,11 +8656,11 @@ msgstr ""
msgid "output"
msgstr "출력"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "양수인 10진수 값"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "양수 값"
@@ -8683,7 +8712,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "유니크 값"
@@ -8701,7 +8730,7 @@ msgstr "알 수 없는"
msgid "unlimited"
msgstr "무제한"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8722,178 +8751,178 @@ msgstr "unspecified -혹은- create:"
msgid "untagged"
msgstr "태그 되지 않음"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "유효한 IP 주소"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "유효한 IP 주소 또는 접두사"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "유효한 IPv4 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "유효한 IPv4 주소"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "유효한 IPv4 주소 또는, 네트워크"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
#, fuzzy
msgid "valid IPv4 address:port"
msgstr "유효한 IPv4 address:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "유효한 IPv4 네트워크"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "유효한 IPv4 또는 IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "유효한 IPv4 접두사 값 (0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "유효한 IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "유효한 IPv6 주소"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "유효한 IPv6 주소 또한, 접두사"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
#, fuzzy
msgid "valid IPv6 host id"
msgstr "유효한 IPv6 호스트 ID"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "유효한 IPv6 네트워크"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "유효한 IPv6 접두사 값 (0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "유효한 MAC 주소"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "유효한 UCI 식별자"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
#, fuzzy
msgid "valid UCI identifier, hostname or IP address range"
msgstr "유효한 UCI 식별자, 호스트이름 또는 IP 주소"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "유효한 address:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "유효한 일자 (YYYY-MM-DD)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "유효한 16진수 값"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "유효한 16진수 WEP 키"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "유효한 16진수 WPA 키"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "유효한 host:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "유효한 호스트이름"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr ""
diff --git a/modules/luci-base/po/mr/base.po b/modules/luci-base/po/mr/base.po
index 81f81d056b..9cdb95e4ab 100644
--- a/modules/luci-base/po/mr/base.po
+++ b/modules/luci-base/po/mr/base.po
@@ -18,7 +18,7 @@ msgstr ""
msgid "%d Bit"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr ""
@@ -54,19 +54,19 @@ msgid "-- Additional Field --"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr ""
@@ -213,7 +213,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr ""
@@ -221,7 +221,7 @@ msgstr ""
msgid "A new login is required since the authentication session expired."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -395,11 +395,11 @@ msgstr ""
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -621,7 +621,7 @@ msgstr ""
msgid "Allow the <em>root</em> user to login with password"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr ""
@@ -777,16 +777,16 @@ msgstr ""
msgid "Apply backup?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr ""
@@ -841,6 +841,7 @@ msgid "Authoritative"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr ""
@@ -1053,8 +1054,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr ""
@@ -1084,8 +1085,8 @@ msgstr ""
msgid "Call failed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1151,11 +1152,11 @@ msgstr ""
msgid "Chain"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr ""
@@ -1248,7 +1249,7 @@ msgstr ""
msgid "Client ID to send when requesting DHCP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1310,16 +1311,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "कॉन्फिगरेशन"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr ""
@@ -1417,7 +1418,7 @@ msgstr ""
msgid "Continue"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1647,11 +1648,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1663,7 +1664,7 @@ msgstr "हटवा"
msgid "Delete key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr ""
@@ -1677,11 +1678,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "वर्णन"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr ""
@@ -1754,7 +1755,7 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr ""
@@ -1775,7 +1776,7 @@ msgstr ""
msgid "Dial number"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr ""
@@ -1847,10 +1848,14 @@ msgstr ""
msgid "Disconnection attempt failed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1929,7 +1934,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -1941,7 +1946,7 @@ msgstr ""
msgid "Do you really want to erase all settings?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr ""
@@ -1983,7 +1988,7 @@ msgstr ""
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr ""
@@ -2028,9 +2033,9 @@ msgstr ""
msgid "EAP-Method"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2075,6 +2080,10 @@ msgstr ""
msgid "Enable"
msgstr "सक्षम करा"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2273,11 +2282,11 @@ msgstr ""
msgid "Encryption"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2378,7 +2387,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2456,7 +2465,7 @@ msgstr ""
msgid "Failed to change the system password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2464,7 +2473,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr ""
@@ -2474,7 +2483,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr ""
@@ -2486,7 +2495,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr ""
@@ -2593,7 +2602,7 @@ msgstr ""
msgid "Flashing…"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2775,7 +2784,7 @@ msgstr ""
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2787,7 +2796,7 @@ msgstr ""
msgid "Generate archive"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2803,21 +2812,20 @@ msgstr ""
msgid "Global network options"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -2970,7 +2978,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3155,7 +3163,7 @@ msgstr ""
msgid "IPv4 netmask"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3256,7 +3264,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3326,7 +3334,7 @@ msgstr ""
msgid "Identity"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3361,7 +3369,7 @@ msgid ""
"device node"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3667,6 +3675,8 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr ""
@@ -3684,7 +3694,7 @@ msgid ""
"flash memory, please verify the image file!"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3857,7 +3867,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr ""
@@ -3967,17 +3977,19 @@ msgstr ""
msgid "Load Average"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr ""
@@ -4083,6 +4095,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr ""
@@ -4433,7 +4446,7 @@ msgstr ""
msgid "More Characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr ""
@@ -4537,8 +4550,8 @@ msgstr ""
msgid "NTP server candidates"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4634,7 +4647,7 @@ msgstr ""
msgid "Next »"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4664,7 +4677,6 @@ msgstr ""
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4695,7 +4707,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr ""
@@ -4735,7 +4747,7 @@ msgstr ""
msgid "No negative cache"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4900,7 +4912,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr ""
@@ -4964,20 +4976,20 @@ msgstr ""
msgid "Operating frequency"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr ""
@@ -5003,17 +5015,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr ""
@@ -5021,13 +5033,13 @@ msgstr ""
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5038,11 +5050,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5183,7 +5195,7 @@ msgstr ""
msgid "Overview"
msgstr "आढावा"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5318,6 +5330,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "संकेतशब्द"
@@ -5407,6 +5420,10 @@ msgstr ""
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr ""
@@ -5434,7 +5451,7 @@ msgstr ""
msgid "Permission denied"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
@@ -5465,7 +5482,7 @@ msgstr ""
msgid "Please enter your username and password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr ""
@@ -5485,7 +5502,7 @@ msgstr ""
msgid "Port status:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5513,7 +5530,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr ""
@@ -5604,7 +5621,7 @@ msgstr ""
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr ""
@@ -5625,8 +5642,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5857,7 +5874,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -5985,8 +6002,8 @@ msgid ""
"received if multiple IPs are available."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr ""
@@ -5994,19 +6011,19 @@ msgstr ""
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr ""
@@ -6029,7 +6046,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6134,7 +6151,7 @@ msgstr ""
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6145,7 +6162,7 @@ msgid "Save"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr ""
@@ -6171,11 +6188,11 @@ msgstr ""
msgid "Scheduled Tasks"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr ""
@@ -6190,9 +6207,9 @@ msgid ""
"your device!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr ""
@@ -6374,7 +6391,7 @@ msgstr ""
msgid "Signal:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr ""
@@ -6710,7 +6727,7 @@ msgstr ""
msgid "Start refresh"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr ""
@@ -6779,6 +6796,10 @@ msgstr ""
msgid "Stop refresh"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -6841,7 +6862,7 @@ msgstr ""
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr ""
@@ -6878,7 +6899,6 @@ msgstr ""
msgid "System log buffer size"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -6932,11 +6952,15 @@ msgstr ""
msgid "Target network"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7051,7 +7075,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7077,7 +7101,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7165,7 +7189,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7192,6 +7216,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7318,11 +7346,11 @@ msgstr ""
msgid "There are no active leases"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7402,8 +7430,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7671,7 +7699,7 @@ msgstr ""
msgid "Unnamed key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr ""
@@ -7701,7 +7729,7 @@ msgstr ""
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr ""
@@ -7716,21 +7744,21 @@ msgstr ""
msgid "Upload archive..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr ""
@@ -7917,6 +7945,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "वापरकर्तानाव"
@@ -8208,7 +8237,7 @@ msgstr ""
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8231,7 +8260,7 @@ msgid ""
"scripts like \"network\", your device might become inaccessible!</strong>"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8394,7 +8423,7 @@ msgstr ""
msgid "half-duplex"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr ""
@@ -8419,11 +8448,11 @@ msgstr ""
msgid "input"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr ""
@@ -8456,12 +8485,12 @@ msgstr ""
msgid "no link"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr ""
@@ -8495,11 +8524,11 @@ msgstr ""
msgid "output"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr ""
@@ -8550,7 +8579,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr ""
@@ -8568,7 +8597,7 @@ msgstr ""
msgid "unlimited"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8589,175 +8618,175 @@ msgstr ""
msgid "untagged"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr ""
diff --git a/modules/luci-base/po/ms/base.po b/modules/luci-base/po/ms/base.po
index 164d5ade77..63e310b4dc 100644
--- a/modules/luci-base/po/ms/base.po
+++ b/modules/luci-base/po/ms/base.po
@@ -21,7 +21,7 @@ msgstr ""
msgid "%d Bit"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr ""
@@ -57,19 +57,19 @@ msgid "-- Additional Field --"
msgstr "-- Gelanggang Tambahan --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Sila pilih --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- memperibadi --"
@@ -217,7 +217,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "A new login is required since the authentication session expired."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -399,11 +399,11 @@ msgstr ""
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -625,7 +625,7 @@ msgstr ""
msgid "Allow the <em>root</em> user to login with password"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr ""
@@ -781,16 +781,16 @@ msgstr ""
msgid "Apply backup?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr ""
@@ -845,6 +845,7 @@ msgid "Authoritative"
msgstr "Pengesahan"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Otorisasi Diperlukan"
@@ -1057,8 +1058,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr ""
@@ -1088,8 +1089,8 @@ msgstr ""
msgid "Call failed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1155,11 +1156,11 @@ msgstr ""
msgid "Chain"
msgstr "Rantai"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Laman"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr ""
@@ -1252,7 +1253,7 @@ msgstr "Pelanggan"
msgid "Client ID to send when requesting DHCP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1314,16 +1315,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Konfigurasi"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr ""
@@ -1421,7 +1422,7 @@ msgstr ""
msgid "Continue"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1651,11 +1652,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1667,7 +1668,7 @@ msgstr "Padam"
msgid "Delete key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr ""
@@ -1681,11 +1682,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Keterangan"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr ""
@@ -1758,7 +1759,7 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr ""
@@ -1779,7 +1780,7 @@ msgstr ""
msgid "Dial number"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr ""
@@ -1851,10 +1852,14 @@ msgstr ""
msgid "Disconnection attempt failed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1938,7 +1943,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -1950,7 +1955,7 @@ msgstr ""
msgid "Do you really want to erase all settings?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr ""
@@ -1992,7 +1997,7 @@ msgstr ""
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr ""
@@ -2038,9 +2043,9 @@ msgstr ""
msgid "EAP-Method"
msgstr "EAP-Kaedah"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2085,6 +2090,10 @@ msgstr ""
msgid "Enable"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2283,11 +2292,11 @@ msgstr ""
msgid "Encryption"
msgstr "Enkripsi"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2388,7 +2397,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2466,7 +2475,7 @@ msgstr ""
msgid "Failed to change the system password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2474,7 +2483,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr ""
@@ -2484,7 +2493,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr ""
@@ -2496,7 +2505,7 @@ msgstr "fail dimana DHCP-sewa akan disimpan"
msgid "File with upstream resolvers."
msgstr "Fail DNS tempatan"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr ""
@@ -2603,7 +2612,7 @@ msgstr ""
msgid "Flashing…"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2785,7 +2794,7 @@ msgstr ""
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2797,7 +2806,7 @@ msgstr ""
msgid "Generate archive"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2813,21 +2822,20 @@ msgstr ""
msgid "Global network options"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -2982,7 +2990,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "Menyembunyikan ESSID"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3167,7 +3175,7 @@ msgstr ""
msgid "IPv4 netmask"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3268,7 +3276,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3338,7 +3346,7 @@ msgstr ""
msgid "Identity"
msgstr "Identiti"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3373,7 +3381,7 @@ msgid ""
"device node"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3684,6 +3692,8 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Username dan / atau password tak sah! Sila cuba lagi."
@@ -3704,7 +3714,7 @@ msgstr ""
"Tampak bahawa anda cuba untuk flash fail gambar yang tidak sesuai dengan "
"memori flash, sila buat pengesahan pada fail gambar!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3878,7 +3888,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr ""
@@ -3988,17 +3998,19 @@ msgstr "Load"
msgid "Load Average"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr ""
@@ -4104,6 +4116,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Login"
@@ -4454,7 +4467,7 @@ msgstr "Monitor"
msgid "More Characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr ""
@@ -4560,8 +4573,8 @@ msgstr ""
msgid "NTP server candidates"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4657,7 +4670,7 @@ msgstr ""
msgid "Next »"
msgstr "Kemudian »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4687,7 +4700,6 @@ msgstr ""
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4718,7 +4730,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr ""
@@ -4758,7 +4770,7 @@ msgstr ""
msgid "No negative cache"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4923,7 +4935,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr ""
@@ -4987,20 +4999,20 @@ msgstr ""
msgid "Operating frequency"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr ""
@@ -5026,17 +5038,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr ""
@@ -5044,13 +5056,13 @@ msgstr ""
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5061,11 +5073,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5206,7 +5218,7 @@ msgstr ""
msgid "Overview"
msgstr "Keseluruhan"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5341,6 +5353,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Kata laluan"
@@ -5430,6 +5443,10 @@ msgstr ""
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr ""
@@ -5457,7 +5474,7 @@ msgstr ""
msgid "Permission denied"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
@@ -5488,7 +5505,7 @@ msgstr "Pkts."
msgid "Please enter your username and password."
msgstr "Sila masukkan username dan kata laluan anda."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr ""
@@ -5508,7 +5525,7 @@ msgstr ""
msgid "Port status:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5536,7 +5553,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr ""
@@ -5627,7 +5644,7 @@ msgstr ""
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Pseudo Ad-Hoc (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr ""
@@ -5648,8 +5665,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5881,7 +5898,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -6009,8 +6026,8 @@ msgid ""
"received if multiple IPs are available."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr ""
@@ -6018,19 +6035,19 @@ msgstr ""
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Kembali"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr ""
@@ -6053,7 +6070,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6160,7 +6177,7 @@ msgstr ""
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6171,7 +6188,7 @@ msgid "Save"
msgstr "Simpan"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Simpan & Melaksanakan"
@@ -6197,11 +6214,11 @@ msgstr "Scan"
msgid "Scheduled Tasks"
msgstr "Tugas Jadual"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr ""
@@ -6216,9 +6233,9 @@ msgid ""
"your device!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr ""
@@ -6400,7 +6417,7 @@ msgstr ""
msgid "Signal:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Saiz"
@@ -6736,7 +6753,7 @@ msgstr ""
msgid "Start refresh"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr ""
@@ -6805,6 +6822,10 @@ msgstr ""
msgid "Stop refresh"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -6867,7 +6888,7 @@ msgstr ""
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr ""
@@ -6904,7 +6925,6 @@ msgstr ""
msgid "System log buffer size"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -6959,11 +6979,15 @@ msgstr ""
msgid "Target network"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Menamatkan"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7078,7 +7102,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7106,7 +7130,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7194,7 +7218,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7221,6 +7245,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7354,11 +7382,11 @@ msgstr ""
msgid "There are no active leases"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7442,8 +7470,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7711,7 +7739,7 @@ msgstr ""
msgid "Unnamed key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Perubahan yang belum disimpan"
@@ -7741,7 +7769,7 @@ msgstr ""
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr ""
@@ -7756,21 +7784,21 @@ msgstr ""
msgid "Upload archive..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr ""
@@ -7957,6 +7985,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Username"
@@ -8250,7 +8279,7 @@ msgstr ""
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8273,7 +8302,7 @@ msgid ""
"scripts like \"network\", your device might become inaccessible!</strong>"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8436,7 +8465,7 @@ msgstr ""
msgid "half-duplex"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr ""
@@ -8461,11 +8490,11 @@ msgstr ""
msgid "input"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr ""
@@ -8498,12 +8527,12 @@ msgstr ""
msgid "no link"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "tidak ada"
@@ -8537,11 +8566,11 @@ msgstr ""
msgid "output"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr ""
@@ -8592,7 +8621,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr ""
@@ -8610,7 +8639,7 @@ msgstr ""
msgid "unlimited"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8631,175 +8660,175 @@ msgstr "Tidak dirinci -atau- buat:"
msgid "untagged"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr ""
diff --git a/modules/luci-base/po/nb_NO/base.po b/modules/luci-base/po/nb_NO/base.po
index dfab0984aa..b941e0a6ab 100644
--- a/modules/luci-base/po/nb_NO/base.po
+++ b/modules/luci-base/po/nb_NO/base.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2021-11-04 08:51+0000\n"
+"PO-Revision-Date: 2021-11-22 19:52+0000\n"
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
"luci/nb_NO/>\n"
@@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.9-dev\n"
+"X-Generator: Weblate 4.10-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
msgid "%.1f dB"
@@ -16,9 +16,9 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:117
msgid "%d Bit"
-msgstr ""
+msgstr "%d bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d ugyldig(e) felt(er)"
@@ -54,19 +54,19 @@ msgid "-- Additional Field --"
msgstr "-- Tilleggs Felt --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Vennligst velg --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- egendefinert --"
@@ -159,11 +159,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1698
msgid "802.11w maximum timeout"
-msgstr ""
+msgstr "Maksimalt tidsavbrudd for 802.11w"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1705
msgid "802.11w retry timeout"
-msgstr ""
+msgstr "Tidsavbrudd for nytt forsøk for 802.11w"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1020
msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
@@ -187,41 +187,41 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Navn"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897
msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
-msgstr ""
+msgstr "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-mellomtjener"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:791
msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
-msgstr ""
+msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-flagg"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
-msgstr ""
+msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-hoppgrense"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
-msgstr ""
+msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-levetid"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
-msgstr ""
+msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-MTU"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:763
msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
-msgstr ""
+msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-tjeneste"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:370
msgid "A configuration for the device \"%s\" already exists"
-msgstr ""
+msgstr "Et oppsett for enheten «%s» finnes allerede"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
-msgstr ""
+msgstr "En mappe med samme navn finnes allerede."
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2671
msgid "A new login is required since the authentication session expired."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -403,11 +403,11 @@ msgstr ""
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -569,13 +569,13 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:426
msgid "All servers"
-msgstr ""
+msgstr "Alle tjenere"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378
msgid ""
"Allocate IP addresses sequentially, starting from the lowest available "
"address."
-msgstr ""
+msgstr "Tildel IP-adresser sekvensielt, fra lavest tilgjengelige adresse."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377
msgid "Allocate IPs sequentially"
@@ -587,7 +587,7 @@ msgstr "Tillat <abbr title=\"Secure Shell\">SSH</abbr> passord godkjenning"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1185
msgid "Allow AP mode to disconnect STAs based on low ACK condition"
-msgstr ""
+msgstr "Tillat AP-modus å koble fra STA-er basert på lav ACK-tilstand"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1089
msgid "Allow all except listed"
@@ -595,11 +595,11 @@ msgstr "Tillat alle unntatt oppførte"
#: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
msgid "Allow full UCI access for legacy applications"
-msgstr ""
+msgstr "Tillat full UCI-tilgang for foreldede programmer"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:944
msgid "Allow legacy 802.11b rates"
-msgstr ""
+msgstr "Tillat foreldede 802.11b-hastigheter"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1088
msgid "Allow listed only"
@@ -611,7 +611,7 @@ msgstr "Tillat lokalvert"
#: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:179
msgid "Allow rebooting the device"
-msgstr ""
+msgstr "Tillat omstart av enheten"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
msgid "Allow remote hosts to connect to local SSH forwarded ports"
@@ -623,49 +623,55 @@ msgstr "Tillat root pålogginger med passord"
#: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
msgid "Allow system feature probing"
-msgstr ""
+msgstr "Tillat sondering av systemfunksjoner"
#: 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 "Tillat bruker <em>root</em> å logge inn med passord"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "Tillatte IP-er"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:708
msgid "Always"
-msgstr ""
+msgstr "Alltid"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:6
+#, fuzzy
msgid "Always off (kernel: none)"
-msgstr ""
+msgstr "Alltid av (kjerne: ingen)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:5
+#, fuzzy
msgid "Always on (kernel: default-on)"
-msgstr ""
+msgstr "Alltid på (kjerne: forvalgt på)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537
msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux."
msgstr ""
+"Alltid send DPCP-innstillinger. Trengs noen ganger med f.eks. PXELinux."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:971
msgid ""
"Always use 40MHz channels even if the secondary channel overlaps. Using this "
"option does not comply with IEEE 802.11n-2009!"
msgstr ""
+"Alltid bruk 40 MHz-kanaler selv om sekundær kanal overlapper. Bruk av dette "
+"valget overholder ikke IEEE 802.11n-2009!"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
+#, fuzzy
msgid "Amount of Duplicate Address Detection probes to send"
-msgstr ""
+msgstr "Mengde dupliserte adresseoppdagelsesprober å sende"
#: modules/luci-base/htdocs/luci-static/resources/form.js:603
msgid "An error occurred while saving the form:"
-msgstr ""
+msgstr "Kunne ikke lagre skjemaet:"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
msgid "An optional, short description for this device"
-msgstr ""
+msgstr "Valgfri kort beskrivelse av denne enheten"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1464
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20
@@ -752,11 +758,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
msgid "Announced DNS domains"
-msgstr ""
+msgstr "Kunngjorte DNS-domener"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:878
msgid "Announced IPv6 DNS servers"
-msgstr ""
+msgstr "Kunngjorte IPv6-DNS-tjenere"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1669
msgid "Anonymous Identity"
@@ -764,11 +770,12 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
msgid "Anonymous Mount"
-msgstr ""
+msgstr "Anonym montering"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
+#, fuzzy
msgid "Anonymous Swap"
-msgstr ""
+msgstr "Anonym sidevekslingsfil"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
@@ -785,16 +792,16 @@ msgstr ""
msgid "Apply backup?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr ""
@@ -803,8 +810,9 @@ msgid "Architecture"
msgstr "Arkitektur"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:155
+#, fuzzy
msgid "Arp-scan"
-msgstr ""
+msgstr "ARP-skanning"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
msgid ""
@@ -849,6 +857,7 @@ msgid "Authoritative"
msgstr "Autoritativ"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Autorisasjon er nødvendig"
@@ -862,16 +871,16 @@ msgstr "Autorisasjon er nødvendig"
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
msgid "Automatic"
-msgstr ""
+msgstr "Automatisk"
#: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
msgid "Automatic Homenet (HNCP)"
-msgstr ""
+msgstr "Automatisk Homenet-protokoll (HNCP)"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
msgid "Automatically check filesystem for errors before mounting"
-msgstr ""
+msgstr "Sjekk filsystem automatisk før montering"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:956
msgid ""
@@ -889,11 +898,11 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
msgid "Automount Filesystem"
-msgstr ""
+msgstr "Automatisk montering av filsystem"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
msgid "Automount Swap"
-msgstr ""
+msgstr "Automatisk montering av sidevekslingsfil"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
msgid "Available"
@@ -962,7 +971,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:377
msgid "Base device"
-msgstr ""
+msgstr "Baseenhet"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:974
msgid "Beacon Interval"
@@ -992,7 +1001,7 @@ msgstr ""
#: 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 "Forbindelsesgrensesnitt"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
@@ -1013,7 +1022,7 @@ msgstr "Bitrate"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:201
msgid "Bonding Policy"
-msgstr ""
+msgstr "Forbindelsespraksis"
#: modules/luci-base/htdocs/luci-static/resources/network.js:3001
#: modules/luci-compat/luasrc/model/network.lua:1421
@@ -1023,7 +1032,7 @@ msgstr "Bro"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:437
msgctxt "MACVLAN mode"
msgid "Bridge (Support direct communication between MAC VLANs)"
-msgstr ""
+msgstr "Bro (støtter direkte kommunikasjon mellom forskjellige MAC-VLAN)"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:339
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:481
@@ -1033,7 +1042,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:344
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1387
msgid "Bridge device"
-msgstr ""
+msgstr "Broenhet"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:480
@@ -1064,8 +1073,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr ""
@@ -1095,8 +1104,8 @@ msgstr ""
msgid "Call failed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1163,11 +1172,11 @@ msgstr ""
msgid "Chain"
msgstr "Kjede"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Endringer"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr ""
@@ -1195,7 +1204,7 @@ msgstr "Kanalbredde"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
msgid "Check filesystems before mount"
-msgstr ""
+msgstr "Sjekk filsystemer før montering"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2002
msgid "Check this option to delete the existing networks from this radio."
@@ -1203,16 +1212,17 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
msgid "Checking archive…"
-msgstr ""
+msgstr "Sjekker arkiv …"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
+#, fuzzy
msgid "Checking image…"
-msgstr ""
+msgstr "Sjekker avtrykk …"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:427
msgid "Choose mtdblock"
-msgstr ""
+msgstr "Velg mtdblock"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2030
@@ -1241,7 +1251,7 @@ msgstr "Krypteringsmetode"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
msgid "Cisco UDP encapsulation"
-msgstr ""
+msgstr "Cisco-UDP-innpakking"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:391
msgid ""
@@ -1256,6 +1266,8 @@ msgid ""
"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
"FEATURE IS FOR PROFESSIONALS! )"
msgstr ""
+"Klikk «Lagre mtdblock» for å laste ned angitt mtdblock-fil. (Merk: Denne "
+"funksjonen er for proffer!)"
#: modules/luci-base/htdocs/luci-static/resources/network.js:3873
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:992
@@ -1268,7 +1280,7 @@ msgstr "Klient"
msgid "Client ID to send when requesting DHCP"
msgstr "Klient ID som sendes ved DHCP spørring"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1332,18 +1344,18 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Oppsett"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
-msgstr ""
+msgstr "Oppsettsendringer har blitt tilbakestilt."
#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
@@ -1411,7 +1423,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
msgid "Connection lost"
-msgstr ""
+msgstr "Forbindelsen ble brutt"
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:136
msgid "Connections"
@@ -1429,7 +1441,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:368
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
msgid "Contents have been saved."
-msgstr ""
+msgstr "Innholdet har blitt lagret."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:399
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:433
@@ -1437,9 +1449,9 @@ 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:269
msgid "Continue"
-msgstr ""
+msgstr "Fortsett"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1465,7 +1477,7 @@ msgstr "Opprett/Tildel brannmur sone"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1154
msgid "Create interface"
-msgstr ""
+msgstr "Opprett grensesnitt"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:190
msgid "Critical"
@@ -1477,7 +1489,7 @@ msgstr "Cron logg nivå"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:591
msgid "Current power"
-msgstr ""
+msgstr "Nåværende sendeeffekt"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:572
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:574
@@ -1507,24 +1519,25 @@ msgstr ""
"abbr>s om mulig."
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
+#, fuzzy
msgid "DAD transmits"
-msgstr ""
+msgstr "DAD-sender"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1426
msgid "DAE-Client"
-msgstr ""
+msgstr "DAE-klient"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431
msgid "DAE-Port"
-msgstr ""
+msgstr "DAE-port"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1436
msgid "DAE-Secret"
-msgstr ""
+msgstr "DAE-tjener"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524
msgid "DHCP Options"
-msgstr ""
+msgstr "DHCP-innstillinger"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:483
msgid "DHCP Server"
@@ -1584,7 +1597,7 @@ msgstr "DNS-vekting"
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
msgid "DNS-Label / FQDN"
-msgstr ""
+msgstr "DNS-etikett/FQDN"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:396
msgid "DNSSEC"
@@ -1596,7 +1609,7 @@ msgstr ""
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
msgid "DPD Idle Timeout"
-msgstr ""
+msgstr "Lediggangstidsavbrudd for DPD"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
msgid "DS-Lite AFTR address"
@@ -1609,7 +1622,7 @@ msgstr "DSL"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14
msgid "DSL Status"
-msgstr ""
+msgstr "DSL-status"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1494
msgid "DSL line mode"
@@ -1617,7 +1630,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1161
msgid "DTIM Interval"
-msgstr ""
+msgstr "DTIM-intervall"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:699
@@ -1627,7 +1640,7 @@ msgstr "DUID"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
msgid "Data Rate"
-msgstr ""
+msgstr "Datahastighet"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:196
@@ -1642,7 +1655,7 @@ msgstr "Standard %d"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:774
msgid "Default router"
-msgstr ""
+msgstr "Forvalgt ruter"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:12
msgid "Default state"
@@ -1673,11 +1686,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1689,9 +1702,9 @@ msgstr "Slett"
msgid "Delete key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
-msgstr ""
+msgstr "Slettingsforespørsel mislyktes: %s"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:905
msgid "Delete this network"
@@ -1703,13 +1716,13 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Beskrivelse"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
-msgstr ""
+msgstr "Fravelg"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:235
msgid "Design"
@@ -1727,12 +1740,12 @@ msgstr "Destinasjon"
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
msgid "Destination port"
-msgstr ""
+msgstr "Målport"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
msgid "Destination zone"
-msgstr ""
+msgstr "Målsone"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
@@ -1757,36 +1770,36 @@ msgstr "Enhet Konfigurasjon"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
msgid "Device is not active"
-msgstr ""
+msgstr "Enheten er ikke aktiv"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:233
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:657
msgid "Device is restarting…"
-msgstr ""
+msgstr "Enheten starter på ny …"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:441
msgid "Device name"
-msgstr ""
+msgstr "Enhetsnavn"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45
msgid "Device not managed by ModemManager."
-msgstr ""
+msgstr "Enheten håndteres ikke av ModemManager."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1378
msgid "Device not present"
-msgstr ""
+msgstr "Enheten er ikke tilstede"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:341
msgid "Device type"
-msgstr ""
+msgstr "Enhetstype"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
-msgstr ""
+msgstr "Enheten er ikke tilgjengelig!"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
msgid "Device unreachable! Still waiting for device..."
-msgstr ""
+msgstr "Enheten er utilgjengelig!Venter fremdeles på enhet …"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1229
msgid "Devices"
@@ -1801,7 +1814,7 @@ msgstr "Nettverksdiagnostikk"
msgid "Dial number"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Katalog"
@@ -1877,10 +1890,14 @@ msgstr "Kunne ikke koble fra"
msgid "Disconnection attempt failed."
msgstr "Kunne ikke koble fra."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1906,9 +1923,8 @@ msgid ""
"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> "
"forwarder."
msgstr ""
-"Dnsmasq er en lett <abbr title=\"Dynamic Host Configuration Protocol\""
-">HDCP</abbr>-tjener og <abbr title=\"Domain Name System\""
-">DNS</abbr>-videresender."
+"Dnsmasq er en lett <abbr title=\"Dynamic Host Configuration Protocol\">HDCP</"
+"abbr>-tjener og <abbr title=\"Domain Name System\">DNS</abbr>-videresender."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413
msgid "Do not cache negative replies, e.g. for non-existent domains."
@@ -1939,7 +1955,7 @@ msgstr "Ikke videresend reverserte oppslag for lokale nettverk"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339
msgid "Do not listen on the specified interfaces."
-msgstr ""
+msgstr "Ikke lytt til de angitte grensesnittene."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:870
msgid "Do not offer DHCPv6 service on this interface."
@@ -1955,6 +1971,8 @@ msgid ""
"Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
"packets."
msgstr ""
+"Ikke mellomtjen noen <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-"
+"pakker."
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
msgid "Do not send a hostname"
@@ -1965,26 +1983,28 @@ msgid ""
"Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
"abbr> messages on this interface."
msgstr ""
+"Ikke send noen <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
+"abbr>-meldinger på dette grensesnittet."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
-msgstr ""
+msgstr "Slett «%s»?"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200
msgid "Do you really want to delete the following SSH key?"
-msgstr ""
+msgstr "Slett følgende SSH-nøkkel?"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
msgid "Do you really want to erase all settings?"
-msgstr ""
+msgstr "Slett alle innstillinger?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
-msgstr ""
+msgstr "Slett mappen «%s», undermapper og innhold?"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:592
msgid "Domain"
-msgstr ""
+msgstr "Domene"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261
msgid "Domain required"
@@ -1998,7 +2018,7 @@ msgstr "Domene hviteliste"
#: 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 "Ikke fragmenter"
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
msgid "Down"
@@ -2014,15 +2034,15 @@ msgstr "Last ned sikkerhetskopi"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:432
msgid "Download mtdblock"
-msgstr ""
+msgstr "Last ned mtdblock"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1499
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
-msgstr ""
+msgstr "Dra for å endre rekkefølge"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
msgid "Drop Duplicate Frames"
@@ -2070,9 +2090,9 @@ msgstr ""
msgid "EAP-Method"
msgstr "EAP-metode"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2117,6 +2137,10 @@ msgstr "Krisesituasjon"
msgid "Enable"
msgstr "Skru på"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2315,11 +2339,11 @@ msgstr "Innkapsling modus"
msgid "Encryption"
msgstr "Kryptering"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2349,7 +2373,7 @@ msgstr ""
#: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
msgid "Enter custom values"
-msgstr ""
+msgstr "Skriv inn egendefinerte verdier"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
msgid "Erasing..."
@@ -2401,7 +2425,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:356
msgid "Existing device"
-msgstr ""
+msgstr "Eksisterende enhet"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408
msgid "Expand hosts"
@@ -2423,7 +2447,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2434,11 +2458,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "Expecting: %s"
-msgstr ""
+msgstr "Forventer: %s"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:50
msgid "Expecting: non-empty value"
-msgstr ""
+msgstr "Forventer: ikke-tom verdi"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
msgid "Expires"
@@ -2452,15 +2476,15 @@ msgstr "Utløpstid på leide adresser, minimum er 2 minutter (<code>2m</code>)."
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
msgid "External"
-msgstr ""
+msgstr "Ekstern"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
msgid "External R0 Key Holder List"
-msgstr ""
+msgstr "Ekstern R0-nøkkelholderliste"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1559
msgid "External R1 Key Holder List"
-msgstr ""
+msgstr "Ekstern R1-nøkkelholderliste"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:166
msgid "External system log server"
@@ -2472,15 +2496,16 @@ msgstr "Ekstern systemlogg server port"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:176
msgid "External system log server protocol"
-msgstr ""
+msgstr "Ekstern systemloggtjenerprotokoll"
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
msgid "Extra SSH command options"
-msgstr ""
+msgstr "Ekstra SSH-kommandoinnstillinger"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
+#, fuzzy
msgid "Extra pppd options"
-msgstr ""
+msgstr "Ekstra PPPD-innstillinger"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
msgid "Extra sstpc options"
@@ -2488,7 +2513,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1529
msgid "FT over DS"
-msgstr ""
+msgstr "FT over DS"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1530
msgid "FT over the Air"
@@ -2500,9 +2525,9 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
msgid "Failed to change the system password."
-msgstr ""
+msgstr "Klarte ikke å endre systempassordet."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2510,7 +2535,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Fil"
@@ -2520,7 +2545,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr ""
@@ -2534,10 +2559,10 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr "lokal <abbr title=\"Domain Navn System\">DNS</abbr>-fil"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
-msgstr ""
+msgstr "Filnavn"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492
msgid "Filename of the boot image advertised to clients."
@@ -2641,7 +2666,7 @@ msgstr "Flash operasjoner"
msgid "Flashing…"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2824,7 +2849,7 @@ msgstr ""
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2836,7 +2861,7 @@ msgstr ""
msgid "Generate archive"
msgstr "Opprett arkiv"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2852,21 +2877,20 @@ msgstr ""
msgid "Global network options"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Gå til passord konfigurasjon..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3021,7 +3045,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "Skjul <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3206,7 +3230,7 @@ msgstr "IPv4 gateway"
msgid "IPv4 netmask"
msgstr "IPv4 nettmaske"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3307,7 +3331,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr "IPv6 gateway"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3377,7 +3401,7 @@ msgstr "IPv6-over-IPv4 (6til4)"
msgid "Identity"
msgstr "Identitet"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3412,7 +3436,7 @@ msgid ""
"device node"
msgstr "Hvis oppgitt vil denne enheten bli montert utfra dens Volumnavn"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3722,6 +3746,8 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Ugyldig brukernavn og/eller passord! Vennligst prøv igjen."
@@ -3742,7 +3768,7 @@ msgstr ""
"Det virker som du prøver å flashe med en firmware som ikke passer inn i "
"flash-minnet, vennligst kontroller firmware filen!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3915,7 +3941,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "Forklaring:"
@@ -4028,17 +4054,19 @@ msgstr "Last"
msgid "Load Average"
msgstr "Belastning Gjennomsnitt"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr ""
@@ -4144,6 +4172,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Logg inn"
@@ -4498,7 +4527,7 @@ msgstr "Monitor"
msgid "More Characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr ""
@@ -4604,8 +4633,8 @@ msgstr ""
msgid "NTP server candidates"
msgstr "NTP server kandidater"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4704,7 +4733,7 @@ msgstr ""
msgid "Next »"
msgstr "Neste »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4734,7 +4763,6 @@ msgstr ""
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4765,7 +4793,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr ""
@@ -4805,7 +4833,7 @@ msgstr ""
msgid "No negative cache"
msgstr "Ingen negative cache"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4970,7 +4998,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr "Enten Vertsnavn eller Mac-adresse må oppgis!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr ""
@@ -5034,20 +5062,20 @@ msgstr ""
msgid "Operating frequency"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Innstilling endret"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Innstilling fjernet"
@@ -5073,17 +5101,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr ""
@@ -5091,13 +5119,13 @@ msgstr ""
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5108,11 +5136,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5255,7 +5283,7 @@ msgstr "Overstyr tabellen som brukes for interne ruter"
msgid "Overview"
msgstr "Oversikt"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5390,6 +5418,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Passord"
@@ -5479,6 +5508,10 @@ msgstr ""
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr ""
@@ -5506,7 +5539,7 @@ msgstr "Foreta nullstilling"
msgid "Permission denied"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
@@ -5537,7 +5570,7 @@ msgstr "Pakker."
msgid "Please enter your username and password."
msgstr "Skriv inn ditt brukernavn og passord."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr ""
@@ -5557,7 +5590,7 @@ msgstr ""
msgid "Port status:"
msgstr "Port status:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5585,7 +5618,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr ""
@@ -5678,7 +5711,7 @@ msgstr "Lag nytt nettverk"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Pseudo Ad-Hoc (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr ""
@@ -5699,8 +5732,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5931,7 +5964,7 @@ msgstr "Er nødvendig for noen nettleverandører, f.eks Charter med DOCSIS 3"
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -6061,8 +6094,8 @@ msgstr ""
"Lokaliser vertsnavn avhengig av subnett hvis flere IP-adresser er "
"tilgjengelig"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Vis/Skjul passord"
@@ -6070,19 +6103,19 @@ msgstr "Vis/Skjul passord"
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Tilbakestill"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr ""
@@ -6105,7 +6138,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6212,7 +6245,7 @@ msgstr ""
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6223,7 +6256,7 @@ msgid "Save"
msgstr "Lagre"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Lagre & Aktiver"
@@ -6249,11 +6282,11 @@ msgstr "Skann"
msgid "Scheduled Tasks"
msgstr "Planlagte Oppgaver"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Seksjon lagt til"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Seksjon fjernet"
@@ -6268,9 +6301,9 @@ msgid ""
"your device!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr ""
@@ -6454,7 +6487,7 @@ msgstr ""
msgid "Signal:"
msgstr "Signal:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Størrelse"
@@ -6794,7 +6827,7 @@ msgstr "Start prioritet"
msgid "Start refresh"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr ""
@@ -6866,6 +6899,10 @@ msgstr ""
msgid "Stop refresh"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -6928,7 +6965,7 @@ msgstr "Svitsj protokoll"
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr ""
@@ -6965,7 +7002,6 @@ msgstr "System Egenskaper"
msgid "System log buffer size"
msgstr "System logg buffer størrelse"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7019,11 +7055,15 @@ msgstr ""
msgid "Target network"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Avslutte"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7139,7 +7179,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7167,7 +7207,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7257,7 +7297,7 @@ msgstr "Lengden IPv4 prefikset i bits, resten brukt i IPv6-adresser."
msgid "The length of the IPv6 prefix in bits"
msgstr "Lengden på IPv6 prefikset i bits"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7284,6 +7324,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7424,11 +7468,11 @@ msgstr ""
msgid "There are no active leases"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7520,8 +7564,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7793,7 +7837,7 @@ msgstr ""
msgid "Unnamed key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Ulagrede Endringer"
@@ -7823,7 +7867,7 @@ msgstr ""
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
#, fuzzy
msgid "Upload"
msgstr "Last opp"
@@ -7839,21 +7883,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Last opp arkiv..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr ""
@@ -8049,6 +8093,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Brukernavn"
@@ -8343,7 +8388,7 @@ msgstr ""
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8370,7 +8415,7 @@ msgstr ""
"deaktiverer nødvendige init skript som f.eks. \"nettverk\", kan enheten bli "
"utilgjengelig! </strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8535,7 +8580,7 @@ msgstr "full-dupleks"
msgid "half-duplex"
msgstr "halv-dupleks"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr ""
@@ -8560,11 +8605,11 @@ msgstr ""
msgid "input"
msgstr "inndata"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr ""
@@ -8597,13 +8642,14 @@ msgstr "nei"
msgid "no link"
msgstr "ingen forbindelse"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
+#, fuzzy
msgid "none"
msgstr "ingen"
@@ -8636,11 +8682,11 @@ msgstr ""
msgid "output"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr ""
@@ -8691,7 +8737,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr ""
@@ -8709,7 +8755,7 @@ msgstr "ukjent"
msgid "unlimited"
msgstr "ubegrenset"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8730,175 +8776,175 @@ msgstr "uspesifisert --eller-- opprett:"
msgid "untagged"
msgstr "utagget"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr ""
diff --git a/modules/luci-base/po/nl/base.po b/modules/luci-base/po/nl/base.po
index b834848464..f1722366c5 100644
--- a/modules/luci-base/po/nl/base.po
+++ b/modules/luci-base/po/nl/base.po
@@ -17,7 +17,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d ongeldige velden"
@@ -53,19 +53,19 @@ msgid "-- Additional Field --"
msgstr "-- Extra Veld --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Maak een keuze --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- aangepast --"
@@ -214,7 +214,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Er bestaat al een map met deze naam."
@@ -222,7 +222,7 @@ msgstr "Er bestaat al een map met deze naam."
msgid "A new login is required since the authentication session expired."
msgstr "Er moet opnieuw worden ingelogd omdat de sessie is verlopen."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -400,11 +400,11 @@ msgstr "Adaptieve lastbalancering (balance-alb, 6)"
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "Adaptieve verzendlastbalancering (balance-tlb, 5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -631,7 +631,7 @@ msgstr ""
msgid "Allow the <em>root</em> user to login with password"
msgstr "<em>root</em>gebruiker toestaan zonder wachtwoord in te loggen"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "Toegestane IP-adressen"
@@ -787,16 +787,16 @@ msgstr ""
msgid "Apply backup?"
msgstr "Backup toepassen?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "Aanvraag is mislukt met status <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr ""
@@ -851,6 +851,7 @@ msgid "Authoritative"
msgstr "Autoritatieve"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Autorisatie Vereist"
@@ -1063,8 +1064,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr ""
@@ -1094,8 +1095,8 @@ msgstr "Cached"
msgid "Call failed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1161,11 +1162,11 @@ msgstr ""
msgid "Chain"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Veranderingen"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "Wijzigingen zijn teruggedraaid."
@@ -1258,7 +1259,7 @@ msgstr ""
msgid "Client ID to send when requesting DHCP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1320,16 +1321,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Configuratie"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "Configuratiewijzigingen toegepast."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "Configuratiewijzigingen zijn teruggedraaid!"
@@ -1427,7 +1428,7 @@ msgstr ""
msgid "Continue"
msgstr "Doorgaan"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1657,11 +1658,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1673,7 +1674,7 @@ msgstr "Verwijderen"
msgid "Delete key"
msgstr "Verwijder toets"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr ""
@@ -1687,11 +1688,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Beschrijving"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr ""
@@ -1764,7 +1765,7 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr ""
@@ -1785,7 +1786,7 @@ msgstr ""
msgid "Dial number"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr ""
@@ -1857,10 +1858,14 @@ msgstr ""
msgid "Disconnection attempt failed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1939,7 +1944,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -1951,7 +1956,7 @@ msgstr ""
msgid "Do you really want to erase all settings?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr ""
@@ -1993,7 +1998,7 @@ msgstr ""
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr ""
@@ -2038,9 +2043,9 @@ msgstr ""
msgid "EAP-Method"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2085,6 +2090,10 @@ msgstr ""
msgid "Enable"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2283,11 +2292,11 @@ msgstr ""
msgid "Encryption"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2390,7 +2399,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2468,7 +2477,7 @@ msgstr ""
msgid "Failed to change the system password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2476,7 +2485,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr ""
@@ -2486,7 +2495,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr ""
@@ -2498,7 +2507,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr ""
@@ -2605,7 +2614,7 @@ msgstr ""
msgid "Flashing…"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2787,7 +2796,7 @@ msgstr ""
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2799,7 +2808,7 @@ msgstr ""
msgid "Generate archive"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2815,21 +2824,20 @@ msgstr ""
msgid "Global network options"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -2982,7 +2990,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3167,7 +3175,7 @@ msgstr ""
msgid "IPv4 netmask"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3268,7 +3276,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3339,7 +3347,7 @@ msgstr ""
msgid "Identity"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3374,7 +3382,7 @@ msgid ""
"device node"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3680,6 +3688,8 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr ""
@@ -3697,7 +3707,7 @@ msgid ""
"flash memory, please verify the image file!"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3870,7 +3880,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr ""
@@ -3980,17 +3990,19 @@ msgstr ""
msgid "Load Average"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr ""
@@ -4096,6 +4108,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr ""
@@ -4450,7 +4463,7 @@ msgstr ""
msgid "More Characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr ""
@@ -4554,8 +4567,8 @@ msgstr ""
msgid "NTP server candidates"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4651,7 +4664,7 @@ msgstr ""
msgid "Next »"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4681,7 +4694,6 @@ msgstr ""
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4712,7 +4724,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr ""
@@ -4752,7 +4764,7 @@ msgstr ""
msgid "No negative cache"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4917,7 +4929,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr ""
@@ -4981,20 +4993,20 @@ msgstr ""
msgid "Operating frequency"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr ""
@@ -5020,17 +5032,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr ""
@@ -5038,13 +5050,13 @@ msgstr ""
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5055,11 +5067,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5200,7 +5212,7 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5335,6 +5347,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr ""
@@ -5424,6 +5437,10 @@ msgstr ""
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr ""
@@ -5451,7 +5468,7 @@ msgstr ""
msgid "Permission denied"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
@@ -5482,7 +5499,7 @@ msgstr ""
msgid "Please enter your username and password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr ""
@@ -5502,7 +5519,7 @@ msgstr ""
msgid "Port status:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5530,7 +5547,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr ""
@@ -5621,7 +5638,7 @@ msgstr ""
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr ""
@@ -5642,8 +5659,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5874,7 +5891,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -6002,8 +6019,8 @@ msgid ""
"received if multiple IPs are available."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr ""
@@ -6011,19 +6028,19 @@ msgstr ""
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr ""
@@ -6046,7 +6063,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6151,7 +6168,7 @@ msgstr ""
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6162,7 +6179,7 @@ msgid "Save"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr ""
@@ -6188,11 +6205,11 @@ msgstr ""
msgid "Scheduled Tasks"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr ""
@@ -6207,9 +6224,9 @@ msgid ""
"your device!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr ""
@@ -6391,7 +6408,7 @@ msgstr ""
msgid "Signal:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr ""
@@ -6727,7 +6744,7 @@ msgstr ""
msgid "Start refresh"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr ""
@@ -6796,6 +6813,10 @@ msgstr ""
msgid "Stop refresh"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -6858,7 +6879,7 @@ msgstr ""
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr ""
@@ -6895,7 +6916,6 @@ msgstr ""
msgid "System log buffer size"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -6949,11 +6969,15 @@ msgstr ""
msgid "Target network"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7068,7 +7092,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7094,7 +7118,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7182,7 +7206,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7209,6 +7233,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7335,11 +7363,11 @@ msgstr ""
msgid "There are no active leases"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7419,8 +7447,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7688,7 +7716,7 @@ msgstr ""
msgid "Unnamed key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr ""
@@ -7718,7 +7746,7 @@ msgstr ""
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr ""
@@ -7733,21 +7761,21 @@ msgstr ""
msgid "Upload archive..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr ""
@@ -7936,6 +7964,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr ""
@@ -8227,7 +8256,7 @@ msgstr ""
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8250,7 +8279,7 @@ msgid ""
"scripts like \"network\", your device might become inaccessible!</strong>"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8413,7 +8442,7 @@ msgstr ""
msgid "half-duplex"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr ""
@@ -8438,11 +8467,11 @@ msgstr ""
msgid "input"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr ""
@@ -8475,12 +8504,12 @@ msgstr ""
msgid "no link"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr ""
@@ -8514,11 +8543,11 @@ msgstr ""
msgid "output"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr ""
@@ -8569,7 +8598,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr ""
@@ -8587,7 +8616,7 @@ msgstr ""
msgid "unlimited"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8608,175 +8637,175 @@ msgstr ""
msgid "untagged"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr ""
diff --git a/modules/luci-base/po/pl/base.po b/modules/luci-base/po/pl/base.po
index a97178940a..a257c3320c 100644
--- a/modules/luci-base/po/pl/base.po
+++ b/modules/luci-base/po/pl/base.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: LuCI\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-20 09:40+0200\n"
-"PO-Revision-Date: 2021-11-02 17:27+0000\n"
+"PO-Revision-Date: 2021-11-27 23:39+0000\n"
"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/luci/pl/>"
"\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 4.9-dev\n"
+"X-Generator: Weblate 4.10-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
msgid "%.1f dB"
@@ -23,7 +23,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d nieprawidłowe pole(pola)"
@@ -59,19 +59,19 @@ msgid "-- Additional Field --"
msgstr "-- Dodatkowe pole --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Proszę wybrać --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- własne --"
@@ -218,7 +218,7 @@ msgstr "Usługa <abbr title=\"Router Advertisement\">RA</abbr>"
msgid "A configuration for the device \"%s\" already exists"
msgstr "Konfiguracja dla urządzenia \"%s\" już istnieje"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Katalog o tej samej nazwie już istnieje."
@@ -227,7 +227,7 @@ msgid "A new login is required since the authentication session expired."
msgstr ""
"Wymagane jest ponowne zalogowanie, ponieważ sesja uwierzytelniania wygasła."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -410,11 +410,11 @@ msgstr "Adaptacyjne równoważenie obciążenia (balance-alb, 6)"
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "Adaptacyjne równoważenie obciążenia transmisji (balance-tlb, 5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -646,7 +646,7 @@ msgstr "Zezwalaj na sondowanie funkcji systemu"
msgid "Allow the <em>root</em> user to login with password"
msgstr "Zezwól użytkownikowi <em>root</em> na logowanie się przy pomocy hasła"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "Dozwolone IP"
@@ -810,16 +810,16 @@ msgstr "Zastosuj opcje DHCP do tej sieci. (Puste = wszystkie klienty)."
msgid "Apply backup?"
msgstr "Czy zastosować kopię zapasową?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "Żądanie zatwierdzenia nie powiodło się ze statusem <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "Zastosuj zmiany"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "Wprowadzanie zmian w konfiguracji… %ds"
@@ -879,6 +879,7 @@ msgid "Authoritative"
msgstr "Autorytatywny"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Wymagana autoryzacja"
@@ -1097,8 +1098,8 @@ msgstr "Uruchom interfejs mostu bez ustawionych portów"
msgid "Broadcast policy (broadcast, 3)"
msgstr "Polityka nadawania (transmisja, 3)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Przeglądaj…"
@@ -1129,8 +1130,8 @@ msgstr "Podręczna"
msgid "Call failed"
msgstr "Połączenie nieudane"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1204,11 +1205,11 @@ msgstr ""
msgid "Chain"
msgstr "Łańcuch"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Zmiany"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "Zmiany zostały cofnięte."
@@ -1311,7 +1312,7 @@ msgstr "Klient"
msgid "Client ID to send when requesting DHCP"
msgstr "Nazwa (ID) klienta do wysłania podczas negocjacji DHCP"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1380,16 +1381,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "Obliczanie sumy kontrolnej wychodzącej (opcjonalnie)."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Konfiguracja"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "Konfiguracja została zastosowana."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "Konfiguracja została wycofana!"
@@ -1499,7 +1500,7 @@ msgstr "Zawartość została zapisana."
msgid "Continue"
msgstr "Kontynuuj"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1743,11 +1744,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr "Delegowanie prefiksów IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1759,7 +1760,7 @@ msgstr "Usuń"
msgid "Delete key"
msgstr "Usuń klucz"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "Zalecane kasowanie nieudane: %s"
@@ -1773,11 +1774,11 @@ msgstr "Interwał komunikatu o wskazaniu dostawy ruchu"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Opis"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Odznacz"
@@ -1850,7 +1851,7 @@ msgstr "Urządzenie nie obecne"
msgid "Device type"
msgstr "Typ urządzenia"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Urządzenie nieosiągalne!"
@@ -1871,7 +1872,7 @@ msgstr "Diagnostyka"
msgid "Dial number"
msgstr "Numer do wybrania"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Katalog"
@@ -1945,10 +1946,14 @@ msgstr "Próba rozłączenia nie powiodła się"
msgid "Disconnection attempt failed."
msgstr "Próba rozłączenia nie powiodła się."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr "Miejsce na dysku"
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -2038,7 +2043,7 @@ msgstr ""
"Nie wysyłaj żadnych komunikatów <abbr title=\"Router Advertisement, ICMPv6 "
"Type 134\">RA</abbr> na tym interfejsie."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "Czy jesteś pewien, że chcesz usunąć \"%s\" ?"
@@ -2050,7 +2055,7 @@ msgstr "Czy na pewno chcesz usunąć następujący klucz SSH?"
msgid "Do you really want to erase all settings?"
msgstr "Czy jesteś pewny, że naprawdę chcesz skasować wszystkie ustawienia?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr ""
"Czy jesteś pewien, że chcesz skasować katalog \"%s\" ze wszystkimi jego "
@@ -2094,7 +2099,7 @@ msgstr "Pobierz mtdblock"
msgid "Downstream SNR offset"
msgstr "Kompensacja transmisji SNR"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "Przeciągnij, aby zmienić kolejność"
@@ -2145,9 +2150,9 @@ msgstr "Długość EA-bits"
msgid "EAP-Method"
msgstr "Metoda protokołu rozszerzonego uwierzytelniania (EAP)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2194,6 +2199,11 @@ msgstr "Ratunkowy"
msgid "Enable"
msgstr "Włącz"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+"Włącz / Wyłącz peera. Zrestartuj interfejs Wireguard, aby zastosować zmiany."
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2405,11 +2415,11 @@ msgstr "Sposób enkapsulacji"
msgid "Encryption"
msgstr "Szyfrowanie"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr "Końcowy host"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr "Końcowy port"
@@ -2512,7 +2522,7 @@ msgstr "Wymagany poprawny adres IPv6"
msgid "Expecting two priority values separated by a colon"
msgstr "Wymagane dwie wartości oddzielone dwukropkiem"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2591,7 +2601,7 @@ msgstr "Protokół FT"
msgid "Failed to change the system password."
msgstr "Zmiana hasła systemowego nieudana."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "Nie udało się zatwierdzić w ciągu %ds, czekam na wycofanie…"
@@ -2599,7 +2609,7 @@ msgstr "Nie udało się zatwierdzić w ciągu %ds, czekam na wycofanie…"
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Nie można wykonać \"/etc/init.d/%s %s\" akcja: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Plik"
@@ -2611,7 +2621,7 @@ msgstr ""
"Lista plików źródłowych resolwerów, opcjonalnie specyficznych dla domeny, "
"np. <code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "Plik niedostępny"
@@ -2623,7 +2633,7 @@ msgstr "Plik do przechowywania informacji o dzierżawie DHCP."
msgid "File with upstream resolvers."
msgstr "Plik ze źródłowymi resolwerami."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "Nazwa pliku"
@@ -2736,7 +2746,7 @@ msgstr "Operacje aktualizacji"
msgid "Flashing…"
msgstr "Trwa wgrywanie obrazu…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr "Zainstaluj pakiet qrencode do obsługi kodów QR!"
@@ -2931,7 +2941,7 @@ msgstr "Wygeneruj konfigurację"
msgid "Generate Key"
msgstr "Wygeneruj klucz"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr "Wygeneruj nowy kod QR"
@@ -2943,7 +2953,7 @@ msgstr "Wygeneruj PMK lokalnie"
msgid "Generate archive"
msgstr "Twórz archiwum"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr "Wygeneruj nowy kod QR"
@@ -2959,21 +2969,20 @@ msgstr "Ustawienia globalne"
msgid "Global network options"
msgstr "Globalne opcje sieciowe"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr "Przejdź do aktualizacji oprogramowania..."
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Przejdź do konfiguracji hasła..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3130,7 +3139,7 @@ msgstr ""
"Ukryj <abbr title=\"Extended Service Set Identifier (Nazwę sieci)\">ESSID</"
"abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr "Ukryj kod QR"
@@ -3318,7 +3327,7 @@ msgstr "Brama IPv4"
msgid "IPv4 netmask"
msgstr "Maska IPv4"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr "Zapis adresu/maski w sieci IPv4"
@@ -3419,7 +3428,7 @@ msgstr "Długość przydziału IPv6"
msgid "IPv6 gateway"
msgstr "Brama IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr "Zapis adresu/maski w sieci IPv6"
@@ -3490,7 +3499,7 @@ msgstr "IPv6-przez-IPv4 (6to4)"
msgid "Identity"
msgstr "Tożsamość"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr "Jeśli jest dostępny, \"KluczWspółdzielony\" klienta"
@@ -3531,7 +3540,7 @@ msgstr ""
"Jeśli podano, zainstaluj urządzenie poprzez nazwę partycji zamiast <abbr "
"title=\"fixed device node\">ustalonego węzła urządzenia</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3857,6 +3866,8 @@ msgid "Invalid hexadecimal value"
msgstr "Nieprawidłowa wartość szesnastkowa"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Niewłaściwy login i/lub hasło! Spróbuj ponownie."
@@ -3876,7 +3887,7 @@ msgstr ""
"Wygląda na to, że próbujesz wgrać obraz większy niż twoja pamięć flash, "
"proszę sprawdź czy to właściwy obraz!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -4053,7 +4064,7 @@ msgstr ""
"zmniejszona, gdy jest stosowane to ustawienie. Zaleca się, aby w miarę "
"możliwości nie zezwalać na szybkości 802.11b."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "Legenda:"
@@ -4175,17 +4186,19 @@ msgstr "Obciążenie"
msgid "Load Average"
msgstr "Średnie obciążenie"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr "Ładowanie kodu QR..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "Ładowanie zawartości katalogu.…"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "Ładowanie widoku…"
@@ -4295,6 +4308,7 @@ msgstr ""
"Sieć logiczna, do której tunel zostanie dodany (zmostkowy) (opcjonalnie)."
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Zaloguj"
@@ -4661,7 +4675,7 @@ msgstr "Monitor"
msgid "More Characters"
msgstr "Użyj więcej znaków"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "Więcej…"
@@ -4767,8 +4781,8 @@ msgstr "Domena NT"
msgid "NTP server candidates"
msgstr "Lista serwerów NTP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4866,7 +4880,7 @@ msgstr "Nazwa nowego interfejsu…"
msgid "Next »"
msgstr "Następna »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4896,7 +4910,6 @@ msgstr "Bez NAT-T"
msgid "No RX signal"
msgstr "Brak sygnału RX"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4930,7 +4943,7 @@ msgstr "Nie egzekwuj"
msgid "No entries available"
msgstr "Brak wpisów"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "Brak wpisów w tym katalogu"
@@ -4970,7 +4983,7 @@ msgstr "Brak dostępnych niewolników, nie można zapisać interfejsu"
msgid "No negative cache"
msgstr "Wyłącz buforowanie negatywnych odpowiedzi"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -5139,7 +5152,7 @@ msgstr "Trasa łącza"
msgid "One of hostname or MAC address must be specified!"
msgstr "Nazwa hosta lub adres MAC musi być podany!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "Jedno z poniższych: %s"
@@ -5215,20 +5228,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "Częstotliwość"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr "Opcja \"%s\" zawiera nieważną wartość wejściową."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr "Opcja \"%s\" nie może być pusta."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Wartość zmieniona"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Usunięto wartość"
@@ -5260,7 +5273,7 @@ msgstr ""
"odbierany z serwera delegującego, użyj sufiksa (takiego jak '::1'), aby "
"utworzyć adres IPv6 ('a:b:c:d::1') dla tego interfejsu."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
@@ -5268,11 +5281,11 @@ msgstr ""
"Opcjonalnie. Base64-zakodowany klucz współdzielony. Dodaje dodatkową warstwę "
"symetrycznej kryptografii klucza dla uzyskania odporności po kwantowej."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr "Opcjonalny. Tworzenie tras dozwolonych adresów IP dla tego peera."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "Opcjonalny. Opis peera."
@@ -5280,14 +5293,14 @@ msgstr "Opcjonalny. Opis peera."
msgid "Optional. Do not create host routes to peers."
msgstr "Opcjonalnie. Nie twórz tras hosta do peerów."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
"Opcjonalnie. Host z peerem. Nazwy są ustalane przed wywołaniem interfejsu."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5300,11 +5313,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "Opcjonalny. Maksymalna wartość transmisji interfejsu tunelowego."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "Opcjonalny. Port dla peera."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5454,7 +5467,7 @@ msgstr "Zastąp tabelę używaną do tras wewnętrznych"
msgid "Overview"
msgstr "Przegląd"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "Nadpisać istniejący plik \"%s\" ?"
@@ -5591,6 +5604,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Hasło"
@@ -5680,6 +5694,10 @@ msgstr "Brakuje adresu peera"
msgid "Peer device name"
msgstr "Nazwa urządzenia peera"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr "Peer wyłączony"
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "Peery"
@@ -5707,7 +5725,7 @@ msgstr "Wykonaj reset"
msgid "Permission denied"
msgstr "Odmowa zezwolenia"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "Trwale trzymaj przy życiu"
@@ -5738,7 +5756,7 @@ msgstr "Pktw."
msgid "Please enter your username and password."
msgstr "Proszę wprowadzić swoją nazwę użytkownika i hasło."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "Wybierz plik do przesłania."
@@ -5758,7 +5776,7 @@ msgstr "Izolacja portów"
msgid "Port status:"
msgstr "Status portu:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr "Potencjalne odrzucenie: %s"
@@ -5786,7 +5804,7 @@ msgstr "Prefiks przekazany"
msgid "Prefix suppressor"
msgstr "Tłumik prefiksu"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "Klucz współdzielony"
@@ -5884,7 +5902,7 @@ msgstr "Utwórz nową sieć"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Pseudo Ad-Hoc (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Klucz publiczny"
@@ -5911,8 +5929,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr "Komórkowy QMI"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr "Kod QR"
@@ -6146,7 +6164,7 @@ msgstr "Wymagany dla niektórych dostawców internetu, np. Charter z DOCSIS 3"
msgid "Required. Base64-encoded private key for this interface."
msgstr "Wymagane. Klucz prywatny dla tego interfejsu Base64-encoded."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr "Wymagane. Klucz publiczny Base64-encodec dla peera."
@@ -6276,8 +6294,8 @@ msgstr ""
"Zwróć odpowiedzi na zapytania DNS pasujące do podsieci, z której otrzymano "
"zapytanie, jeśli dostępnych jest wiele adresów IP."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Pokaż/Ukryj hasło"
@@ -6285,19 +6303,19 @@ msgstr "Pokaż/Ukryj hasło"
msgid "Reverse path filter"
msgstr "Filtr ścieżki powrotnej"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Przywróć"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "Przywróć zmiany"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr "Żądanie powrotu nie powiodło się ze statusem <code>%h</code>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "Przywracanie konfiguracji…"
@@ -6323,7 +6341,7 @@ msgstr "Przygotowanie Roota"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr "Polityka Round-Robin (bilans-rr, 0)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "Trasuj dozwolone IPs"
@@ -6434,7 +6452,7 @@ msgstr "Serwer SSTP"
msgid "SWAP"
msgstr "SWAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6445,7 +6463,7 @@ msgid "Save"
msgstr "Zapisz"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Zapisz i zastosuj"
@@ -6471,11 +6489,11 @@ msgstr "Skanuj"
msgid "Scheduled Tasks"
msgstr "Zaplanowane zadania"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Dodano sekcję"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Usunięto sekcję"
@@ -6493,9 +6511,9 @@ msgstr ""
"formatu obrazu nie powiodło się. Używaj tylko wtedy, gdy masz pewność że "
"oprogramowanie jest poprawne i jest przeznaczone dla twojego urządzenia!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "Wybierz plik…"
@@ -6692,7 +6710,7 @@ msgstr "Częstotliwość odświeżania sygnału"
msgid "Signal:"
msgstr "Sygnał:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Rozmiar"
@@ -7101,7 +7119,7 @@ msgstr "Priorytet uruchamiania"
msgid "Start refresh"
msgstr "Rozpocznij odświeżanie"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "Zatwierdzanie konfiguracji…"
@@ -7174,6 +7192,10 @@ msgstr "Zatrzymaj WPS"
msgid "Stop refresh"
msgstr "Zatrzymaj odświeżanie"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr "Wykorzystanie pamięci masowej"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr "Filtrowanie ścisłe"
@@ -7237,7 +7259,7 @@ msgstr "Protokół przełącznika"
msgid "Switch to CIDR list notation"
msgstr "Przejdź do notacji listy CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "Dowiązanie symboliczne"
@@ -7275,7 +7297,6 @@ msgstr "Właściwości systemu"
msgid "System log buffer size"
msgstr "Rozmiar bufora logu systemowego"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7329,11 +7350,15 @@ msgstr "Platforma docelowa"
msgid "Target network"
msgstr "Sieć docelowa"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr "Miejsce tymczasowe"
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Zakończ"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr "\"KluczPubliczny\" tego interfejsu wg"
@@ -7468,7 +7493,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr "MTU nie może przekroczyć %d bajtów MTU urządzenia nadrzędnego"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7501,7 +7526,7 @@ msgstr ""
"Podczas łączenia z ukrytą siecią bezprzewodową należy ręcznie określić "
"prawidłowy identyfikator SSID"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7609,7 +7634,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr "Długość prefiksu IPv6 w bitach"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7638,6 +7663,10 @@ msgstr "Lokalna maska dla IPv4"
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr "Lokalny adres IPv6, na którym tworzony jest tunel (opcjonalnie)."
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr "Żądanie logowania nie powiodło się z powodu błędu: %h"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7799,11 +7828,11 @@ msgstr "Wartość jest zastępowana przez konfigurację. Oryginał: %s"
msgid "There are no active leases"
msgstr "Nie ma aktywnych dzierżaw"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "Nie ma żadnych zmian do zastosowania"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7903,8 +7932,8 @@ msgid ""
msgstr ""
"Nie można użyć tej opcji, ponieważ pakiet ca-bundle nie jest zainstalowany."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -8181,7 +8210,7 @@ msgstr "Odmontuj"
msgid "Unnamed key"
msgstr "Klucz beznazwy"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Niezapisane zmiany"
@@ -8211,7 +8240,7 @@ msgstr "Góra"
msgid "Up Delay"
msgstr "Opóźnienie w górę"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Wysyłanie"
@@ -8226,21 +8255,21 @@ msgstr "Prześlij obraz zgodny z sysupgrade, aby zastąpić obecny firmware."
msgid "Upload archive..."
msgstr "Załaduj archiwum..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "Prześlij plik"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "Prześlij plik…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "Przesyłanie nie powiodło się: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "Przesyłanie pliku…"
@@ -8451,6 +8480,7 @@ msgstr "Klucz użytkownika (zakodowany PEM)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Nazwa użytkownika"
@@ -8762,7 +8792,7 @@ msgstr "Zapisz dziennik systemowy do pliku"
msgid "XOR policy (balance-xor, 2)"
msgstr "Zasady XOR (balance-xor, 2)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8791,7 +8821,7 @@ msgstr ""
"Jeśli wyłączysz podstawowe skrypty typu \"network\", urządzenie może stać "
"się nieosiągalne!</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8959,7 +8989,7 @@ msgstr "pełny-duplex"
msgid "half-duplex"
msgstr "pół-duplex"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "wartość zakodowana szesnastkowo"
@@ -8984,11 +9014,11 @@ msgstr "ignoruj"
msgid "input"
msgstr "wejście"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "klucza od 8 do 63 znaków"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "klucz z 5 lub 13 znakami"
@@ -9022,12 +9052,12 @@ msgstr "nie"
msgid "no link"
msgstr "niepowiązane"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "niepustą wartość"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "brak"
@@ -9061,11 +9091,11 @@ msgstr "inna konfiguracja (O)"
msgid "output"
msgstr "wyjście"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "dodatnia wartość dziesiętna"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "dodatnia wartość całkowita"
@@ -9119,7 +9149,7 @@ msgstr ""
"\">HTTP</abbr> lub <abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</"
"abbr>."
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "unikalna wartość"
@@ -9137,7 +9167,7 @@ msgstr "nieznane"
msgid "unlimited"
msgstr "nielimitowane"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -9158,176 +9188,176 @@ msgstr "nieokreślone -lub- utwórz:"
msgid "untagged"
msgstr "nieotagowane"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "prawidłowy adres IP"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "prawidłowy adres IP lub prefix"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "prawidłowy CIDR IPv4"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "prawidłowy adres IPv4"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "prawidłowy adres IPv4 lub sieć"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "prawidłowy adres IPv4:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "prawidłowa sieć IPv4"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "prawidłowy protokół IPv4 lub IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "prawidłowa wartość prefiksu IPv4 (0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "prawidłowy protokół IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "prawidłowy adres IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "prawidłowy adres IPv6 lub prefix"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "prawidłowy identyfikator hosta IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "prawidłowa sieć IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "prawidłowa wartość prefiksu IPv6 (0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "prawidłowy adres MAC"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "prawidłowy identyfikator UCI"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "prawidłowy identyfikator UCI, nazwa hosta lub zakres adresów IP"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "prawidłowy adres:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "prawidłowa data (RRRR-MM-DD)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "prawidłowa wartość dziesiętna"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "prawidłowy szesnastkowy klucz WEP"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "prawidłowy szesnastkowy klucz WPA"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "prawidłowy host:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "prawidłowa nazwa hosta"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "prawidłowa nazwa hosta lub adres IP"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "prawidłowa wartość całkowita"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr "prawidłowy adres MAC multicast"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "prawidłowa sieć w zapisie adresu/maski sieci"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
"prawidłowa wartość numeru telefonu (0-9, \"*\", \"#\", \"!\" lub \".\")"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "prawidłowy port lub zakres portów (PORT1-PORT2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "prawidłowa wartość portu"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "prawidłowy czas (GG:MM:SS)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "wartość pomiędzy %d i %d znaków"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "wartość pomiędzy %f a %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "wartość większą lub równą %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "wartość mniejszą lub równą %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "wartość z %d znakami"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "o wartości co najmniej %d znaków"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "o wartości nie większej niż %d znaków"
diff --git a/modules/luci-base/po/pt/base.po b/modules/luci-base/po/pt/base.po
index 76e367394f..2ac6979f0a 100644
--- a/modules/luci-base/po/pt/base.po
+++ b/modules/luci-base/po/pt/base.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-05-26 19:03+0200\n"
-"PO-Revision-Date: 2021-10-19 18:57+0000\n"
+"PO-Revision-Date: 2021-11-27 23:39+0000\n"
"Last-Translator: ssantos <ssantos@web.de>\n"
"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/luci/"
"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.9-dev\n"
+"X-Generator: Weblate 4.10-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
msgid "%.1f dB"
@@ -22,7 +22,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d campo(s) inválido(s)"
@@ -58,19 +58,19 @@ msgid "-- Additional Field --"
msgstr "-- Campo Adicional --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Por favor escolha --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- personalizado --"
@@ -222,7 +222,7 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-Serviço"
msgid "A configuration for the device \"%s\" already exists"
msgstr "Uma configuração para o aparelho \"%s\" já existe"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Já existe um diretório com o mesmo nome."
@@ -230,7 +230,7 @@ msgstr "Já existe um diretório com o mesmo nome."
msgid "A new login is required since the authentication session expired."
msgstr "Um novo login é necessário visto que a sessão de autenticação expirou."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -415,11 +415,11 @@ msgstr "Balanceamento de carga adaptável (balanço-alb, 6)"
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "Balanceamento adaptativo da carga de transmissão (balanço-tlb, 5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -654,7 +654,7 @@ msgstr "Permitir a sondagem de características do sistema"
msgid "Allow the <em>root</em> user to login with password"
msgstr "Permitir que o utilizador <em>root</em> faça login com password"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "Endereços IP autorizados"
@@ -673,6 +673,8 @@ msgstr "Sempre ligado (kernel: ligado por predefinição)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537
msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux."
msgstr ""
+"Sempre enviar as opções de DHCP. É às vezes necessário com, por exemplo, "
+"PXELinux."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:971
msgid ""
@@ -815,22 +817,22 @@ msgstr "Qualquer zona"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
msgid "Apply DHCP Options to this net. (Empty = all clients)."
-msgstr ""
+msgstr "Aplicar as opções de DHCP a esta rede. (Vazio = todos os clientes)."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
msgid "Apply backup?"
msgstr "Aplicar backup?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "Pedido para aplicar falhou com o estado <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "Aplicar desmarcado"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "Aplicando alterações de configuração... %ds"
@@ -840,7 +842,7 @@ msgstr "Arquitetura"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:155
msgid "Arp-scan"
-msgstr ""
+msgstr "Varredura de ARP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
msgid ""
@@ -889,6 +891,7 @@ msgid "Authoritative"
msgstr "Autoritário"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Autorização Requerida"
@@ -1112,8 +1115,8 @@ msgstr "Suba a interface da ponte ainda que não haja portas anexadas"
msgid "Broadcast policy (broadcast, 3)"
msgstr "Política de divulgação (transmissão, 3)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Navegar…"
@@ -1144,8 +1147,8 @@ msgstr "Em cache"
msgid "Call failed"
msgstr "A chamada falhou"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1220,11 +1223,11 @@ msgstr ""
msgid "Chain"
msgstr "Cadeia"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Alterações"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "As alterações foram revertidas."
@@ -1327,7 +1330,7 @@ msgstr "Cliente"
msgid "Client ID to send when requesting DHCP"
msgstr "ID de cliente a enviar para pedidos de DHCP"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1396,16 +1399,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "Cálculo do checksum de saída (opcional)."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Configuração"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "A configuração foi aplicada."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "A configuração foi revertida!"
@@ -1517,7 +1520,7 @@ msgstr "Os conteúdos foram gravados."
msgid "Continue"
msgstr "Continuar"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1608,7 +1611,7 @@ msgstr "Segredo DAE"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524
msgid "DHCP Options"
-msgstr ""
+msgstr "Opções do DHCP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:483
msgid "DHCP Server"
@@ -1764,11 +1767,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr "Delegue prefixos IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1780,7 +1783,7 @@ msgstr "Apagar"
msgid "Delete key"
msgstr "Apagar chave"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "Pedido de apagar falhou: %s"
@@ -1794,11 +1797,11 @@ msgstr "Intervalo da Mensagem Indicativa de Envio de Tráfego (DTIM)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Descrição"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Desmarcar"
@@ -1871,7 +1874,7 @@ msgstr "O aparelho não está presente"
msgid "Device type"
msgstr "Tipo do aparelho"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Aparelho não alcançável!"
@@ -1892,7 +1895,7 @@ msgstr "Diagnósticos"
msgid "Dial number"
msgstr "Número de discagem"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Diretório"
@@ -1966,10 +1969,14 @@ msgstr "A tentativa de desconexão falhou"
msgid "Disconnection attempt failed."
msgstr "A tentativa de desconexão falhou."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr "Espaço no disco"
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1988,6 +1995,8 @@ msgid ""
"Dnsmasq instance to which this boot section is bound. If unspecified, the "
"section is valid for all dnsmasq instances."
msgstr ""
+"A instância do Dnsmasq à qual esta secção de inicialização está ligada. Se "
+"não for especificado, a secção é válida para todas as instâncias dnsmasq."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246
msgid ""
@@ -2060,7 +2069,7 @@ msgstr ""
"Não enviar nenhuma mensagem de <abbr title=\"Router Advertisement, ICMPv6 "
"Type 134\">RA</abbr> nesta interface."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "Quer mesmo apagar \"%s\"?"
@@ -2072,13 +2081,13 @@ msgstr "Deseja mesmo apagar a seguinte chave SSH?"
msgid "Do you really want to erase all settings?"
msgstr "Quer mesmo apagar todas as configurações?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Deseja mesmo apagar recursivamente o diretório \"%s\"?"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:592
msgid "Domain"
-msgstr ""
+msgstr "Domínio"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261
msgid "Domain required"
@@ -2116,7 +2125,7 @@ msgstr ""
"Deslocamento <abbr title=\"Signal to Noise Ratio\">SNR</abbr> do sinal "
"recebido"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "Arraste para reordenar"
@@ -2166,9 +2175,9 @@ msgstr "Comprimento dos bits EA"
msgid "EAP-Method"
msgstr "Método EAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2215,6 +2224,12 @@ msgstr "Emergência"
msgid "Enable"
msgstr "Ativar"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+"Ativar / desativar par. Reinicie a interface wireguard para aplicar as "
+"alterações."
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2368,7 +2383,7 @@ msgstr "Ativa o campo DF (Não Fragmentar) dos pacotes encapsulados."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480
msgid "Enable the built-in single-instance TFTP server."
-msgstr ""
+msgstr "Ativar o servidor integrado de instância única de TFTP."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895
msgid "Enable this network"
@@ -2424,11 +2439,11 @@ msgstr "Modo de encapsulamento"
msgid "Encryption"
msgstr "Encriptação"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr "Host Terminal"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr "Porta do Terminal"
@@ -2530,7 +2545,7 @@ msgstr "Na expectativa de um endereço IPv6 válido"
msgid "Expecting two priority values separated by a colon"
msgstr "Na expectativa de dois valores prioritários separados por dois pontos"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2609,7 +2624,7 @@ msgstr "Protocolo FT"
msgid "Failed to change the system password."
msgstr "Falha ao alterar a palavra-passe do sistema."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
"Não foi possível confirmar a aplicação das configurações dentro de %ds, "
@@ -2619,7 +2634,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Falha ao executar \"/etc/init.d/%s %s\" ação: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Ficheiro"
@@ -2632,7 +2647,7 @@ msgstr ""
"'server=1.2.3.4' para domínios específicos ou servidores <abbr title="
"\"Domain Name System\">DNS</abbr> completamente upstream."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "Ficheiro não acessível"
@@ -2647,7 +2662,7 @@ msgid "File with upstream resolvers."
msgstr ""
"Ficheiro local de <abbr title=\"Sistema de Nomes de Domínios\">DNS</abbr>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "Nome do ficheiro"
@@ -2760,7 +2775,7 @@ msgstr "Operações na memória flash"
msgid "Flashing…"
msgstr "A fazer o Flash…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr "Para o suporte ao QR-Code, instale o pacote qrencode!"
@@ -2955,7 +2970,7 @@ msgstr "Gerar Configuração"
msgid "Generate Key"
msgstr "Gerar chave"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr "Gere um novo QR-Code"
@@ -2967,7 +2982,7 @@ msgstr "Gerar a <abbr title=\"Pairwise Master Key\">PMK</abbr> localmente"
msgid "Generate archive"
msgstr "Gerar arquivo"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr "Gere um novo QR-Code"
@@ -2984,21 +2999,20 @@ msgstr "Configurações Globais"
msgid "Global network options"
msgstr "Opções de rede globais"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
-msgstr ""
+msgstr "Ir à atualização do firmware..."
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Ir para a configuração da palavra-passe…"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3157,7 +3171,7 @@ msgstr ""
"Ocultar <abbr title=\"Identificador de Conjunto de Serviços Estendidos"
"\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr "Oculte o QR-Code"
@@ -3183,7 +3197,7 @@ msgstr "Tempo limite de expiração de equipamento"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507
msgid "Host requests this filename from the boot server."
-msgstr ""
+msgstr "O host solicita este nome de ficheiro no servidor de inicialização."
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
msgid "Host-Uniq tag content"
@@ -3218,11 +3232,11 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:19
msgid "How long (in milliseconds) the LED should be off"
-msgstr ""
+msgstr "Quanto tempo (em milissegundos) o LED deve estar apagado"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:13
msgid "How long (in milliseconds) the LED should be on"
-msgstr ""
+msgstr "Quanto tempo (em milissegundos) o LED deve estar aceso"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
msgid "Human-readable counters"
@@ -3255,7 +3269,7 @@ msgstr "Protocolo IP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258
msgid "IP Sets"
-msgstr ""
+msgstr "Conjuntos de IP"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:126
msgid "IP Type"
@@ -3279,7 +3293,7 @@ msgstr "O endereço IP está ausente"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:588
msgid "IP set"
-msgstr ""
+msgstr "conjunto de IP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295
msgid "IP sets"
@@ -3345,7 +3359,7 @@ msgstr "Gateway IPv4"
msgid "IPv4 netmask"
msgstr "Máscara IPv4"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr "Rede IPv4 em notação endereço/máscara de rede"
@@ -3446,7 +3460,7 @@ msgstr "Tamanho da atribuição IPv6"
msgid "IPv6 gateway"
msgstr "Gateway IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr "Rede IPv6 em notação endereço/máscara de rede"
@@ -3517,7 +3531,7 @@ msgstr "IPv6-sobre-IPv4 (6to4)"
msgid "Identity"
msgstr "Identidade"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr "Caso esteja disponível, a \"PresharedKey\" do cliente"
@@ -3558,7 +3572,7 @@ msgstr ""
"Se especificado, monta o aparelho pela etiqueta da partição ao invés de um "
"nó de aparelho fixo"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3722,7 +3736,7 @@ msgstr "Instalar extensões do protocolo..."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:541
msgid "Instance"
-msgstr ""
+msgstr "Instância"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2026
msgid ""
@@ -3885,6 +3899,8 @@ msgid "Invalid hexadecimal value"
msgstr "Valor hexadecimal inválido"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Username e/ou password inválidos! Por favor, tente novamente."
@@ -3904,7 +3920,7 @@ msgstr ""
"A imagem que está a tentar carregar aparenta não caber na flash do "
"equipamento, por favor verifique o ficheiro da imagem!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -4081,7 +4097,7 @@ msgstr ""
"significativamente reduzida quando estes são utilizados. É recomendado não "
"permitir as taxas 802.11b sempre que possível."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "Legenda:"
@@ -4207,17 +4223,19 @@ msgstr "Carga"
msgid "Load Average"
msgstr "Carga Média"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr "Carregando o QR-Code..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "Carregando o conteúdo do diretório…"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "Carregando visualização…"
@@ -4327,6 +4345,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr "Rede lógica onde o túnel será adicionado (bridged) (opcional)."
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Login"
@@ -4698,7 +4717,7 @@ msgstr "Monitor"
msgid "More Characters"
msgstr "Mais Caracteres"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "Mais…"
@@ -4804,8 +4823,8 @@ msgstr "Domínio NT"
msgid "NTP server candidates"
msgstr "Candidatos a servidor NTP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4877,7 +4896,7 @@ msgstr "Interfaces de rede"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530
msgid "Network-ID"
-msgstr ""
+msgstr "ID da rede"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:706
msgid "Never"
@@ -4904,7 +4923,7 @@ msgstr "Novo nome de interface…"
msgid "Next »"
msgstr "Seguinte »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4934,7 +4953,6 @@ msgstr "Sem NAT-T"
msgid "No RX signal"
msgstr "Sem sinal RX"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4942,6 +4960,9 @@ msgid ""
"No changes to settings will be stored and are lost after rebooting. This "
"mode should only be used to install a firmware upgrade"
msgstr ""
+"Nenhuma alteração nas configurações será armazenada e será perdida após a "
+"reinicialização. Este modo só deve ser usado para instalar uma atualização "
+"de firmware"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
msgid "No client associated"
@@ -4965,7 +4986,7 @@ msgstr "Sem imposição"
msgid "No entries available"
msgstr "Não há entradas disponíveis"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "Não há entradas neste diretório"
@@ -5005,7 +5026,7 @@ msgstr "Não há mais escravos disponíveis, não é possível gravar a interfac
msgid "No negative cache"
msgstr "Sem cache negativa"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -5177,7 +5198,7 @@ msgstr "Rota On-Link"
msgid "One of hostname or MAC address must be specified!"
msgstr "Um nome de host ou endereço MAC deve ser especificado!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "Uma das seguintes: %s"
@@ -5252,20 +5273,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "Frequência de Operação"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr "A opção \"%s\" contém um valor de entrada inválido."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr "A opção \"%s\" não deve estar vazia."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Opção alterada"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Opção removida"
@@ -5297,7 +5318,7 @@ msgstr ""
"um servidor, use este sufixo (como '::1') para formar o endereço IPv6 ('a:b:"
"c:d::1') para esta interface."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
@@ -5305,11 +5326,11 @@ msgstr ""
"Opcional. Adiciona uma camada extra de cifragem simétrica para resistência "
"pós quântica."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr "Opcional. Cria rotas para endereços IP Autorizados para este parceiro."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "Opcional. Descrição do parceiro."
@@ -5317,7 +5338,7 @@ msgstr "Opcional. Descrição do parceiro."
msgid "Optional. Do not create host routes to peers."
msgstr "Opcional. Não criar rotas de acolhimento para os seus pares."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
@@ -5325,7 +5346,7 @@ msgstr ""
"Opcional. Equipamento do parceiro. Nomes serão resolvido antes de levantar a "
"interface."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5339,11 +5360,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "Opcional. Unidade Máxima de Transmissão da interface do túnel."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "Opcional. Porta do parceiro."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5367,6 +5388,10 @@ msgid ""
"\" for default route. <code>0.0.0.0</code> means \"the address of the system "
"running dnsmasq\"."
msgstr ""
+"Opções para o ID da rede. (Nota: precisa também do ID da rede.) Por exemplo, "
+"\"<code>42,192.168.1.4</code>\" para o servidor NTP, \"<code>3,192.168.4.4</"
+"code>\" para a rota padrão. <code>0.0.0.0.0</code> significa \"o endereço do "
+"sistema que executa dnsmasq\"."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119
msgid "Options:"
@@ -5492,7 +5517,7 @@ msgstr "Sobrescrever a tabela usada para as rotas internas"
msgid "Overview"
msgstr "Visão Geral"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "Sustituir o ficheiro existente \"%s\" ?"
@@ -5597,7 +5622,7 @@ msgstr "PTM/EFM (Modo de Transferência de Pacotes)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:254
msgid "PXE/TFTP Settings"
-msgstr ""
+msgstr "Configurações do PXE/TFTP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1456
msgid "Packet Steering"
@@ -5627,6 +5652,7 @@ msgstr "Passagem direta (Aparelho físico espelhado para um único MAC VLAN)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Palavra-passe"
@@ -5716,6 +5742,10 @@ msgstr "O endereço do parceiro está ausente"
msgid "Peer device name"
msgstr "Nome do aparelho dos pares"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr "Par desativado"
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "Parceiros"
@@ -5743,7 +5773,7 @@ msgstr "Executar reset"
msgid "Permission denied"
msgstr "Permissão negada"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "Manutenção da Conexão Persistente"
@@ -5774,7 +5804,7 @@ msgstr "Pcts."
msgid "Please enter your username and password."
msgstr "Insira o seu username e password."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "Por favor selecione o ficheiro para upload."
@@ -5794,7 +5824,7 @@ msgstr "Isolamento da porta"
msgid "Port status:"
msgstr "Estado da porta:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr "Negação potencial de: %s"
@@ -5823,7 +5853,7 @@ msgstr "Prefixo Delegado"
msgid "Prefix suppressor"
msgstr "Supressor de prefixos"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "Chave Compartilhada"
@@ -5920,7 +5950,7 @@ msgstr "Prover nova rede"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Ad-Hoc Falso (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Chave Pública"
@@ -5946,8 +5976,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr "Celular QMI"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr "QR-Code"
@@ -6184,7 +6214,7 @@ msgstr "Necessário para certos ISPs, p.ex. Charter with DOCSIS 3"
msgid "Required. Base64-encoded private key for this interface."
msgstr "Obrigatório. Chave privada codificada em Base64 para esta interface."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr "Necessário. Chave Pública do parceiro codificada como Base64."
@@ -6314,8 +6344,8 @@ msgstr ""
"Localizar o nome do equipamento dependendo da subrede requisitante se "
"mútliplos endereços IPs estiverem disponíveis"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Revelar/ocultar a palavra-passe"
@@ -6323,20 +6353,20 @@ msgstr "Revelar/ocultar a palavra-passe"
msgid "Reverse path filter"
msgstr "Filtro de caminho reverso"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Reverter"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "Reverter as mudanças"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
"O pedido para reverter as configurações falhou com o estado <code>%h</code>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "Revertendo configurações…"
@@ -6350,6 +6380,9 @@ msgid ""
"<em>TFTP server root</em> turn on the TFTP server and serve files from "
"<em>TFTP server root</em>."
msgstr ""
+"Diretório raiz para os ficheiros servidos através do TFTP. <em>Ative o "
+"servidor TFTP</em> e <em> a raiz do servidor TFTP</em> ativa o servidor TFTP "
+"e serve os ficheiros a partir da <em>raiz do servidor TFTP</em>."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:297
msgid "Root preparation"
@@ -6359,7 +6392,7 @@ msgstr "Prepação da raiz (/)"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr "Política Round-Robin (balanço-rr, 0)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "Roteie Andereços IP Autorizados"
@@ -6469,7 +6502,7 @@ msgstr "Servidor SSTP"
msgid "SWAP"
msgstr "SWAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6480,7 +6513,7 @@ msgid "Save"
msgstr "Guardar"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Gravar & Aplicar"
@@ -6506,11 +6539,11 @@ msgstr "Procurar"
msgid "Scheduled Tasks"
msgstr "Tarefas Agendadas"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Secção adicionada"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Secção removida"
@@ -6528,9 +6561,9 @@ msgstr ""
"do formato da imagem falhar. Use somente se você estiver confiante que a "
"firmware está correta e é destinada para seu aparelho!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "Selecione o ficheiro.…"
@@ -6571,11 +6604,11 @@ msgstr "Envie o nome do host deste aparelho"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518
msgid "Server address"
-msgstr ""
+msgstr "Endereço do servidor"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512
msgid "Server name"
-msgstr ""
+msgstr "Nome do servidor"
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
msgid "Service Name"
@@ -6733,7 +6766,7 @@ msgstr "Taxa de atualização do sinal"
msgid "Signal:"
msgstr "Sinal:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Tamanho"
@@ -6814,6 +6847,8 @@ msgid ""
"Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot "
"options for Dnsmasq."
msgstr ""
+"Opções de inicialização especiais <abbr title=\"Preboot eXecution Environment"
+"\">PXE</abbr> para o Dnsmasq."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:891
msgid ""
@@ -7147,7 +7182,7 @@ msgstr "Prioridade de inicialização"
msgid "Start refresh"
msgstr "Iniciar atualização"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "Iniciando a aplicação da configuração…"
@@ -7220,6 +7255,10 @@ msgstr "Parar o WPS"
msgid "Stop refresh"
msgstr "Parar a atualização"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr "Uso do armazenamento"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr "Filtragem rigorosa"
@@ -7284,7 +7323,7 @@ msgstr "Trocar o protocolo"
msgid "Switch to CIDR list notation"
msgstr "Mudar para a notação CIDR de listas"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "Ligação simbólica"
@@ -7321,15 +7360,14 @@ msgstr "Propriedades do Sistema"
msgid "System log buffer size"
msgstr "Tamanho do buffer de registro do sistema"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
-msgstr ""
+msgstr "Sistema em execução no modo de recuperação (initramfs)."
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86
msgid "Sytem running in recovery (initramfs) mode."
-msgstr ""
+msgstr "Sistema em execução no modo de recuperação (initramfs)."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:338
msgid "TCP:"
@@ -7375,11 +7413,15 @@ msgstr "Plataforma alvo"
msgid "Target network"
msgstr "Rede de destino"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr "Espaço temporário"
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Terminar"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr "A \"PublicKey\" daquela interface wg"
@@ -7447,7 +7489,7 @@ msgstr "O endereço IP está fora de qualquer faixa de endereços do DHCP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
msgid "The IP address of the boot server"
-msgstr ""
+msgstr "O endereço IP do servidor de inicialização"
#: 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."
@@ -7482,24 +7524,25 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:7
msgid "The LED blinks with the configured on/off frequency"
-msgstr ""
+msgstr "O LED pisca com a frequência configurada de ligar/desligar"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:6
msgid "The LED flashes to simulate actual heart beat."
-msgstr ""
+msgstr "O LED pisca para simular o batimento cardíaco real."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:8
msgid ""
"The LED flashes with link status and activity on the configured interface."
msgstr ""
+"O LED pisca com o estado da ligação e a atividade na interface configurada."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:7
msgid "The LED is always in default state off."
-msgstr ""
+msgstr "O LED está sempre no estado padrão desligado."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
msgid "The LED is always in default state on."
-msgstr ""
+msgstr "O LED está sempre no estado padrão ligado."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:222
msgid ""
@@ -7513,7 +7556,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr "O MTU não deve exceder o MTU do aparelho de origem com %d bytes"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7546,7 +7589,7 @@ msgstr ""
"O SSID correto deve ser manualmente especificado quando entrar numa rede sem "
"fios oculta"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7612,6 +7655,7 @@ msgstr "As seguintes regras estão actualmente acivas neste sistema."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:7
msgid "The frequency is in direct proportion to 1-minute average CPU load."
msgstr ""
+"A frequência está na proporção direta de 1 minuto de carga média da CPU."
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
msgid "The gateway address must not be a local IP address"
@@ -7631,7 +7675,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513
msgid "The hostname of the boot server"
-msgstr ""
+msgstr "O nome do host do servidor de inicialização"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1093
msgid "The interface name is already used"
@@ -7654,7 +7698,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr "O comprimento do prefixo IPv6 em bits"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7683,6 +7727,10 @@ msgstr "A máscara de rede do IPv4 local"
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)."
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr "A solicitação de login falhou com o erro: %h"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7847,11 +7895,11 @@ msgstr "O valor é substituído pela configuração. Original: %s"
msgid "There are no active leases"
msgstr "Não há arrendamentos ativos"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "Não há alterações a serem aplicadas"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7951,8 +7999,8 @@ msgid ""
msgstr ""
"Esta opção não pode ser usada porque o pacote ca-bundle não está instalado."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -8233,7 +8281,7 @@ msgstr "Desmontar"
msgid "Unnamed key"
msgstr "Chave sem nome"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Alterações não Guardadas"
@@ -8265,7 +8313,7 @@ msgstr "Acima"
msgid "Up Delay"
msgstr "Atraso de Envio"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Enviar"
@@ -8282,21 +8330,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Enviar arquivo..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "Enviar ficheiro"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "Enviar ficheiro…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "Pedido de envio falhou: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "Enviando o ficheiro…"
@@ -8508,6 +8556,7 @@ msgstr "Chave do utilizador (codificada em formato PEM)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Nome do utilizador"
@@ -8817,7 +8866,7 @@ msgstr "Escrever registro do sistema (log) no ficheiro"
msgid "XOR policy (balance-xor, 2)"
msgstr "Política XOR (balanço-xor, 2)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8847,7 +8896,7 @@ msgstr ""
"como por exemplo \"rede/network\", o aparelho poderá tornar-se inacessível!</"
"strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -9016,7 +9065,7 @@ msgstr "duplex completo"
msgid "half-duplex"
msgstr "meio duplex"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "valor codificado hexadecimal"
@@ -9041,11 +9090,11 @@ msgstr "ignorar"
msgid "input"
msgstr "entrada"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "chave entre 8 e 63 caracteres"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "chave com 5 ou 13 caracteres"
@@ -9078,12 +9127,12 @@ msgstr "não"
msgid "no link"
msgstr "sem link"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "valor não vazio"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "nenhum"
@@ -9117,11 +9166,11 @@ msgstr "outra configuração (O)"
msgid "output"
msgstr "saída"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "valor decimal positivo"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "valor inteiro positivo"
@@ -9175,7 +9224,7 @@ msgstr ""
"\">HTTP</abbr> ou <abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</"
"abbr>."
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "valor único"
@@ -9193,7 +9242,7 @@ msgstr "desconhecido"
msgid "unlimited"
msgstr "ilimitado"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -9214,175 +9263,175 @@ msgstr "não especificado -ou- criar:"
msgid "untagged"
msgstr "não etiquetado"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "endereço IP válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "endereço IP ou prefixo válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "CIDR IPv4 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "endereço IPv4 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "endereço ou rede IPv4 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "endereço:porta IPv4 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "rede IPv4 válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "CIDR IPv4 ou IPv6 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "valor de prefixo IPv4 válido (0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "CIDR IPv6 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "endereço IPv6 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "endereço ou prefixo IPv6 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "host id IPv6 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "rede IPv6 válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "valor de prefixo IPv6 válido (0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "endereço MAC válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "identificador UCI válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "identificador UCI, nome de host ou endereço IP válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "endereço:porto válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "data válida (AAAAA-MM-DD)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "valor decimal válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "chave WEP hexadecimal válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "chave WPA hexadecimal válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "host:porto válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "nome de host válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "nome de host ou endereço IP válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "valor inteiro válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr "endereço MAC multicast válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "rede válida em notação de endereço/máscara de rede"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "dígito válido do telefone (0-9, \"*\", \"#\", \"!\" ou \".\")"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "porta ou intervalo de portas válido (porta1-porta2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "valor de porta válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "tempo válido (HH:MM:SS)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "valor entre caracteres %d e %d"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "valor entre %f e %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "valor maior ou igual a %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "valor menor ou igual a %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "valor com caracteres %d"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "valor com pelo menos %d caracteres"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "valor com o máximo de %d caracteres"
diff --git a/modules/luci-base/po/pt_BR/base.po b/modules/luci-base/po/pt_BR/base.po
index 377aa8541e..81effadc2c 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: 2021-11-02 17:27+0000\n"
+"PO-Revision-Date: 2021-11-27 23:39+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.9-dev\n"
+"X-Generator: Weblate 4.10-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
msgid "%.1f dB"
@@ -22,7 +22,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d campo(s) inválido(s)"
@@ -58,19 +58,19 @@ msgid "-- Additional Field --"
msgstr "-- Campo Adicional --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Por favor, escolha --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- personalizado --"
@@ -224,7 +224,7 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-Serviço"
msgid "A configuration for the device \"%s\" already exists"
msgstr "Uma configuração para o dispositivo \"%s\" já existe"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Um diretório com o mesmo nome já existe."
@@ -232,7 +232,7 @@ msgstr "Um diretório com o mesmo nome já existe."
msgid "A new login is required since the authentication session expired."
msgstr "Uma nova autenticação é necessária já que a sessão expirou."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -425,11 +425,11 @@ msgstr "Balanceamento de carga adaptável (balanço-alb, 6)"
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "Balanceamento adaptativo da carga de transmissão (balanço-tlb, 5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -665,7 +665,7 @@ msgstr "Permitir detecção dos recursos do sistema"
msgid "Allow the <em>root</em> user to login with password"
msgstr "Permite que o usuário <em>root</em> se autentique utilizando senha"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "Endereços IP autorizados"
@@ -832,16 +832,16 @@ msgstr "Aplique as opções DHCP nesta rede. (Vazio = todos os clientes)."
msgid "Apply backup?"
msgstr "Aplicar cópia de segurança?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "Pedido para aplicar falhou com o estado <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "Aplicar sem verificação"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "Aplicando as alterações na configuração... %ds"
@@ -901,6 +901,7 @@ msgid "Authoritative"
msgstr "Autoritário"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Autenticação Obrigatória"
@@ -1124,8 +1125,8 @@ msgstr "Suba a interface da ponte ainda que não haja portas anexadas"
msgid "Broadcast policy (broadcast, 3)"
msgstr "Política de transmissão (transmissão, 3)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Explorar…"
@@ -1156,8 +1157,8 @@ msgstr "Em cache"
msgid "Call failed"
msgstr "A chamada falhou"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1233,11 +1234,11 @@ msgstr ""
msgid "Chain"
msgstr "Corrente"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Alterações"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "As alterações foram revertidas."
@@ -1342,7 +1343,7 @@ msgid "Client ID to send when requesting DHCP"
msgstr ""
"Identificador do cliente enviando quando a requisição do DHCP é realizada"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1411,16 +1412,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "Cálculo do checksum de saída (opcional)."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Configuração"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "A configuração foi aplicada."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "A configuração foi revertida!"
@@ -1532,7 +1533,7 @@ msgstr "O conteúdo foi salvo."
msgid "Continue"
msgstr "Continuar"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1781,11 +1782,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr "Delegue prefixos IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1797,7 +1798,7 @@ msgstr "Apagar"
msgid "Delete key"
msgstr "Apagar chave"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "Solicitação para apagar falhou: %s"
@@ -1811,11 +1812,11 @@ msgstr "Intervalo da Mensagem Indicativa de Envio de Tráfego"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Descrição"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Remover seleção"
@@ -1888,7 +1889,7 @@ msgstr "O dispositivo não está presente"
msgid "Device type"
msgstr "Tipo do dispositivo"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Dispositivo não alcançável!"
@@ -1910,7 +1911,7 @@ msgstr "Diagnóstico"
msgid "Dial number"
msgstr "Número de discagem"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Diretório"
@@ -1985,10 +1986,14 @@ msgstr "A tentativa de desconexão falhou"
msgid "Disconnection attempt failed."
msgstr "A tentativa de desconexão falhou."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr "Espaço no disco"
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -2081,7 +2086,7 @@ msgstr ""
"Não envie nenhuma mensagem de <abbr title=\"Anúncio do roteador, ICMPv6 Tipo "
"134\">RA</abbr> nesta interface."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "Você realmente deseja apagar \"%s\" ?"
@@ -2093,7 +2098,7 @@ msgstr "Você realmente deseja apagar a seguinte chave SSH?"
msgid "Do you really want to erase all settings?"
msgstr "Você realmente deseja apagar todas as configurações?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Você realmente deseja apagar recursivamente o diretório \"%s\" ?"
@@ -2137,7 +2142,7 @@ msgstr ""
"Deslocamento <abbr title=\"Razão entre Sinal e Ruído/Signal to Noise Ratio"
"\">SNR</abbr> do sinal recebido"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "Arraste para reordenar"
@@ -2189,9 +2194,9 @@ msgstr "Comprimento dos bits EA"
msgid "EAP-Method"
msgstr "Método EAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2238,6 +2243,12 @@ msgstr "Emergência"
msgid "Enable"
msgstr "Ativar"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+"Ativa / Desativa o par. Reinicie a interface do wireguard para aplicar "
+"alterações."
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2446,11 +2457,11 @@ msgstr "Modo do encapsulamento"
msgid "Encryption"
msgstr "Criptografia"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr "Equipamento do ponto final"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr "Porta do ponto final"
@@ -2553,7 +2564,7 @@ msgstr "Na expectativa de um endereço IPv6 válido"
msgid "Expecting two priority values separated by a colon"
msgstr "Na expectativa de dois valores prioritários separados por dois pontos"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2634,7 +2645,7 @@ msgstr ""
msgid "Failed to change the system password."
msgstr "Falha ao alterar a senha do sistema."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
"A confirmação das alterações na configuração não foram confirmadas em %d "
@@ -2644,7 +2655,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Falha ao executar a ação \"/etc/init.d/%s %s\": %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Arquivo"
@@ -2657,7 +2668,7 @@ msgstr ""
"do domínio, como <code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</"
"code> por exemplo."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "Arquivo não associado"
@@ -2669,7 +2680,7 @@ msgstr "O arquivo para armazenar as informações da locação do DHCP."
msgid "File with upstream resolvers."
msgstr "Arquivo com os resolvedores upstream."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "Nome de arquivo"
@@ -2782,7 +2793,7 @@ msgstr "Operações na memória flash"
msgid "Flashing…"
msgstr "Instalando…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr "Para o suporte ao QR-Code, instale o pacote qrencode!"
@@ -2977,7 +2988,7 @@ msgstr "Gerar Configuração"
msgid "Generate Key"
msgstr "Gerar a Chave"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr "Gere um novo QR-Code"
@@ -2991,7 +3002,7 @@ msgstr ""
msgid "Generate archive"
msgstr "Gerar arquivo"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr "Gere um novo QR-Code"
@@ -3007,21 +3018,20 @@ msgstr "Configurações Globais"
msgid "Global network options"
msgstr "Opção global de rede"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr "Ir para a atualização do firmware..."
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Ir para a configuração de senha..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3180,7 +3190,7 @@ msgstr ""
"Ocultar <abbr title=\"Identificador de Conjunto de Serviços Estendidos"
"\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr "Oculte o QR-Code"
@@ -3368,7 +3378,7 @@ msgstr "Roteador padrão IPv4"
msgid "IPv4 netmask"
msgstr "Máscara de rede IPv4"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr "Rede IPv4 na notação de endereço/máscara de rede"
@@ -3471,7 +3481,7 @@ msgstr "Tamanho da atribuição IPv6"
msgid "IPv6 gateway"
msgstr "Roteador padrão do IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr "Rede IPv6 na notação de endereço/máscara de rede"
@@ -3543,7 +3553,7 @@ msgstr "IPv6-sobre-IPv4 (6to4)"
msgid "Identity"
msgstr "Identidade"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr "Caso esteja disponível, a \"PresharedKey\" do cliente"
@@ -3584,7 +3594,7 @@ msgstr ""
"Se especificado, monta o dispositivo pela etiqueta da partiçãoo ao invés de "
"um nó de dispositivo fixo"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3916,6 +3926,8 @@ msgid "Invalid hexadecimal value"
msgstr "Valor hexadecimal inválido"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Usuário e/ou senha inválida! Por favor, tente novamente."
@@ -3935,7 +3947,7 @@ msgstr ""
"A imagem que está a tentar carregar aparenta nao caber na flash do "
"equipamento. Por favor verifique o arquivo da imagem!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -4112,7 +4124,7 @@ msgstr ""
"significativamente reduzida quando estes são usados. Evite a utilização do "
"802,11b sempre que possível."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "Legenda:"
@@ -4235,17 +4247,19 @@ msgstr "Carga"
msgid "Load Average"
msgstr "Carga média"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr "Carregando o QR-Code..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "Carregando conteúdo do diretório…"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "Carregando a visualização…"
@@ -4355,6 +4369,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr "Rede lógica onde o túnel será adicionado (bridged) (opcional)."
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Entrar"
@@ -4725,7 +4740,7 @@ msgstr "Monitor"
msgid "More Characters"
msgstr "Mais Caracteres"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "Mais…"
@@ -4831,8 +4846,8 @@ msgstr "Domínio NT"
msgid "NTP server candidates"
msgstr "Candidatos a servidor NTP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4930,7 +4945,7 @@ msgstr "Nome de nova interface…"
msgid "Next »"
msgstr "Próximo »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4960,7 +4975,6 @@ msgstr "Sem NAT-T"
msgid "No RX signal"
msgstr "Sem sinal RX"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4994,7 +5008,7 @@ msgstr "Sem imposição"
msgid "No entries available"
msgstr "Não há entradas disponíveis"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "Nenhuma entrada neste diretório"
@@ -5034,7 +5048,7 @@ msgstr "Não há mais escravos disponíveis, não é possível salvar a interfac
msgid "No negative cache"
msgstr "Nenhum cache negativo"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -5207,7 +5221,7 @@ msgid "One of hostname or MAC address must be specified!"
msgstr ""
"É necessário especificar ao menos um nome de equipamento ou endereço MAC!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "Um dos seguintes: %s"
@@ -5282,20 +5296,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "Frequência de Operação"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr "A opção \"%s\" contém um valor inválido de entrada."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr "A opção \"%s\" não deve estar vazia."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Opção alterada"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Opção removida"
@@ -5327,7 +5341,7 @@ msgstr ""
"um servidor, use este sufixo (como '::1') para formar o endereço IPv6 ('a:b:"
"c:d::1') para esta interface."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
@@ -5335,11 +5349,11 @@ msgstr ""
"Opcional. Adiciona uma camada extra de cifragem simétrica para resistência "
"pós quântica."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr "Opcional. Cria rotas para endereços IP Autorizados para este parceiro."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "Opcional. Descrição do parceiro."
@@ -5347,7 +5361,7 @@ msgstr "Opcional. Descrição do parceiro."
msgid "Optional. Do not create host routes to peers."
msgstr "Opcional. Não crie rotas de hospedagem para seus pares."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
@@ -5355,7 +5369,7 @@ msgstr ""
"Opcional. Equipamento do parceiro. Nomes serão resolvido antes de levantar a "
"interface."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5369,11 +5383,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "Opcional. Unidade Máxima de Transmissão da interface do túnel."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "Opcional. Porta do parceiro."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5526,7 +5540,7 @@ msgstr "Sobrescrever a tabela usada para as rotas internas"
msgid "Overview"
msgstr "Visão geral"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "Sobrescrever o arquivo existente \"%s\" ?"
@@ -5661,6 +5675,7 @@ msgstr "Passagem direta (Dispositivo físico espelhado para um único MAC VLAN)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Senha"
@@ -5750,6 +5765,10 @@ msgstr "O endereço do parceiro está ausente"
msgid "Peer device name"
msgstr "Nome do dispositivo dos pares"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr "Par desativado"
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "Pares"
@@ -5777,7 +5796,7 @@ msgstr "Restaure as configurações iniciais"
msgid "Permission denied"
msgstr "Permissão negada"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "Manutenção da Conexão Persistente"
@@ -5808,7 +5827,7 @@ msgstr "Pcts."
msgid "Please enter your username and password."
msgstr "Entre com o nome do seu usuário e a senha."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "Por favor, selecione o arquivo para enviar."
@@ -5828,7 +5847,7 @@ msgstr "Isolamento da porta"
msgid "Port status:"
msgstr "Status da porta:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr "Negação potencial de: %s"
@@ -5857,7 +5876,7 @@ msgstr "Prefixo Delegado"
msgid "Prefix suppressor"
msgstr "Supressor de prefixos"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "Chave Compartilhada"
@@ -5954,7 +5973,7 @@ msgstr "Prover nova rede"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Ad-Hoc falso (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Chave Pública"
@@ -5981,8 +6000,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr "Celular QMI"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr "QR-Code"
@@ -6218,7 +6237,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr "Obrigatório. Chave privada codificada em Base64 para esta interface."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr "Necessário. Chave Pública do parceiro codificada como Base64."
@@ -6348,8 +6367,8 @@ msgstr ""
"Retorne as respostas às consultas DNS que coincidam com à sub-rede da qual a "
"consulta foi recebida caso vários IPs estejam disponíveis."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Revele/oculte a senha"
@@ -6357,20 +6376,20 @@ msgstr "Revele/oculte a senha"
msgid "Reverse path filter"
msgstr "Filtro de caminho reverso"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Reverta"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "Reverta as alterações"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
"O pedido para reverter as configurações falhou com o estado <code>%h</code>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "Revertendo configurações…"
@@ -6396,7 +6415,7 @@ msgstr "Prepação da raiz (/)"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr "Política Round-Robin (balanço-rr, 0)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "Roteie Andereços IP Autorizados"
@@ -6507,7 +6526,7 @@ msgstr "Servidor SSTP"
msgid "SWAP"
msgstr "SWAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6518,7 +6537,7 @@ msgid "Save"
msgstr "Salvar"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Salvar & Aplicar"
@@ -6544,11 +6563,11 @@ msgstr "Procurar"
msgid "Scheduled Tasks"
msgstr "Tarefas Agendadas"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Seção adicionada"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Seção removida"
@@ -6566,9 +6585,9 @@ msgstr ""
"do formato da imagem falhe. Use somente caso tenha certeza que o firmware "
"está correto e é compatível com o seu dispositivo!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "Selecione o arquivo…"
@@ -6771,7 +6790,7 @@ msgstr "Taxa de atualização do sinal"
msgid "Signal:"
msgstr "Sinal:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Tamanho"
@@ -7187,7 +7206,7 @@ msgstr "Prioridade de iniciação"
msgid "Start refresh"
msgstr "Iniciar atualização"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "Iniciando a aplicação da configuração…"
@@ -7260,6 +7279,10 @@ msgstr "Pare o WPS"
msgid "Stop refresh"
msgstr "Parar atualização"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr "Uso do armazenamento"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr "Filtragem rigorosa"
@@ -7324,7 +7347,7 @@ msgstr "Trocar o protocolo"
msgid "Switch to CIDR list notation"
msgstr "Alternar para a notação da lista CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "Link simbólico"
@@ -7361,7 +7384,6 @@ msgstr "Propriedades do Sistema"
msgid "System log buffer size"
msgstr "Tamanho do buffer de registro do sistema"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7415,11 +7437,15 @@ msgstr "Plataforma alvo"
msgid "Target network"
msgstr "Rede de destino"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr "Espaço temporário"
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Terminar"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr "A \"PublicKey\" daquela interface wg"
@@ -7553,7 +7579,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr "O MTU não deve exceder o MTU do dispositivo de origem com %d bytes"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7586,7 +7612,7 @@ 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:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7695,7 +7721,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr "O comprimento do prefixo IPv6 em bits"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7724,6 +7750,10 @@ msgstr "A máscara de rede do IPv4 local"
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)."
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr "A solicitação de login falhou com um erro: %h"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7888,11 +7918,11 @@ msgstr "O valor é substituído pela configuração. Original: %s"
msgid "There are no active leases"
msgstr "Não há concessões de IP ativas no momento"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "Não há alterações a serem aplicadas"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7991,8 +8021,8 @@ msgid ""
msgstr ""
"Esta opção não pode ser usada porque o pacote ca-bundle não está instalado."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -8274,7 +8304,7 @@ msgstr "Desmontar"
msgid "Unnamed key"
msgstr "Chave sem nome"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Alterações Não Salvas"
@@ -8306,7 +8336,7 @@ msgstr "Acima"
msgid "Up Delay"
msgstr "Atraso de Envio"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Envio"
@@ -8323,21 +8353,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Enviar arquivo..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "Enviar arquivo"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "Enviar arquivo…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "A Solicitação de envio falhou: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "Enviando o arquivo…"
@@ -8549,6 +8579,7 @@ msgstr "Chave do usuário (codificada em formato PEM)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Nome do usuário"
@@ -8859,7 +8890,7 @@ msgstr "Escrever registro do sistema (log) no arquivo"
msgid "XOR policy (balance-xor, 2)"
msgstr "Política XOR (balanço-xor, 2)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8889,7 +8920,7 @@ msgstr ""
"por exemplo \"rede/network\", o dispositivo poderá ficar inacessível!</"
"strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -9058,7 +9089,7 @@ msgstr "full-duplex"
msgid "half-duplex"
msgstr "half-duplex"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "valor codificado hexadecimal"
@@ -9083,11 +9114,11 @@ msgstr "Ignorar"
msgid "input"
msgstr "entrada"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "chave entre 8 e 63 caracteres"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "chave com 5 ou 13 caracteres"
@@ -9121,12 +9152,12 @@ msgstr "não"
msgid "no link"
msgstr "sem link"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "valor não vazio"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "nenhum"
@@ -9160,11 +9191,11 @@ msgstr "outra configuração (O)"
msgid "output"
msgstr "saída"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "valor decimal positivo"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "valor inteiro positivo"
@@ -9218,7 +9249,7 @@ msgstr ""
"\">HTTP</abbr> ou <abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</"
"abbr>."
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "valor único"
@@ -9236,7 +9267,7 @@ msgstr "desconhecido"
msgid "unlimited"
msgstr "ilimitado"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -9257,175 +9288,175 @@ msgstr "não especificado -ou- criar:"
msgid "untagged"
msgstr "não marc"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "endereço IP válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "endereço IP ou prefixo válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "CIDR IPv4 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "endereço IPv4 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "endereço ou rede IPv4 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "endereço IPv4 válido: porta"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "rede IPv4 válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "CIDR IPv4 ou IPv6 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "valor de prefixo IPv4 válido (0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "CIDR IPv6 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "endereço IPv6 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "valor de prefixo ou endereço IPv6 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "ID de host IPv6 válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "rede IPv6 válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "valor de prefixo IPv6 válido (0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "endereço MAC válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "identificador UCI válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "identificador UCI, nome de host ou endereço IP válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "endereço:porta válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "data válida (AAAA-MM-DD)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "valor decimal válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "chave hexadecimal WEP válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "chave hexadecimal WPA válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "host:porta válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "nome de host válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "nome de host ou endereço IP válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "valor inteiro válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr "endereço MAC multicast válido"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "rede válida na notação de endereço / máscara de rede"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "dígito de telefone válido (0-9, \"*\", \"#\", \"!\" ou \".\")"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "Porta ou intervalo de portas válida (port1-port2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "valor de porta válida"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "hora válida (HH:MM:SS)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "valor entre caracteres %d e %d"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "valor entre %f e %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "valor maior ou igual a %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "valor menor ou igual a %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "valor com caracteres %d"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "valor com pelo menos %d caracteres"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "valor com até %d caracteres"
diff --git a/modules/luci-base/po/ro/base.po b/modules/luci-base/po/ro/base.po
index c0d6b7a244..72228c9ae9 100644
--- a/modules/luci-base/po/ro/base.po
+++ b/modules/luci-base/po/ro/base.po
@@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2021-11-07 15:53+0000\n"
-"Last-Translator: CRISTIAN ANDREI <cristianvdr@gmail.com>\n"
+"PO-Revision-Date: 2021-11-28 17:27+0000\n"
+"Last-Translator: Simona Iacob <s@zp1.net>\n"
"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/luci/ro/"
">\n"
"Language: ro\n"
@@ -11,7 +11,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
-"X-Generator: Weblate 4.9-dev\n"
+"X-Generator: Weblate 4.10-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
msgid "%.1f dB"
@@ -21,13 +21,13 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
-msgstr "%d câmp(uri) nevalid(e)"
+msgstr "%d câmp(uri) invalid(e)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
msgid "%s is untagged in multiple VLANs!"
-msgstr "%s nu este etichetat în mai multe VLANuri!"
+msgstr "%s nu este etichetat în mai multe VLAN-uri!"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:296
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:405
@@ -50,26 +50,26 @@ msgstr "(gol)"
#: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
msgid "(no interfaces attached)"
-msgstr "(nici o interfata atasata)"
+msgstr "(nici o interfață atașată)"
#: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
msgid "-- Additional Field --"
-msgstr "-- Camp suplimentar --"
+msgstr "-- Câmp suplimentar --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
-msgstr "-- Te rog sa alegi --"
+msgstr "-- Te rog să alegi --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- particularizat --"
@@ -77,12 +77,12 @@ msgstr "-- particularizat --"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:270
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379
msgid "-- match by label --"
-msgstr "-- potrivire dupa eticheta --"
+msgstr "-- potrivire după etichetă --"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:256
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362
msgid "-- match by uuid --"
-msgstr "-- potrivire dupa uuid --"
+msgstr "-- potrivire după uuid --"
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
#: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
@@ -131,7 +131,7 @@ msgstr "4"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1515
msgid "4-character hexadecimal ID"
-msgstr ""
+msgstr "ID-ul hexazecimal de 4 caractere"
#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
@@ -145,6 +145,7 @@ msgstr "Încărcarea în ultimele 5 minute:"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1544
msgid "6-octet identifier as a hex string - no colons"
msgstr ""
+"Identificator de 6 octeți sub formă de șir hexazecimal - fără două puncte"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1504
msgid "802.11r Fast Transition"
@@ -153,21 +154,22 @@ msgstr "802.11r Tranziție Rapidă"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1698
msgid "802.11w Association SA Query maximum timeout"
msgstr ""
+"802.11w Association SA Query timp limită maxim de așteptare pentru "
+"interogarea SA"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1705
msgid "802.11w Association SA Query retry timeout"
-msgstr ""
+msgstr "802.11w Asociația SA Timpul de reluare a interogării"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
msgid "802.11w Management Frame Protection"
-msgstr ""
+msgstr "802.11w Protecție Frame-uri de Management"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1698
msgid "802.11w maximum timeout"
-msgstr ""
+msgstr "802.11w timp de expirare maxim"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1705
-#, fuzzy
msgid "802.11w retry timeout"
msgstr "802.11w timp de așteptare pentru reîncercare"
@@ -181,11 +183,11 @@ msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
-msgstr "Masca de retea <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>"
+msgstr "Masca de rețea <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>"
#: 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> Configurare"
+msgstr "Configurare <abbr title=\"Light Emitting Diode\">LED</abbr>"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:70
msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
@@ -193,7 +195,7 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Nume"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897
msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
-msgstr ""
+msgstr "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:791
msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
@@ -217,9 +219,9 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:370
msgid "A configuration for the device \"%s\" already exists"
-msgstr "O configuratie pentru dispozitivul \"%s\" deja exista"
+msgstr "O configurație pentru dispozitivul \"%s\" deja există"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Un director cu acelaşi nume există deja."
@@ -228,7 +230,7 @@ msgid "A new login is required since the authentication session expired."
msgstr ""
"O nouă logare este necesară deoarece sesiunea de autentificare a expirat."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -283,15 +285,15 @@ msgstr "Monitorizarea ARP nu este acceptată pentru politica selectată!"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
msgid "ARP retry threshold"
-msgstr "ARP prag reincercare"
+msgstr "prag de reîncercare ARP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1491
msgid "ATM (Asynchronous Transfer Mode)"
-msgstr ""
+msgstr "ATM (Mod de Transfer Asincron)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1512
msgid "ATM Bridges"
-msgstr "Punti ATM"
+msgstr "Punți ATM"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1544
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
@@ -316,7 +318,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1551
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
msgid "ATM device number"
-msgstr "ATM numar echipament"
+msgstr "Număr echipament ATM"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36
msgid "ATU-C System Vendor ID"
@@ -331,6 +333,8 @@ msgstr "Interfață Absentă"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320
msgid "Accept DNS queries only from hosts whose address is on a local subnet."
msgstr ""
+"Acceptați interogări DNS numai de la gazde a căror adresă se află într-o "
+"subrețea locală."
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
msgid "Accept local"
@@ -373,7 +377,7 @@ msgstr "Lease-uri DHCPv6 active"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:255
msgid "Active IPv4 Routes"
-msgstr "Rute active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>"
+msgstr "Rute IPv4 active"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:258
msgid "Active IPv4 Rules"
@@ -381,7 +385,7 @@ msgstr "Reguli IPv4 active"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:265
msgid "Active IPv6 Routes"
-msgstr "Rute active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>"
+msgstr "Rute IPv6 active"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:268
msgid "Active IPv6 Rules"
@@ -405,11 +409,11 @@ msgstr ""
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -459,14 +463,12 @@ msgid "Add key"
msgstr "Adăugați cheia"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409
-#, fuzzy
msgid "Add local domain suffix to names served from hosts files."
msgstr ""
"Adăugați sufixul de domeniu local la numele servite din fișierele hosts."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:465
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1119
-#, fuzzy
msgid "Add new interface..."
msgstr "Adăugați o interfață nouă..."
@@ -475,18 +477,16 @@ msgid "Add peer"
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:326
-#, fuzzy
msgid "Add to Blacklist"
msgstr "Adăugați pe lista neagră"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:326
-#, fuzzy
msgid "Add to Whitelist"
msgstr "Adăugați la lista albă"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367
msgid "Additional hosts files"
-msgstr "Fisiere de tip hosts aditionale"
+msgstr "Fișiere de tip hosts adiționale"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:416
msgid "Additional servers file"
@@ -536,7 +536,7 @@ msgstr "Opțiuni avansate ale dispozitivului"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:513
msgid "Ageing time"
-msgstr ""
+msgstr "Timp de învechire"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27
msgid "Aggregate Transmit Power (ACTATP)"
@@ -568,15 +568,13 @@ msgstr "Alertă"
#: modules/luci-compat/luasrc/model/network.lua:1417
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
msgid "Alias Interface"
-msgstr "Interfață alias"
+msgstr "Alias Interfață"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
-#, fuzzy
msgid "Alias of \"%s\""
msgstr "Alias al lui \"%s\""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:426
-#, fuzzy
msgid "All servers"
msgstr "Toate serverele"
@@ -594,7 +592,7 @@ msgstr "Alocă IP-urile secvențial"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
msgstr ""
-"Permite autentificarea prin parola a <abbr title=\"Secure Shell\">SSH</abbr> "
+"Permite autentificarea prin parola a <abbr title=\"Secure Shell\">SSH</abbr>"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1185
msgid "Allow AP mode to disconnect STAs based on low ACK condition"
@@ -607,7 +605,7 @@ msgstr "Permiteți toate, cu excepția celor enumerate"
#: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
msgid "Allow full UCI access for legacy applications"
-msgstr ""
+msgstr "Permiteți accesul complet la UCI pentru aplicațiile vechi"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:944
msgid "Allow legacy 802.11b rates"
@@ -627,7 +625,7 @@ msgstr "Permiteți repornirea dispozitivului"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
msgid "Allow remote hosts to connect to local SSH forwarded ports"
-msgstr "Permite statiilor externe sa se conecteze la porturile SSH locale"
+msgstr "Permiteți stațiilor externe să se conecteze la porturile SSH locale"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
msgid "Allow root logins with password"
@@ -639,9 +637,9 @@ 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 "Permiteți utilizatorului <em>root</em> să se conecteze cu parola"
+msgstr "Permiteți utilizatorului <em>root</em> să se conecteze cu parolă"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "IP-uri permise"
@@ -662,14 +660,13 @@ msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux."
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:971
-#, fuzzy
msgid ""
"Always use 40MHz channels even if the secondary channel overlaps. Using this "
"option does not comply with IEEE 802.11n-2009!"
msgstr ""
"Utilizați întotdeauna canale de 40 MHz, chiar dacă canalul secundar se "
-"suprapune. Utilizarea acestei opțiuni nu este conformă cu standardul IEEE 802"
-".11n-2009!"
+"suprapune. Utilizarea acestei opțiuni nu este conformă cu standardul IEEE "
+"802.11n-2009!"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
msgid "Amount of Duplicate Address Detection probes to send"
@@ -685,7 +682,6 @@ msgstr "O scurtă descriere opțională pentru acest dispozitiv"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1464
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20
-#, fuzzy
msgid "Annex"
msgstr "Anexa"
@@ -710,7 +706,6 @@ msgid "Annex A G.992.5"
msgstr "Anexa A G.992.5"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
-#, fuzzy
msgid "Annex B (all)"
msgstr "Anexa B (toate)"
@@ -809,16 +804,16 @@ msgstr "Aplicați opțiunile DHCP la această rețea. (Gol = toți clienții)."
msgid "Apply backup?"
msgstr "Aplicați backup?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
-msgstr ""
+msgstr "Solicitarea de aplicare a eșuat cu statusul <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "Aplicați nebifate"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "Aplicarea modificărilor de configurare... %ds"
@@ -873,8 +868,9 @@ msgid "Authoritative"
msgstr "Autoritare"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
-msgstr "Autorizare necesară"
+msgstr "Este necesară autorizarea"
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:120
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
@@ -921,7 +917,7 @@ msgstr "Montează automat Swap-ul"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
msgid "Available"
-msgstr "Disponibil"
+msgstr "Disponibile"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
@@ -971,7 +967,6 @@ msgid "Backup"
msgstr "Backup"
#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:128
-#, fuzzy
msgid "Backup / Flash Firmware"
msgstr "Salvați / Scrieți Firmware"
@@ -1035,7 +1030,7 @@ msgstr "Rata de biți"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:201
msgid "Bonding Policy"
-msgstr ""
+msgstr "Politica de legături"
#: modules/luci-base/htdocs/luci-static/resources/network.js:3001
#: modules/luci-compat/luasrc/model/network.lua:1421
@@ -1043,10 +1038,9 @@ msgid "Bridge"
msgstr "Punte"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:437
-#, fuzzy
msgctxt "MACVLAN mode"
msgid "Bridge (Support direct communication between MAC VLANs)"
-msgstr "Pod (Suportă comunicarea directă între MAC VLAN-uri)"
+msgstr "Punte (Suportă comunicarea directă între MAC VLAN-uri)"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:339
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:481
@@ -1055,18 +1049,15 @@ msgstr "Filtrarea VLAN a punții"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:344
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1387
-#, fuzzy
msgid "Bridge device"
msgstr "Dispozitiv punte"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:480
-#, fuzzy
msgid "Bridge port specific options"
msgstr "Opțiuni specifice portului de punte"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
-#, fuzzy
msgid "Bridge ports"
msgstr "Porturile punții"
@@ -1083,7 +1074,6 @@ msgid "Bring up on boot"
msgstr "Activează la pornire"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
-#, fuzzy
msgid "Bring up the bridge interface even if no ports are attached"
msgstr "Activați interfața de punte chiar dacă nu sunt atașate porturi"
@@ -1091,14 +1081,14 @@ msgstr "Activați interfața de punte chiar dacă nu sunt atașate porturi"
msgid "Broadcast policy (broadcast, 3)"
msgstr "Politica de difuzare (difuzarea, 3)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Răsfoiți…"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:40
msgid "Buffered"
-msgstr "Incarcat"
+msgstr "Tamponat"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
msgid "CA certificate; if empty it will be saved after the first connection."
@@ -1113,7 +1103,6 @@ msgid "CPU usage (%)"
msgstr "Utilizarea procesorului (%)"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:43
-#, fuzzy
msgid "Cached"
msgstr "În cache"
@@ -1123,8 +1112,8 @@ msgstr "În cache"
msgid "Call failed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1137,7 +1126,6 @@ msgid "Cancel"
msgstr "Anulare"
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
-#, fuzzy
msgid "Category"
msgstr "Categorie"
@@ -1191,11 +1179,11 @@ msgstr ""
msgid "Chain"
msgstr "Lanț"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Modificări"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "Modificările au fost anulate."
@@ -1214,7 +1202,6 @@ msgid "Channel"
msgstr "Canal"
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:81
-#, fuzzy
msgid "Channel Analysis"
msgstr "Analiza canalelor"
@@ -1227,7 +1214,6 @@ msgid "Check filesystems before mount"
msgstr "Verificați sistemele de fișiere înainte de montare"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2002
-#, fuzzy
msgid "Check this option to delete the existing networks from this radio."
msgstr ""
"Bifați această opțiune pentru a șterge rețelele existente din acest radio."
@@ -1262,6 +1248,9 @@ 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 ""
+"Alegeți rețeaua (rețelele) pe care doriți să o (le) atașați la această "
+"interfață fără fir sau completați câmpul <em>personalizat</em> pentru a "
+"defini o nouă rețea."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1221
msgid "Cipher"
@@ -1280,7 +1269,6 @@ msgstr ""
"fișierelor de configurare curente."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
-#, fuzzy
msgid ""
"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
"FEATURE IS FOR PROFESSIONALS! )"
@@ -1299,7 +1287,7 @@ msgstr "Client"
msgid "Client ID to send when requesting DHCP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1316,7 +1304,7 @@ msgid ""
"persist connection"
msgstr ""
"Închideți conexiunea inactivă după un număr de secunde dat, utilizați 0 "
-"pentru a menține conexiunea."
+"pentru a menține conexiunea"
#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49
msgid "Close list..."
@@ -1349,38 +1337,35 @@ msgid "Comment"
msgstr "Comentariu"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1712
-#, fuzzy
msgid ""
"Complicates key reinstallation attacks on the client side by disabling "
"retransmission of EAPOL-Key frames that are used to install keys. This "
"workaround might cause interoperability issues and reduced robustness of key "
"negotiation especially in environments with heavy traffic load."
msgstr ""
-"Complică atacurile de reinstalare pe partea client-ului, a retransmisiei "
-"Keyframe-urilor de autentificare EAPOL care sunt folosite pentru instalarea "
-"cheilor de autentificare, dezactivându-le.\n"
-"Acest workaround poate cauza probleme de interoperabilitate si negocieri de "
-"autentificare mai puțin robuste, în special în mediile cu încărcare a "
-"traficului mare."
+"Complică atacurile de reinstalare a cheilor pe partea clientului prin "
+"dezactivarea retransmiterii cadrelor EAPOL-Key care sunt utilizate pentru "
+"instalarea cheilor. Această soluție de rezolvare ar putea cauza probleme de "
+"interoperabilitate și o robustețe redusă a negocierii cheilor, în special în "
+"mediile cu trafic intens.."
#: 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
-#, fuzzy
msgid "Compute outgoing checksum (optional)."
msgstr "Calculați suma de control de ieșire (opțional)."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Configurație"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "Modificările de configurare aplicate."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "Schimbările asupra configurării au fost anulate!"
@@ -1398,6 +1383,13 @@ msgid ""
"the basic rate. Supported rates lower than the minimum basic rate are not "
"offered."
msgstr ""
+"Configurează ratele de date pe baza densității celulelor de acoperire. "
+"Normal configurează ratele de bază la 6, 12, 24 Mbps dacă nu se utilizează "
+"ratele 802.11b învechite, în caz contrar la 5,5, 11 Mbps. High configurează "
+"ratele de bază la 12, 24 Mbps dacă nu sunt utilizate ratele 802.11b "
+"învechite, în caz contrar la rata de 11 Mbps. Very High configurează 24 Mbps "
+"ca rată de bază. Nu sunt oferite rate suportate mai mici decât rata de bază "
+"minimă."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:775
msgid ""
@@ -1479,7 +1471,7 @@ msgstr "Conţinutul a fost salvat."
msgid "Continue"
msgstr "Continuă"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1498,13 +1490,11 @@ msgid "Country Code"
msgstr "Codul țării"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
-#, fuzzy
msgid "Coverage cell density"
msgstr "Densitatea celulelor de acoperire"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2030
-#, fuzzy
msgid "Create / Assign firewall-zone"
msgstr "Creați / Atribuiți o zonă de firewall"
@@ -1522,7 +1512,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:591
msgid "Current power"
-msgstr "Putere actuală"
+msgstr "Puterea actuală"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:572
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:574
@@ -1540,7 +1530,6 @@ msgid ""
msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
-#, fuzzy
msgid "Custom flash interval (kernel: timer)"
msgstr "Interval de aprindere personalizat (kernel: temporizat)"
@@ -1612,7 +1601,7 @@ msgstr "Redirecționări DNS"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444
msgid "DNS query port"
-msgstr "<abbr title=\"Domain Name System\">DNS</abbr>port de apelare"
+msgstr "Port de interogare DNS"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932
msgid "DNS search domains"
@@ -1631,7 +1620,6 @@ msgid "DNS-Label / FQDN"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:396
-#, fuzzy
msgid "DNSSEC"
msgstr "DNSSEC"
@@ -1676,7 +1664,6 @@ msgstr "Rata de date"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:196
-#, fuzzy
msgid "Debug"
msgstr "Depanare"
@@ -1714,30 +1701,26 @@ msgid ""
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:960
-#, fuzzy
msgid "Delegate IPv6 prefixes"
msgstr "Delegați prefixele IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
-#, fuzzy
msgid "Delete"
-msgstr "Șterge"
+msgstr "Ștergeți"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
-#, fuzzy
msgid "Delete key"
msgstr "Ștergeți cheia"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
-#, fuzzy
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "Cererea de ștergere a eșuat: %s"
@@ -1751,11 +1734,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Descriere"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Deselectați"
@@ -1800,9 +1783,8 @@ msgid "Device"
msgstr "Dispozitiv"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:919
-#, fuzzy
msgid "Device Configuration"
-msgstr "Configurația dispozitivului"
+msgstr "Configurarea dispozitivului"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
msgid "Device is not active"
@@ -1814,9 +1796,8 @@ msgid "Device is restarting…"
msgstr "Se repornește dispozitivul…"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:441
-#, fuzzy
msgid "Device name"
-msgstr "Nume dispozitiv"
+msgstr "Numele dispozitivului"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45
msgid "Device not managed by ModemManager."
@@ -1828,15 +1809,15 @@ msgstr "Dispozitivul nu este prezent"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:341
msgid "Device type"
-msgstr ""
+msgstr "Tipul dispozitivului"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
-msgstr ""
+msgstr "Dispozitiv inaccesibil!"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
msgid "Device unreachable! Still waiting for device..."
-msgstr ""
+msgstr "Dispozitiv inaccesibil! Încă aștept dispozitivul..."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1229
msgid "Devices"
@@ -1844,14 +1825,14 @@ msgstr "Dispozitive"
#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
msgid "Diagnostics"
-msgstr "Diagnosticuri"
+msgstr "Diagnosticare"
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
msgid "Dial number"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Director"
@@ -1860,32 +1841,32 @@ msgstr "Director"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937
msgid "Disable"
-msgstr "Dezactivează"
+msgstr "Dezactivați"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:666
msgid ""
"Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
"this interface."
msgstr ""
-"Dezactiveaza <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> "
-"pentru aceasta interfata."
+"Dezactivați <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> "
+"pentru această interfață."
#: 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:375
msgid "Disable DNS lookups"
-msgstr ""
+msgstr "Dezactivați căutările DNS"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
msgid "Disable Encryption"
-msgstr "Dezactivează criptarea"
+msgstr "Dezactivați Criptarea"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1171
msgid "Disable Inactivity Polling"
-msgstr "Dezactivează verificarea inactivității"
+msgstr "Dezactivați verificarea inactivității"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895
msgid "Disable this network"
-msgstr "Dezactivează această rețea"
+msgstr "Dezactivați această rețea"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:954
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1680
@@ -1903,7 +1884,7 @@ msgstr "Dezactivat"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1185
msgid "Disassociate On Low Acknowledgement"
-msgstr ""
+msgstr "Dezasociere la recunoaștere scăzută"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302
msgid "Discard upstream RFC1918 responses."
@@ -1919,16 +1900,20 @@ msgstr "Deconectează"
#: 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 "Încercarea deconectării a eșuat"
+msgstr "Încercarea de deconectare a eșuat"
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48
msgid "Disconnection attempt failed."
+msgstr "Încercarea de deconectare a eșuat."
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1936,11 +1921,11 @@ msgstr "Închideți"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959
msgid "Distance Optimization"
-msgstr "Optimizarea distantei"
+msgstr "Optimizarea distanței"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959
msgid "Distance to farthest network member in meters."
-msgstr "Distanta catre cel mai departat membru din retea in metri."
+msgstr "Distanța până la cel mai îndepărtat membru al rețelei, în metri."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
msgid ""
@@ -1980,16 +1965,16 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339
msgid "Do not listen on the specified interfaces."
-msgstr ""
+msgstr "Nu ascultați pe interfețele specificate."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:870
msgid "Do not offer DHCPv6 service on this interface."
-msgstr ""
+msgstr "Nu oferiți serviciul DHCPv6 pe această interfață."
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:158
msgctxt "VLAN port state"
msgid "Do not participate"
-msgstr ""
+msgstr "Nu participați"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:900
msgid ""
@@ -1999,7 +1984,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
msgid "Do not send a hostname"
-msgstr ""
+msgstr "Nu trimiteți un nume de gazdă"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:766
msgid ""
@@ -2007,7 +1992,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "Sigur doriți să ștergeți \"%s\" ?"
@@ -2019,27 +2004,27 @@ msgstr "Sigur doriți să ștergeți această cheie SSH?"
msgid "Do you really want to erase all settings?"
msgstr "Sigur doriți să ștergeți toate setările?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:592
msgid "Domain"
-msgstr ""
+msgstr "Domeniu"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261
msgid "Domain required"
-msgstr "Domeniul necesar"
+msgstr "Domeniul este necesar"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311
msgid "Domain whitelist"
-msgstr ""
+msgstr "Lista albă de domenii"
#: 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"
+msgstr "Nu fragmentați"
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
msgid "Down"
@@ -2051,19 +2036,19 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
msgid "Download backup"
-msgstr "Descarca backup"
+msgstr "Descărcați backup-ul"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:432
msgid "Download mtdblock"
-msgstr "Descarcă mtdblock-ul"
+msgstr "Descărcați mtdblock"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1499
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
-msgstr ""
+msgstr "Trageți pentru a reordona"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
msgid "Drop Duplicate Frames"
@@ -2087,6 +2072,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
msgstr ""
+"<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> Dinamic"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
msgid "Dynamic tunnel"
@@ -2106,9 +2092,9 @@ msgstr ""
msgid "EAP-Method"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2124,11 +2110,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:900
msgid "Edit this network"
-msgstr "Editeaza aceasta retea"
+msgstr "Editați această rețea"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:851
msgid "Edit wireless network"
-msgstr "Editează reţea wireless"
+msgstr "Editați rețeaua wireless"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:462
msgid "Egress QoS mapping"
@@ -2151,7 +2137,11 @@ msgstr "Urgență"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937
msgid "Enable"
-msgstr "Activează"
+msgstr "Activați"
+
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
@@ -2171,7 +2161,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:369
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
msgid "Enable DNS lookups"
-msgstr "Activează lookup-urile DNS"
+msgstr "Activați căutările DNS"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:294
msgid "Enable Dynamic Shuffling Of Flows"
@@ -2187,7 +2177,7 @@ msgstr ""
#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:101
msgid "Enable IPv6 negotiation"
-msgstr "Activează negociere IPv6"
+msgstr "Activați negocierea IPv6"
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
@@ -2208,7 +2198,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:255
msgid "Enable NTP client"
-msgstr "Activează client NTP"
+msgstr "Activați clientul NTP"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
msgid "Enable Single DES"
@@ -2216,7 +2206,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479
msgid "Enable TFTP server"
-msgstr "Activeaza serverul TFTP"
+msgstr "Activați serverul TFTP"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:720
msgid "Enable VLAN filtering"
@@ -2224,7 +2214,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
msgid "Enable VLAN functionality"
-msgstr "Activeaza VLAN-urile"
+msgstr "Activați funcționalitatea VLAN"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1716
msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
@@ -2303,7 +2293,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895
msgid "Enable this network"
-msgstr "Activează această rețea"
+msgstr "Activați această rețea"
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:75
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:70
@@ -2351,11 +2341,11 @@ msgstr "Modul de incapsulare"
msgid "Encryption"
msgstr "Criptare"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2389,7 +2379,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
msgid "Erasing..."
-msgstr "Stergere..."
+msgstr "Ștergere..."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
@@ -2407,7 +2397,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:3014
#: modules/luci-compat/luasrc/model/network.lua:1433
msgid "Ethernet Adapter"
-msgstr "Adaptor de retea ethernet"
+msgstr "Adaptor ethernet"
#: modules/luci-base/htdocs/luci-static/resources/network.js:3005
#: modules/luci-compat/luasrc/model/network.lua:1423
@@ -2424,14 +2414,15 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338
msgid "Exclude interfaces"
-msgstr "Exclude interfeţe"
+msgstr "Excludeți interfețele"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
msgid ""
"Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, "
"e.g. for RBL services."
msgstr ""
-"Permite raspuns upstream in plaja 127.0.0.0/8, e.g. pentru serviciile RBL"
+"Scutiți <code>127.0.0.0/8</code> și <code>::1</code> de la verificările de "
+"relegare, de ex. pentru serviciile RBL."
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:356
msgid "Existing device"
@@ -2457,7 +2448,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2476,7 +2467,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
msgid "Expires"
-msgstr "Expira"
+msgstr "Expiră"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
msgid ""
@@ -2509,7 +2500,7 @@ msgstr ""
#: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
msgid "Extra SSH command options"
-msgstr "Opțiuni suplimentare comenzi SSH"
+msgstr "Opțiuni suplimentare pentru comenzi SSH"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
msgid "Extra pppd options"
@@ -2535,7 +2526,7 @@ msgstr ""
msgid "Failed to change the system password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2543,7 +2534,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Fișier"
@@ -2553,7 +2544,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "Fișierul nu este accesibil"
@@ -2565,10 +2556,10 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
-msgstr ""
+msgstr "Numele fișierului"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492
msgid "Filename of the boot image advertised to clients."
@@ -2577,15 +2568,15 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:314
msgid "Filesystem"
-msgstr "Sistem de fisiere"
+msgstr "Sistemul de fișiere"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382
msgid "Filter private"
-msgstr "Filtreaza privatele"
+msgstr "Filtrați privatele"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387
msgid "Filter useless"
-msgstr "Filtreaza nefolositele"
+msgstr "Filtrați nefolosite"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
msgid "Filtering for all slaves, no validation"
@@ -2612,7 +2603,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:878
msgid "Find and join network"
-msgstr "Gaseste si alatura in retea"
+msgstr "Găsiți și alăturați-vă rețelei"
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
msgid "Finish"
@@ -2624,15 +2615,15 @@ msgstr "Firewall"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:122
msgid "Firewall Mark"
-msgstr ""
+msgstr "Marca Firewall"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:482
msgid "Firewall Settings"
-msgstr "Setarile firewall-ului"
+msgstr "Setările firewall-ului"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:326
msgid "Firewall Status"
-msgstr "Status la firewall"
+msgstr "Starea Firewall-ului"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176
msgid "Firewall mark"
@@ -2648,12 +2639,12 @@ msgstr "Versiunea firmware-ului"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445
msgid "Fixed source port for outbound DNS queries."
-msgstr "Portul sursa pentru intrebarile DNS catre exterior"
+msgstr "Port sursă fix pentru interogările DNS de ieșire."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:312
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:449
msgid "Flash image..."
-msgstr "Scriere imagine firmware..."
+msgstr "Scrieți imaginea firmware..."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:308
msgid "Flash image?"
@@ -2661,7 +2652,7 @@ msgstr "Scrieți imaginea firmware?"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:439
msgid "Flash new firmware image"
-msgstr "Scrieți imagine de firmware nouă"
+msgstr "Scrieți o imagine de firmware nouă"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:384
msgid "Flash operations"
@@ -2672,7 +2663,7 @@ msgstr "Operațiuni de scriere"
msgid "Flashing…"
msgstr "Scriere…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2691,8 +2682,7 @@ msgstr "Forțează CCMP (AES)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
msgid "Force DHCP on this network even if another server is detected."
-msgstr ""
-"Forțează facilitatea DHCP in aceasta retea chiar daca alt server DHCP exista."
+msgstr "Forțați DHCP în această rețea chiar dacă este detectat un alt server."
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
msgid "Force IGMP version"
@@ -2773,7 +2763,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1554
msgid "Forwarding mode"
-msgstr "Mod de forwardare"
+msgstr "Mod de redirecționare"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:963
msgid "Fragmentation Threshold"
@@ -2816,7 +2806,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188
msgid "Gateway"
-msgstr "Gateway"
+msgstr "Poarta de acces"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
msgid "Gateway Ports"
@@ -2849,13 +2839,13 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
msgid "Generate Config"
-msgstr "Generează configurație"
+msgstr "Generare configurare"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:91
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2865,9 +2855,9 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396
msgid "Generate archive"
-msgstr "Generează arhivă"
+msgstr "Generați arhivă"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2877,27 +2867,26 @@ msgstr "Confirmarea parolei nu se potriveste cu prima, parola neschimbata !"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
msgid "Global Settings"
-msgstr ""
+msgstr "Setări generale"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1449
msgid "Global network options"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
-msgstr ""
+msgstr "Mergeți la actualizarea firmware-ului..."
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3045,14 +3034,14 @@ msgid ""
"Here you can configure the basic aspects of your device like its hostname or "
"the timezone."
msgstr ""
-"Aici poti configura aspectele de baza ale dispozitivului cum ar fi numele "
-"sau fusul orar."
+"Aici puteți configura aspectele de bază ale dispozitivului dumneavoastră, "
+"cum ar fi numele de gazdă sau fusul orar."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "Ascunde <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3070,7 +3059,7 @@ msgstr ""
#: 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/include/60_wifi.js:225
msgid "Host"
-msgstr ""
+msgstr "Gazdă"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
msgid "Host expiry timeout"
@@ -3095,11 +3084,11 @@ msgstr "Numele gazdei ( hostname )"
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
msgid "Hostname to send when requesting DHCP"
-msgstr ""
+msgstr "Numele gazdei care trebuie trimis atunci când se solicită DHCP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:257
msgid "Hostnames"
-msgstr "Nume de host"
+msgstr "Numele gazdelor (hostnames)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:550
msgid ""
@@ -3198,7 +3187,7 @@ msgstr "Firewall IPv4"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:252
msgid "IPv4 Neighbours"
-msgstr ""
+msgstr "Vecinii IPv4"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251
msgid "IPv4 Routing"
@@ -3206,7 +3195,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120
msgid "IPv4 Rules"
-msgstr ""
+msgstr "Reguli IPv4"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
msgid "IPv4 Upstream"
@@ -3235,9 +3224,9 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:170
msgid "IPv4 netmask"
-msgstr ""
+msgstr "Masca de rețea IPv4"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3256,7 +3245,7 @@ msgstr "Lungime prefix IPv4"
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:84
msgid "IPv4+IPv6"
-msgstr ""
+msgstr "IPv4+IPv6"
#: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
#: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
@@ -3338,7 +3327,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3408,7 +3397,7 @@ msgstr "IPv6-prin-IPv4 (6to4)"
msgid "Identity"
msgstr "Identitate"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3443,7 +3432,7 @@ msgid ""
"device node"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3476,7 +3465,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:666
msgid "Ignore interface"
-msgstr "Ignoră interfața"
+msgstr "Ignorați interfața"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352
msgid "Ignore resolv file"
@@ -3488,7 +3477,7 @@ msgstr "Imagine"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:273
msgid "Image check failed:"
-msgstr ""
+msgstr "Verificarea imaginii a eșuat:"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
msgid "In"
@@ -3522,6 +3511,8 @@ msgid ""
"Include in backup a list of current installed packages at /etc/backup/"
"installed_packages.txt"
msgstr ""
+"Includeți în copia de rezervă o listă a pachetelor instalate curent la /etc/"
+"backup/installed_packages.txt"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
@@ -3550,11 +3541,11 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:186
msgid "Info"
-msgstr "Informatii"
+msgstr "Informații"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
msgid "Information"
-msgstr ""
+msgstr "Informație"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:456
msgid "Ingress QoS mapping"
@@ -3567,11 +3558,11 @@ msgstr "Inițializare eșuată"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
msgid "Initscript"
-msgstr "Script de initializare"
+msgstr "Script de inițializare"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
msgid "Initscripts"
-msgstr "Scripturi de initializare"
+msgstr "Script-uri de inițializare"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1650
msgid "Inner certificate constraint (Domain)"
@@ -3602,6 +3593,8 @@ msgid ""
"Instead of joining any network with a matching SSID, only connect to the "
"BSSID <code>%h</code>."
msgstr ""
+"În loc să vă alăturați oricărei rețele cu un SSID asemănător, conectați-vă "
+"numai la BSSID <code>%h</code>."
#: modules/luci-compat/luasrc/view/cbi/map.htm:43
msgid "Insufficient permissions to read UCI configuration."
@@ -3624,7 +3617,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:981
msgid "Interface Configuration"
-msgstr "Configurarea interfetei"
+msgstr "Configurarea interfeței"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
@@ -3633,7 +3626,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
msgid "Interface is disabled"
-msgstr ""
+msgstr "Interfața este dezactivată"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
msgid "Interface is marked for deletion"
@@ -3641,21 +3634,21 @@ msgstr "Interfața este marcată pentru a fi ștearsă"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
msgid "Interface is reconnecting..."
-msgstr "Interfata se reconecteaza.."
+msgstr "Interfața se reconectează..."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:194
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:204
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
msgid "Interface is shutting down..."
-msgstr "Interfata se opreste.."
+msgstr "Se închide interfața..."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:285
msgid "Interface is starting..."
-msgstr "Interfata se pornește.."
+msgstr "Se pornește interfața..."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:288
msgid "Interface is stopping..."
-msgstr "Interfata se suspendă..."
+msgstr "Se oprește interfața..."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1152
msgid "Interface name"
@@ -3664,13 +3657,13 @@ msgstr "Numele interfeței"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:123
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:304
msgid "Interface not present or not connected yet."
-msgstr "Interfata nu e prezenta sau nu este conectata inca."
+msgstr "Interfața nu este prezentă sau nu este încă conectată."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491
#: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
msgid "Interfaces"
-msgstr "Interfete"
+msgstr "Interfețe"
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
msgid "Internal"
@@ -3678,7 +3671,7 @@ msgstr ""
#: modules/luci-base/luasrc/view/error500.htm:8
msgid "Internal Server Error"
-msgstr "Eroare interna de server"
+msgstr "Eroare internă de server"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285
msgid "Interval For Sending Learning Packets"
@@ -3749,8 +3742,11 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
-msgstr "Utilizator si/sau parola invalide! Incearcati din nou."
+msgstr ""
+"Nume de utilizator și/sau parolă invalidă! Vă rugăm să încercați din nou."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191
msgid "Invert match"
@@ -3758,34 +3754,33 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1148
msgid "Isolate Clients"
-msgstr ""
+msgstr "Izolați clienții"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:236
-#, fuzzy
msgid ""
"It appears that you are trying to flash an image that does not fit into the "
"flash memory, please verify the image file!"
msgstr ""
-"Se pare ca ai incercat sa rescrii o imagine care nu are loc in memoria "
-"flash, verifica fisierul din nou!"
+"Se pare că încercați să scrieți o imagine care nu se încadrează în memoria "
+"flash, vă rugăm să verificați fișierul imagine!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
-msgstr "Ai nevoie de JavaScript !"
+msgstr "JavaScript este necesar!"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1824
msgid "Join Network"
-msgstr "Alăturare/Conectare Rețea"
+msgstr "Alăturați-vă rețelei"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1758
msgid "Join Network: Wireless Scan"
-msgstr ""
+msgstr "Alăturați-vă rețelei: Scanare wireless"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2034
msgid "Joining Network: %q"
-msgstr ""
+msgstr "Conectarea la rețea: %q"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171
msgid "Jump to rule"
@@ -3793,12 +3788,12 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:228
msgid "Keep settings and retain the current configuration"
-msgstr ""
+msgstr "Păstrați setările și păstrați configurația curentă"
#: 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:60
msgid "Kernel Log"
-msgstr "Log-ul kernelului"
+msgstr "Jurnalul kernel-ului"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
msgid "Kernel Version"
@@ -3832,7 +3827,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
msgid "Kill"
-msgstr "Opreste"
+msgstr "Oprește"
#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
@@ -3867,7 +3862,7 @@ msgstr ""
#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:115
msgid "LED Configuration"
-msgstr ""
+msgstr "Configurarea LED-urilor"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1548
msgid "LLC"
@@ -3876,7 +3871,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
msgid "Label"
-msgstr "Eticheta"
+msgstr "Etichetă"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:224
msgid "Language"
@@ -3884,7 +3879,7 @@ msgstr "Limba"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
msgid "Language and Style"
-msgstr "Limba si stilul interfetei"
+msgstr "Limba și stilul interfeței"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid "Last member interval"
@@ -3942,13 +3937,13 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
-msgstr "Legenda:"
+msgstr "Legendă:"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
msgid "Limit"
-msgstr "Limita"
+msgstr "Limită"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
msgid "Line Attenuation (LATN)"
@@ -4023,7 +4018,7 @@ msgstr ""
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:103
msgid "Listen Port"
-msgstr ""
+msgstr "Port de ascultare"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332
msgid "Listen interfaces"
@@ -4046,25 +4041,27 @@ msgstr ""
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:106
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
msgid "Load"
-msgstr "Incărcare"
+msgstr "Încărcare"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:62
msgid "Load Average"
-msgstr "Incărcarea medie"
+msgstr "Încărcare medie"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
-msgstr ""
+msgstr "Se încarcă vizualizarea…"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:870
msgid "Local"
@@ -4092,7 +4089,7 @@ msgstr ""
#: 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 "Adresa IPv4 locala"
+msgstr "Adresa IPv4 locală"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:884
msgid "Local IPv6 DNS server"
@@ -4104,11 +4101,11 @@ msgstr ""
#: 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 "Adresa IPv6 locala"
+msgstr "Adresa IPv6 locală"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
msgid "Local Startup"
-msgstr "Pornire la startup"
+msgstr "Local la pornire"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:130
@@ -4168,12 +4165,13 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Autentificare"
#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
msgid "Logout"
-msgstr "Iesire"
+msgstr "Deconectare"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:628
msgid "Loose filtering"
@@ -4194,7 +4192,7 @@ msgstr "MAC"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1425
msgid "MAC Address"
-msgstr ""
+msgstr "Adresa MAC"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1084
msgid "MAC Address Filter"
@@ -4302,13 +4300,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458
msgid "Max. EDNS0 packet size"
-msgstr ""
-"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
-"Domain Name System\">EDNS0</abbr> marime pachet"
+msgstr "Dimensiunea maximă a pachetului EDNS0"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465
msgid "Max. concurrent queries"
-msgstr "<abbr title=\"maximal\">Max.</abbr> interogari simultane"
+msgstr "Numărul maxim de interogări simultane"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:532
msgid "Maximum age"
@@ -4366,7 +4362,7 @@ msgstr "Putere maximă de transmisie"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
msgid "Mbit/s"
-msgstr "Mbit/s"
+msgstr "Mbiți/s"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
msgid "Medium"
@@ -4378,7 +4374,7 @@ msgstr "Memorie"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
msgid "Memory usage (%)"
-msgstr "Utilizarea memoriei (%)"
+msgstr "Memorie utilizată (%)"
#: modules/luci-base/htdocs/luci-static/resources/network.js:3875
msgid "Mesh"
@@ -4408,7 +4404,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215
msgid "Metric"
-msgstr "Metrica"
+msgstr "Metrică"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
@@ -4520,7 +4516,7 @@ msgstr ""
msgid "More Characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "Mai mult…"
@@ -4550,7 +4546,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
msgid "Mount attached devices"
-msgstr "Montare dispozitive atașate"
+msgstr "Montați dispozitivele atașate"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
msgid "Mount filesystems not specifically configured"
@@ -4624,8 +4620,8 @@ msgstr ""
msgid "NTP server candidates"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4634,7 +4630,7 @@ msgstr "Nume"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2004
msgid "Name of the new network"
-msgstr "Numele interfetei noi"
+msgstr "Numele noii rețele"
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
@@ -4654,15 +4650,15 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:186
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:212
msgid "Network"
-msgstr "Retea"
+msgstr "Rețea"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1998
msgid "Network SSID"
-msgstr ""
+msgstr "SSID-ul de rețea"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
msgid "Network Utilities"
-msgstr "Utilitare de retea"
+msgstr "Utilitare de rețea"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491
msgid "Network boot image"
@@ -4675,7 +4671,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:343
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1399
msgid "Network device"
-msgstr ""
+msgstr "Dispozitiv de rețea"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
msgid "Network device activity (kernel: netdev)"
@@ -4684,7 +4680,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:15
#: modules/luci-compat/luasrc/model/network.lua:33
msgid "Network device is not present"
-msgstr ""
+msgstr "Dispozitivul de rețea nu este prezent"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:426
msgid "Network ifname configuration migration"
@@ -4693,15 +4689,15 @@ msgstr ""
#: 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 "Interfață de rețea"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530
msgid "Network-ID"
-msgstr ""
+msgstr "ID-ul rețelei"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:706
msgid "Never"
-msgstr ""
+msgstr "Niciodată"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270
msgid ""
@@ -4719,9 +4715,9 @@ msgstr "Nume nou interfață…"
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
msgid "Next »"
-msgstr "Mai departe »"
+msgstr "Următoarea →»"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4729,7 +4725,7 @@ msgstr "Nu"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:643
msgid "No DHCP Server configured for this interface"
-msgstr "Nici un server DHCP configurat pentru aceasta interfata"
+msgstr "Nici un server DHCP configurat pentru această interfață"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:193
msgid "No Data"
@@ -4751,7 +4747,6 @@ msgstr ""
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4759,6 +4754,9 @@ msgid ""
"No changes to settings will be stored and are lost after rebooting. This "
"mode should only be used to install a firmware upgrade"
msgstr ""
+"Nu vor fi stocate modificări ale setărilor și se vor pierde după repornire. "
+"Acest mod ar trebui să fie utilizat numai pentru a instala un upgrade de "
+"firmware"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
msgid "No client associated"
@@ -4766,7 +4764,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
msgid "No data received"
-msgstr "Nu sunt date recepționate"
+msgstr "Nu s-au primit date"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:690
@@ -4782,13 +4780,13 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr ""
#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82
msgid "No files found"
-msgstr "Nici un fisier gasit"
+msgstr "Nu s-au găsit fișiere"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
@@ -4802,7 +4800,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:353
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
msgid "No information available"
-msgstr "Nici o informatie disponibila"
+msgstr "Nu există informații disponibile"
#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
@@ -4822,11 +4820,11 @@ msgstr ""
msgid "No negative cache"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
-msgstr "Nici o parola setata !"
+msgstr "Nu este setată nicio parolă!"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:150
msgid "No peers defined yet"
@@ -4878,7 +4876,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:112
msgid "None"
-msgstr ""
+msgstr "Nici unul"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:955
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:197
@@ -4887,7 +4885,7 @@ msgstr "Normal"
#: modules/luci-base/luasrc/view/error404.htm:8
msgid "Not Found"
-msgstr "Nu a fost gasit"
+msgstr "Nu a fost găsit"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
msgid "Not associated"
@@ -4925,7 +4923,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187
msgid "Notice"
-msgstr "Notificare"
+msgstr "Aviz"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:138
msgid "Nslookup"
@@ -4985,16 +4983,16 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:671
msgid "One of hostname or MAC address must be specified!"
-msgstr ""
+msgstr "Trebuie specificat unul dintre numele de gazdă sau adresa MAC!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "Unul dintre următoarele: %s"
#: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
#: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
msgid "One or more fields contain invalid values!"
-msgstr "Unul sau mai multe campuri contin valori invalide !"
+msgstr "Unul sau mai multe câmpuri conțin valori invalide!"
#: modules/luci-compat/luasrc/view/cbi/map.htm:32
msgid "One or more invalid/required values on tab"
@@ -5003,7 +5001,7 @@ msgstr ""
#: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
#: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
msgid "One or more required fields have no value!"
-msgstr "Unul sau mai multe campuri nu contin valori !"
+msgstr "Unul sau mai multe câmpuri obligatorii nu au nicio valoare!"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702
msgid "Only allow communication with non-isolated bridge ports when enabled"
@@ -5051,22 +5049,22 @@ msgstr ""
msgid "Operating frequency"
msgstr "Frecvență de operare"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
-msgstr "Optiunea schimbata"
+msgstr "Opțiune modificată"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
-msgstr "Optiunea eliminata"
+msgstr "Opțiune eliminată"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1681
msgid "Optional"
@@ -5090,17 +5088,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr ""
@@ -5108,13 +5106,13 @@ msgstr ""
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5125,11 +5123,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5141,7 +5139,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
msgid "Options"
-msgstr "Optiuni"
+msgstr "Opțiuni"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525
msgid ""
@@ -5161,7 +5159,7 @@ msgstr "Altele:"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
msgid "Out"
-msgstr "Iesire"
+msgstr "Ieșire"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
msgid "Outbound:"
@@ -5270,7 +5268,7 @@ msgstr ""
msgid "Overview"
msgstr "Prezentare generală"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5339,7 +5337,7 @@ msgstr "PPP"
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
msgid "PPPoA Encapsulation"
-msgstr "Incapsulare PPPoA"
+msgstr "Încapsulare PPPoA"
#: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
@@ -5405,12 +5403,13 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
-msgstr "Parola"
+msgstr "Parolă"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
msgid "Password authentication"
-msgstr "Autentificarea cu parola"
+msgstr "Autentificare prin parolă"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1604
msgid "Password of Private Key"
@@ -5437,7 +5436,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1583
msgid "Path to CA-Certificate"
-msgstr "Calea catre certificatul CA"
+msgstr "Calea către certificatul CA"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1598
msgid "Path to Client-Certificate"
@@ -5494,9 +5493,13 @@ msgstr ""
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
-msgstr ""
+msgstr "Perechi"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
msgid "Perfect Forward Secrecy"
@@ -5511,27 +5514,27 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
msgid "Perform reboot"
-msgstr "Restarteaza"
+msgstr "Efectuați repornirea"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:406
msgid "Perform reset"
-msgstr "Reseteaza"
+msgstr "Efectuați resetarea"
#: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
msgid "Permission denied"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
msgid "Phy Rate:"
-msgstr "Rata phy:"
+msgstr "Rata fizică:"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
msgid "Physical Settings"
-msgstr "Setarile fizice"
+msgstr "Setări fizice"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:91
@@ -5546,15 +5549,15 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
msgid "Pkts."
-msgstr "Packete."
+msgstr "Pachete."
#: modules/luci-base/luasrc/view/sysauth.htm:19
msgid "Please enter your username and password."
-msgstr "Introdu utilizatorul si parola."
+msgstr "Vă rugăm să introduceți numele de utilizator și parola."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
-msgstr ""
+msgstr "Vă rugăm să selectați fișierul de încărcat."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
msgid "Policy"
@@ -5570,9 +5573,9 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:280
msgid "Port status:"
-msgstr "Stare port:"
+msgstr "Starea portului:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5600,7 +5603,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr ""
@@ -5617,7 +5620,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1148
msgid "Prevents client-to-client communication"
-msgstr ""
+msgstr "Împiedică comunicarea între clienți"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:213
msgid "Primary Slave"
@@ -5643,16 +5646,16 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223
msgid "Priority"
-msgstr ""
+msgstr "Prioritate"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:436
msgctxt "MACVLAN mode"
msgid "Private (Prevent communication between MAC VLANs)"
-msgstr ""
+msgstr "Privat (Împiedică comunicarea între VLAN-urile MAC)"
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:86
msgid "Private Key"
-msgstr ""
+msgstr "Cheie privată"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:69
@@ -5675,7 +5678,7 @@ msgstr "Protocol"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:280
msgid "Provide NTP server"
-msgstr ""
+msgstr "Furnizați server NTP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
msgid ""
@@ -5685,15 +5688,15 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:883
msgid "Provide new network"
-msgstr ""
+msgstr "Furnizați o nouă rețea"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1077
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
-msgstr ""
+msgstr "Cheia publică"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284
msgid ""
@@ -5712,10 +5715,10 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
-msgstr ""
+msgstr "Cod QR"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:137
msgid "Quality"
@@ -5727,7 +5730,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556
msgid "Query interval"
-msgstr ""
+msgstr "Interval de interogare"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:561
msgid "Query response interval"
@@ -5751,7 +5754,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:967
msgid "RTS/CTS Threshold"
-msgstr ""
+msgstr "Pragul RTS/CTS"
#: 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
@@ -5764,7 +5767,7 @@ msgstr "Rată de recepție"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2160
msgid "RX Rate / TX Rate"
-msgstr "Rată de recepție / transmisie"
+msgstr "Rată de recepție / Rată de transmisie"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1416
msgid "Radius-Accounting-Port"
@@ -5796,21 +5799,19 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345
msgid "Read <code>/etc/ethers</code> to configure the DHCP server."
-msgstr ""
-"Citeste fisierul <code>/etc/ethers</code> pentru configurarea serverului "
-"<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>-"
+msgstr "Citiți <code>/etc/ethers</code> pentru a configura serverul DHCP."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:559
msgid "Really switch protocol?"
-msgstr ""
+msgstr "Sigur doriți să schimbați protocolul?"
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:94
msgid "Realtime Graphs"
-msgstr "Grafice in timp real"
+msgstr "Grafice în timp real"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1521
msgid "Reassociation Deadline"
-msgstr ""
+msgstr "Termenul limită pentru reasociere"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
msgid "Rebind protection"
@@ -5819,7 +5820,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:140
msgid "Reboot"
-msgstr "Rebooteaza"
+msgstr "Reporniți"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
@@ -5830,7 +5831,7 @@ msgstr "Repornire…"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
msgid "Reboots the operating system of your device"
-msgstr "Rebooteaza sistemul de operare al dispozitivului tau"
+msgstr "Repornește sistemul de operare al dispozitivului dumneavoastră"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:26
msgid "Receive"
@@ -5842,24 +5843,24 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:504
msgid "Reconnect this interface"
-msgstr "Reconecteaza aceasta interfata"
+msgstr "Reconectați această interfață"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
msgid "Redirect to HTTPS"
-msgstr ""
+msgstr "Redirecționați către HTTPS"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
msgid "References"
-msgstr "Referinte"
+msgstr "Referințe"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2726
msgid "Refreshing"
-msgstr ""
+msgstr "Împrospătare"
#: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
msgid "Relay"
-msgstr ""
+msgstr "Releu"
#: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
@@ -5868,7 +5869,7 @@ msgstr ""
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
msgid "Relay between networks"
-msgstr ""
+msgstr "Releu între rețele"
#: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
@@ -5879,7 +5880,7 @@ msgstr ""
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
#: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
msgid "Remote IPv4 address"
-msgstr ""
+msgstr "Adresa IPv4 de la distanță"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
@@ -5898,7 +5899,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:907
msgid "Remove"
-msgstr "Elimina"
+msgstr "Eliminați"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1282
msgid "Remove related device settings from the configuration"
@@ -5906,7 +5907,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2002
msgid "Replace wireless configuration"
-msgstr "Inlocuieste configuratia wireless"
+msgstr "Înlocuiți configurația wireless"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
msgid "Request IPv6-address"
@@ -5946,7 +5947,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -5964,7 +5965,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1317
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1318
msgid "Requires hostapd with EAP support"
-msgstr ""
+msgstr "Necesită hostapd cu suport EAP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1321
msgid "Requires hostapd with OWE support"
@@ -6024,23 +6025,23 @@ msgstr ""
#: modules/luci-compat/luasrc/view/cbi/footer.htm:30
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
msgid "Reset"
-msgstr "Reset"
+msgstr "Resetare"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:343
msgid "Reset Counters"
-msgstr "Reseteaza counterii"
+msgstr "Resetează contoarele"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
msgid "Reset to defaults"
-msgstr ""
+msgstr "Resetați la valorile implicite"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:253
msgid "Resolv and Hosts Files"
-msgstr "Fisierele de rezolvare si hosturi DNS"
+msgstr "Fișierele de rezolvare și host-uri DNS"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356
msgid "Resolv file"
-msgstr "Fisierul de rezolvare"
+msgstr "Fișierul de rezolvare"
#: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
msgid "Resource not found"
@@ -6050,23 +6051,23 @@ msgstr "Resursa nu a fost găsită"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:875
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
msgid "Restart"
-msgstr "Restart"
+msgstr "Reporniți"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:348
msgid "Restart Firewall"
-msgstr "Restarteaza firewallul"
+msgstr "Reporniți Firewall-ul"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:873
msgid "Restart radio interface"
-msgstr "Repornește interfața radio"
+msgstr "Reporniți interfața radio"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:400
msgid "Restore"
-msgstr "Restaureaza"
+msgstr "Restaurează"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:410
msgid "Restore backup"
-msgstr "Reface backup-ul"
+msgstr "Restaurați o copie de rezervă"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392
msgid ""
@@ -6074,28 +6075,28 @@ msgid ""
"received if multiple IPs are available."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
-msgstr "Arata / ascunde parola"
+msgstr "Arată / ascunde parola"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:625
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
-msgstr "Restabileste schimbările anterioare"
+msgstr "Restabilește la schimbările anterioare"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr ""
@@ -6118,7 +6119,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6166,7 +6167,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
msgid "Run filesystem check"
-msgstr "Verifică sistemul de fisiere"
+msgstr "Verifică sistemul de fișiere"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2365
msgid "Runtime error"
@@ -6201,7 +6202,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
msgid "SSH-Keys"
-msgstr "Cheile SSH"
+msgstr "Chei 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
@@ -6223,7 +6224,7 @@ msgstr ""
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6231,13 +6232,13 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:463
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
msgid "Save"
-msgstr "Salvează"
+msgstr "Salvați"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
-msgstr "Salveaza si aplica"
+msgstr "Salvați și aplicați"
#: modules/luci-base/htdocs/luci-static/resources/form.js:602
msgid "Save error"
@@ -6245,11 +6246,11 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:434
msgid "Save mtdblock"
-msgstr ""
+msgstr "Salvați mtdblock"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
msgid "Save mtdblock contents"
-msgstr ""
+msgstr "Salvați conținutul mtdblock"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:880
msgid "Scan"
@@ -6258,15 +6259,15 @@ msgstr "Scanează"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:90
msgid "Scheduled Tasks"
-msgstr "Operatiuni programate"
+msgstr "Operațiuni programate"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
-msgstr "Sectiune adaugata"
+msgstr "Secțiune adăugată"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
-msgstr "Sectiune eliminata"
+msgstr "Secțiune eliminată"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
msgid "See \"mount\" manpage for details"
@@ -6278,10 +6279,13 @@ msgid ""
"fails. Use only if you are sure that the firmware is correct and meant for "
"your device!"
msgstr ""
+"Selectați \"Forțați upgrade-ul\" pentru a scrie imaginea chiar dacă "
+"verificarea formatului imaginii nu reușește. Utilizați numai dacă sunteți "
+"sigur că firmware-ul este corect și destinat dispozitivului dvs.!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "Selectează fișier…"
@@ -6312,7 +6316,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
msgid "Send the hostname of this device"
-msgstr ""
+msgstr "Trimiteți numele de gazdă al acestui dispozitiv"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518
msgid "Server address"
@@ -6324,12 +6328,12 @@ msgstr ""
#: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
msgid "Service Name"
-msgstr "Nume serviciu"
+msgstr "Numele serviciului"
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72
msgid "Service Type"
-msgstr "Tip de serviciu"
+msgstr "Tipul de serviciu"
#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
msgid "Services"
@@ -6382,7 +6386,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:662
msgid "Set up DHCP Server"
-msgstr "Seteaza serverul DHCP"
+msgstr "Setați serverul DHCP"
#: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
#: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
@@ -6432,7 +6436,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:510
msgid "Shutdown this interface"
-msgstr "Opreste aceasta interfata"
+msgstr "Oprește această interfață"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
@@ -6457,16 +6461,16 @@ msgstr ""
#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:136
msgid "Signal Refresh Rate"
-msgstr ""
+msgstr "Rata de reîmprospătare a semnalului"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
msgid "Signal:"
msgstr "Semnal:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
-msgstr "Marime"
+msgstr "Mărime"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472
msgid "Size of DNS query cache"
@@ -6483,7 +6487,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:257
msgid "Skip from backup files that are equal to those in /rom"
-msgstr ""
+msgstr "Omiteți din fișierele de rezervă care sunt egale cu cele din /rom"
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
@@ -6522,6 +6526,9 @@ msgid ""
"flashed manually. Please refer to the wiki for device specific install "
"instructions."
msgstr ""
+"Ne pare rău, nu există suport pentru sysupgrade; o nouă imagine firmware "
+"trebuie să fie actualizată manual. Vă rugăm să consultați wiki pentru "
+"instrucțiuni de instalare specifice dispozitivului."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148
@@ -6529,7 +6536,7 @@ msgstr ""
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214
msgid "Source"
-msgstr "Sursa"
+msgstr "Sursă"
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
#: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
@@ -6793,20 +6800,20 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
msgid "Start priority"
-msgstr "Prioritatea pornirii"
+msgstr "Prioritatea de pornire"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1843
msgid "Start refresh"
-msgstr ""
+msgstr "Începeți reîmprospătarea"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1756
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:398
msgid "Starting wireless scan..."
-msgstr ""
+msgstr "Se pornește scanarea wireless..."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
#: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:78
@@ -6866,6 +6873,10 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1754
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1848
msgid "Stop refresh"
+msgstr "Opriți reîmprospătarea"
+
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
@@ -6883,7 +6894,7 @@ msgstr ""
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2044
msgid "Submit"
-msgstr "Trimite"
+msgstr "Trimiteți"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372
msgid "Suppress logging"
@@ -6930,7 +6941,7 @@ msgstr "Schimbă protocolul"
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr ""
@@ -6953,7 +6964,7 @@ msgstr "Sistem"
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:39
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:51
msgid "System Log"
-msgstr "Log de sistem"
+msgstr "Jurnalul de sistem"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:245
msgid "System Priority"
@@ -6961,13 +6972,12 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:117
msgid "System Properties"
-msgstr "Proprietati sistem"
+msgstr "Proprietăți sistem"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:161
msgid "System log buffer size"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -6992,7 +7002,7 @@ msgstr "TX"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:227
msgid "TX Rate"
-msgstr ""
+msgstr "Rată de transmise"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:618
msgid "TX queue length"
@@ -7011,7 +7021,7 @@ msgstr "Tabel"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:213
msgid "Target"
-msgstr "Tinta"
+msgstr "Țintă"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
msgid "Target Platform"
@@ -7021,11 +7031,15 @@ msgstr ""
msgid "Target network"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
-msgstr "Termina"
+msgstr "Terminați"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7124,11 +7138,11 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:7
msgid "The LED is always in default state off."
-msgstr ""
+msgstr "LED-ul se află întotdeauna în starea implicită oprit."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
msgid "The LED is always in default state on."
-msgstr ""
+msgstr "LED-ul se află întotdeauna în starea implicită pornit."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:222
msgid ""
@@ -7140,7 +7154,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7166,7 +7180,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7194,6 +7208,8 @@ msgid ""
"The existing network configuration needs to be changed for LuCI to function "
"properly."
msgstr ""
+"Configurația de rețea existentă trebuie modificată pentru ca LuCI să "
+"funcționeze corect."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:794
msgid ""
@@ -7207,6 +7223,10 @@ msgid ""
"compare them with the original file to ensure data integrity. <br /> Click "
"'Continue' below to start the flash procedure."
msgstr ""
+"Imaginea flash a fost încărcată. Mai jos sunt listate suma de control și "
+"dimensiunea fișierului, comparați-le cu fișierul original pentru a vă "
+"asigura de integritatea datelor. <br /> Faceți clic pe 'Continuă' de mai jos "
+"pentru a porni procedura de scriere."
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:249
msgid "The following rules are currently active on this system."
@@ -7232,7 +7252,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513
msgid "The hostname of the boot server"
-msgstr ""
+msgstr "Numele de gazdă al serverului de boot-are"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1093
msgid "The interface name is already used"
@@ -7254,7 +7274,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7281,6 +7301,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7306,7 +7330,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2010
msgid "The network name is already used"
-msgstr ""
+msgstr "Numele rețelei este deja folosit"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
msgid ""
@@ -7325,7 +7349,7 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
msgid "The reboot command failed with code %d"
-msgstr ""
+msgstr "Comanda de repornire a eșuat cu codul %d"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
msgid "The restore command failed with code %d"
@@ -7380,20 +7404,25 @@ msgid ""
"listed below. Press \"Continue\" to restore the backup and reboot, or "
"\"Cancel\" to abort the operation."
msgstr ""
+"Arhiva de backup încărcată pare a fi validă și conține fișierele enumerate "
+"mai jos. Apăsați \"Continuă\" pentru a restaura copia de rezervă și a "
+"reporni sau apăsați \"Anulare\" pentru a întrerupe operațiunea."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
msgid "The uploaded backup archive is not readable"
-msgstr ""
+msgstr "Arhiva de backup încărcată nu poate fi citită"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:249
msgid "The uploaded firmware does not allow keeping current configuration."
-msgstr ""
+msgstr "Firmware-ul încărcat nu permite păstrarea configurației curente."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
msgid ""
"The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform."
msgstr ""
+"Fișierul de imagine încărcat nu conține un format acceptat. Asigurați-vă că "
+"ați ales formatul de imagine generic pentru platforma dvs."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1433
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1445
@@ -7407,19 +7436,19 @@ msgstr ""
msgid "There are no active leases"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
"There is no password set on this router. Please configure a root password to "
"protect the web interface."
msgstr ""
-"Nu exista o parola pe acest router. Configureaza o parola la contul root "
-"pentru a proteja interfata web."
+"Nu există setată o parolă pe acest router. Vă rugăm configurați o parolă la "
+"contul root pentru a proteja interfața web."
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
msgid "This IPv4 address of the relay"
@@ -7464,7 +7493,6 @@ msgid "This is the only DHCP server in the local network."
msgstr "Acesta este singurul server DHCP din rețeaua locală."
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
-#, fuzzy
msgid "This is the plain username for logging into the account"
msgstr "Acesta este numele de utilizator simplu pentru conectarea la cont"
@@ -7494,12 +7522,12 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet"
-msgstr ""
+msgstr "Această secțiune nu conține încă nicio valoare"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:123
msgid "Time Synchronization"
@@ -7547,6 +7575,9 @@ msgid ""
"archive here. To reset the firmware to its initial state, click \"Perform "
"reset\" (only possible with squashfs images)."
msgstr ""
+"Pentru a restabili fișierele de configurare, puteți încărca aici o arhivă de "
+"rezervă generată anterior. Pentru a reseta firmware-ul la starea inițială, "
+"faceți clic pe „Efectuați resetarea” (posibil numai cu imaginile squashfs)."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481
msgid "Tone"
@@ -7600,7 +7631,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/network.js:3011
#: modules/luci-compat/luasrc/model/network.lua:1431
msgid "Tunnel Interface"
-msgstr "Interfata de tunel"
+msgstr "Interfață de tunel"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
@@ -7763,9 +7794,9 @@ msgstr ""
msgid "Unnamed key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
-msgstr "Modificari nesalvate"
+msgstr "Modificări nesalvate"
#: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
msgid "Unspecified error"
@@ -7779,11 +7810,11 @@ msgstr ""
#: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
#: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
msgid "Unsupported modem"
-msgstr ""
+msgstr "Modem neacceptat"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:299
msgid "Unsupported protocol type."
-msgstr "Tipul de protocol neacceptat."
+msgstr "Tipul de protocol nesuportat."
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
msgid "Up"
@@ -7793,38 +7824,40 @@ msgstr ""
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
-msgstr ""
+msgstr "Încărcați"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:441
msgid ""
"Upload a sysupgrade-compatible image here to replace the running firmware."
msgstr ""
+"Încărcați aici o imagine compatibilă cu sysupgrade pentru a înlocui firmware-"
+"ul actual."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
msgid "Upload archive..."
-msgstr ""
+msgstr "Încărcați arhiva..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
-msgstr ""
+msgstr "Încărcați fișierul"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
-msgstr ""
+msgstr "Încărcați fișierul…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
-msgstr ""
+msgstr "Solicitarea de încărcare a eșuat: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
-msgstr ""
+msgstr "Se încarcă fișierul…"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:795
msgid ""
@@ -7848,8 +7881,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422
msgid "Upstream resolvers will be queried in the order of the resolv file."
msgstr ""
-"<abbr title=\"Domain Name System\">DNS</abbr> serverul va interoga in "
-"vederea procesarii fisierului"
+"Rezolutorii din upstream vor fi interogați în ordinea din fișierul resolv."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
@@ -7858,15 +7890,15 @@ msgstr "Timp de funcționare"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
msgid "Use <code>/etc/ethers</code>"
-msgstr "Foloseste <code>/etc/ethers</code>"
+msgstr "Folosește <code>/etc/ethers</code>"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:284
msgid "Use DHCP advertised servers"
-msgstr ""
+msgstr "Utilizați serverele DHCP anunțate"
#: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
msgid "Use DHCP gateway"
-msgstr ""
+msgstr "Utilizați gateway-ul DHCP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
@@ -7876,7 +7908,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:623
msgid "Use ISO/IEC 3166 alpha2 country codes."
-msgstr "Foloseste codurile de tara ISO/IEC 3166 alpha2."
+msgstr "Folosește codurile de țară ISO/IEC 3166 alpha2."
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
@@ -7926,13 +7958,13 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
msgid "Use custom DNS servers"
-msgstr ""
+msgstr "Utilizați servere DNS personalizate"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
#: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
msgid "Use default gateway"
-msgstr ""
+msgstr "Utilizați gateway-ul implicit"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:941
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72
@@ -7997,7 +8029,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:111
msgid "User Group"
-msgstr ""
+msgstr "Grup de utilizatori"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:120
msgid "User certificate (PEM encoded)"
@@ -8005,14 +8037,15 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132
msgid "User key (PEM encoded)"
-msgstr ""
+msgstr "Cheie utilizator (codare PEM)"
#: modules/luci-base/luasrc/view/sysauth.htm:23
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
-msgstr "Utilizator"
+msgstr "Nume Utilizator"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1549
msgid "VC-Mux"
@@ -8020,7 +8053,7 @@ msgstr "VC-Mux"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1497
msgid "VDSL"
-msgstr ""
+msgstr "VDSL"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:435
msgctxt "MACVLAN mode"
@@ -8030,21 +8063,21 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:346
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1384
msgid "VLAN (802.1ad)"
-msgstr ""
+msgstr "VLAN (802.1ad)"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:345
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1381
msgid "VLAN (802.1q)"
-msgstr ""
+msgstr "VLAN (802.1q)"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:414
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:845
msgid "VLAN ID"
-msgstr ""
+msgstr "ID VLAN"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
msgid "VLANs on %q"
-msgstr "VLANuri pe %q"
+msgstr "VLAN-uri pe %q"
#: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
msgid "VPN"
@@ -8052,11 +8085,11 @@ msgstr "VPN"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
msgid "VPN Local address"
-msgstr ""
+msgstr "Adresă locală VPN"
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
msgid "VPN Local port"
-msgstr ""
+msgstr "Port local VPN"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96
msgid "VPN Protocol"
@@ -8124,7 +8157,7 @@ msgstr ""
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
msgid "Vendor"
-msgstr ""
+msgstr "Furnizor"
#: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
msgid "Vendor Class to send when requesting DHCP"
@@ -8136,20 +8169,20 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
msgid "Verifying the uploaded image file."
-msgstr ""
+msgstr "Se verifică fișierul imagine încărcat."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:957
msgid "Very High"
-msgstr ""
+msgstr "Foarte mare"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:348
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1396
msgid "Virtual Ethernet"
-msgstr ""
+msgstr "Ethernet virtual"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
msgid "Virtual dynamic interface"
-msgstr ""
+msgstr "Interfață dinamică virtuală"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1106
@@ -8164,7 +8197,7 @@ msgstr "Sistem deschis WEP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1291
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1380
msgid "WEP Shared Key"
-msgstr "Sistem de cheie impartasita WEP"
+msgstr "Cheie partajată WEP"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2019
msgid "WEP passphrase"
@@ -8183,16 +8216,16 @@ msgid ""
"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
"and ad-hoc mode) to be installed."
msgstr ""
-"Criptarea WPA necesita wpa_supplicant (pentru modul client) sau hostapd "
+"Criptarea WPA necesită 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:144
msgid "WPS status"
-msgstr ""
+msgstr "Stare WPS"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
msgid "Waiting for device..."
-msgstr ""
+msgstr "În așteptarea dispozitivului..."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:188
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:198
@@ -8202,10 +8235,11 @@ msgstr "Avertizare"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
msgid "Warning: There are unsaved changes that will get lost on reboot!"
msgstr ""
+"Avertisment: Există modificări nesalvate care se vor pierde la repornire!"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
msgid "Weak"
-msgstr ""
+msgstr "Slabă"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1012
msgid ""
@@ -8225,6 +8259,8 @@ msgid ""
"Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
"802.11a/802.11g rates."
msgstr ""
+"În cazul în care modul Wi-Fi Multimedia (WMM) QoS este dezactivat, clienții "
+"pot fi limitați la ratele 802.11a/802.11g."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
msgid ""
@@ -8235,30 +8271,30 @@ msgstr ""
#: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:520
msgid "Width"
-msgstr ""
+msgstr "Lățime"
#: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:54
msgid "WireGuard VPN"
-msgstr ""
+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:10
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:124
msgid "Wireless"
-msgstr "Fară fir"
+msgstr "Fără fir"
#: modules/luci-base/htdocs/luci-static/resources/network.js:2998
#: modules/luci-compat/luasrc/model/network.lua:1419
msgid "Wireless Adapter"
-msgstr "Adaptorul wireless"
+msgstr "Adaptor wireless"
#: modules/luci-base/htdocs/luci-static/resources/network.js:2977
#: modules/luci-base/htdocs/luci-static/resources/network.js:4284
#: modules/luci-compat/luasrc/model/network.lua:1405
#: modules/luci-compat/luasrc/model/network.lua:1868
msgid "Wireless Network"
-msgstr "Retea wireless"
+msgstr "Rețea wireless"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:811
msgid "Wireless Overview"
@@ -8270,7 +8306,7 @@ msgstr "Securitate wireless"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:793
msgid "Wireless configuration migration"
-msgstr ""
+msgstr "Migrarea configurației wireless"
#: 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
@@ -8286,11 +8322,11 @@ msgstr "Wireless-ul este ne-asociat"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:935
msgid "Wireless network is disabled"
-msgstr "Reteaua wireless este dezactivata"
+msgstr "Rețeaua wireless este dezactivată"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:935
msgid "Wireless network is enabled"
-msgstr "Reteaua wireless este activata"
+msgstr "Rețeaua wireless este activată"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
msgid "Write received DNS queries to syslog."
@@ -8298,13 +8334,13 @@ msgstr "Scrieți cererile DNS primite in syslog."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:180
msgid "Write system log to file"
-msgstr ""
+msgstr "Scrieți jurnalul de sistem într-un fișier"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8312,7 +8348,7 @@ msgstr "Da"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
msgid "Yes (none, 0)"
-msgstr ""
+msgstr "Da (niciunul, 0)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:177
msgid ""
@@ -8327,12 +8363,14 @@ msgid ""
"scripts like \"network\", your device might become inaccessible!</strong>"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
"You must enable JavaScript in your browser or LuCI will not work properly."
msgstr ""
+"Trebuie să activați JavaScript în browserul dumneavoastră, altfel LuCI nu va "
+"funcționa corect."
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:117
msgid ""
@@ -8347,15 +8385,15 @@ msgstr ""
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:212
msgid "ZRam Compression Algorithm"
-msgstr ""
+msgstr "Algoritmul de compresie ZRam"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:205
msgid "ZRam Settings"
-msgstr ""
+msgstr "Setări ZRam"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:207
msgid "ZRam Size"
-msgstr ""
+msgstr "Dimensiunea ZRam"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:448
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152
@@ -8378,7 +8416,7 @@ msgstr "auto"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:776
msgid "automatic"
-msgstr ""
+msgstr "automat"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
msgid "baseT"
@@ -8386,7 +8424,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1555
msgid "bridged"
-msgstr ""
+msgstr "cu punte"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:405
@@ -8394,11 +8432,11 @@ msgstr ""
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
msgid "create"
-msgstr ""
+msgstr "creați"
#: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
msgid "create:"
-msgstr ""
+msgstr "creați:"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
@@ -8438,7 +8476,7 @@ msgstr "dBm"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1087
msgid "disable"
-msgstr "dezactiveaza"
+msgstr "dezactivați"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:627
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:765
@@ -8448,12 +8486,12 @@ msgstr "dezactiveaza"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
msgid "disabled"
-msgstr ""
+msgstr "dezactivat"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:577
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:611
msgid "driver default"
-msgstr ""
+msgstr "driver implicit"
#: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
msgid "e.g: --proxy 10.10.10.10"
@@ -8472,7 +8510,7 @@ msgstr "expirat"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:780
msgid "forced"
-msgstr ""
+msgstr "forțat"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
@@ -8483,16 +8521,16 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
msgid "full-duplex"
-msgstr ""
+msgstr "full-duplex"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
msgid "half-duplex"
-msgstr ""
+msgstr "semi-duplex"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
-msgstr ""
+msgstr "valoare codificată în hexazecimal"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1816
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:297
@@ -8503,25 +8541,25 @@ msgstr "ascuns"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:875
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:903
msgid "hybrid mode"
-msgstr ""
+msgstr "mod hibrid"
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
msgid "ignore"
-msgstr ""
+msgstr "ignorați"
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
#: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
msgid "input"
-msgstr ""
+msgstr "intrare"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
-msgstr ""
+msgstr "cheie între 8 și 63 de caractere"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
-msgstr ""
+msgstr "cheie cu 5 sau 13 caractere"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:793
msgid "managed config (M)"
@@ -8529,11 +8567,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1389
msgid "medium security"
-msgstr ""
+msgstr "securitate medie"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1538
msgid "minutes"
-msgstr ""
+msgstr "minute"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:797
msgid "mobile home agent (H)"
@@ -8550,29 +8588,29 @@ msgstr "nu"
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:103
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
msgid "no link"
-msgstr ""
+msgstr "fără legătură"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
-msgstr ""
+msgstr "niciunul"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
msgid "not present"
-msgstr ""
+msgstr "nu este prezent"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:349
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:965
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:969
msgid "off"
-msgstr ""
+msgstr "oprit"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:778
msgid "on available prefix"
@@ -8580,7 +8618,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1390
msgid "open network"
-msgstr ""
+msgstr "rețea deschisă"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:795
msgid "other config (O)"
@@ -8591,11 +8629,11 @@ msgstr ""
msgid "output"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr ""
@@ -8646,7 +8684,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr ""
@@ -8664,7 +8702,7 @@ msgstr "necunoscut"
msgid "unlimited"
msgstr "nelimitat"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8685,175 +8723,175 @@ msgstr ""
msgid "untagged"
msgstr "neetichetat"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
-msgstr ""
+msgstr "adresă MAC validă"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
-msgstr ""
+msgstr "adresă validă:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
-msgstr ""
+msgstr "data valabilă (AAAA-LL-ZZ)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
-msgstr ""
+msgstr "valoare zecimală validă"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
-msgstr ""
+msgstr "nume de gazdă valid"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
-msgstr ""
+msgstr "nume de gazdă sau adresă IP validă"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
-msgstr ""
+msgstr "valoarea validă a portului"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
-msgstr ""
+msgstr "timp valabil (HH:MM:SS)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
-msgstr ""
+msgstr "valoare între %d și %d caractere"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
-msgstr ""
+msgstr "valoare cuprinsă între %f și %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
-msgstr ""
+msgstr "valoare mai mare sau egală cu %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
-msgstr ""
+msgstr "valoare mai mică sau egală cu %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr ""
@@ -8867,7 +8905,7 @@ msgstr "da"
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
msgid "« Back"
-msgstr "« Inapoi"
+msgstr "« Înapoi"
#~ msgid "TFTP Settings"
#~ msgstr "Setarile TFTP"
diff --git a/modules/luci-base/po/ru/base.po b/modules/luci-base/po/ru/base.po
index 1010c6f9eb..761f9ecb00 100644
--- a/modules/luci-base/po/ru/base.po
+++ b/modules/luci-base/po/ru/base.po
@@ -24,7 +24,7 @@ msgstr "%.1f дБ"
msgid "%d Bit"
msgstr "%d бит"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d неверных полей"
@@ -60,19 +60,19 @@ msgid "-- Additional Field --"
msgstr "-- Дополнительно --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Сделайте выбор --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- пользовательский --"
@@ -224,7 +224,7 @@ msgstr "Служба <abbr title=\"Router Advertisement\">RA</abbr>"
msgid "A configuration for the device \"%s\" already exists"
msgstr "Конфигурация для устройства «%s» уже существует"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Директория с таким же именем уже существует."
@@ -232,7 +232,7 @@ msgstr "Директория с таким же именем уже сущест
msgid "A new login is required since the authentication session expired."
msgstr "Необходима авторизация."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -416,11 +416,11 @@ msgstr "Адаптивная балансировка нагрузки (balance-
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "Адаптивная балансировка нагрузки передачи (balance-tlb, 5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -654,7 +654,7 @@ msgid "Allow the <em>root</em> user to login with password"
msgstr ""
"Разрешить пользователю <em>root</em> входить в систему с помощью пароля"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "Разрешенные IP-адреса"
@@ -821,16 +821,16 @@ msgstr "Применить опции DHCP к этой сети (пусто = в
msgid "Apply backup?"
msgstr "Восстановить резервную копию?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "Ошибка <code>%h</code> запроса на применение"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "Применить без проверки"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "Применение изменений... %d сек"
@@ -890,6 +890,7 @@ msgid "Authoritative"
msgstr "Основной"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Веб-интерфейс"
@@ -1113,8 +1114,8 @@ msgstr "Активировать интерфейс моста даже если
msgid "Broadcast policy (broadcast, 3)"
msgstr "Широковещательная политика (broadcast, 3)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Обзор…"
@@ -1145,8 +1146,8 @@ msgstr "Кеш"
msgid "Call failed"
msgstr "Ошибка вызова"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1221,11 +1222,11 @@ msgstr ""
msgid "Chain"
msgstr "Цепочка"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Изменения"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "Изменения отменены."
@@ -1331,7 +1332,7 @@ msgstr "Клиент"
msgid "Client ID to send when requesting DHCP"
msgstr "ID клиента при DHCP-запросе"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1399,16 +1400,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "Вычислять исходящую контрольную сумму (опционально)."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Конфигурация"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "Конфигурация применена."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "Конфигурация возвращена назад!"
@@ -1522,7 +1523,7 @@ msgstr "Содержимое сохранено."
msgid "Continue"
msgstr "Продолжить"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1765,11 +1766,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr "Делегировать IPv6 префиксы"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1781,7 +1782,7 @@ msgstr "Удалить"
msgid "Delete key"
msgstr "Удалить ключ"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "Ошибка запроса на удаление: %s"
@@ -1795,11 +1796,11 @@ msgstr "Интервал сообщений, регламентирующий д
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Описание"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Отменить выбор"
@@ -1872,7 +1873,7 @@ msgstr "Устройство отсутствует"
msgid "Device type"
msgstr "Тип устройства"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Устройство недоступно!"
@@ -1893,7 +1894,7 @@ msgstr "Диагностика"
msgid "Dial number"
msgstr "Dial номер"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Папка"
@@ -1967,10 +1968,14 @@ msgstr "Ошибка попытки отключения"
msgid "Disconnection attempt failed."
msgstr "Ошибка попытки отключения."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -2063,7 +2068,7 @@ msgstr ""
"Не отправлять никаких сообщений <abbr title=\"Router Advertisement, ICMPv6 "
"Type 134\">RA</abbr> на этом интерфейсе."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "Подтверждаете удаление «%s»?"
@@ -2075,7 +2080,7 @@ msgstr "Вы действительно хотите удалить следую
msgid "Do you really want to erase all settings?"
msgstr "Вы действительно хотите стереть все настройки?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Вы действительно хотите рекурсивно удалить директорию «%s»?"
@@ -2117,7 +2122,7 @@ msgstr "Скачать MTD раздел"
msgid "Downstream SNR offset"
msgstr "SNR offset внутренней сети"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "Перетащите, чтобы изменить порядок"
@@ -2167,9 +2172,9 @@ msgstr "EA-bits длина"
msgid "EAP-Method"
msgstr "Метод EAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2216,6 +2221,10 @@ msgstr "Чрезвычайная ситуация"
msgid "Enable"
msgstr "Включить"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2422,11 +2431,11 @@ msgstr "Режим инкапсуляции"
msgid "Encryption"
msgstr "Шифрование"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr "Конечный узел"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr "Порт конечного узла"
@@ -2529,7 +2538,7 @@ msgstr "Ожидается правильный IPv6-адрес"
msgid "Expecting two priority values separated by a colon"
msgstr "Ожидается два значение приоритета, разделённые двоеточием"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2609,7 +2618,7 @@ msgstr "FT протокол"
msgid "Failed to change the system password."
msgstr "Не удалось изменить системный пароль."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "Не удалось подтвердить применение в течении %d сек., ожидание отката…"
@@ -2617,7 +2626,7 @@ msgstr "Не удалось подтвердить применение в те
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Не удалось выполнить действие «/etc/init.d/%s %s»: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Файл"
@@ -2629,7 +2638,7 @@ msgstr ""
"Этот файл может содержать такие строки, как <code>server=1.2.3.4</code> или "
"<code>server=/domain/1.2.3.4</code>."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "Файл не доступен"
@@ -2643,7 +2652,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr "Локальный <abbr title=\"Служба доменных имён\">DNS</abbr>-файл."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "Имя файла"
@@ -2753,7 +2762,7 @@ msgstr "Операции с прошивкой"
msgid "Flashing…"
msgstr "Прошивка…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr "Для поддержки QR-кодов установите пакет qrencode!"
@@ -2946,7 +2955,7 @@ msgstr "Создать config"
msgid "Generate Key"
msgstr "Сгенерировать ключ"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr "Сгенерировать новый QR-код"
@@ -2958,7 +2967,7 @@ msgstr "Создать PMK локально"
msgid "Generate archive"
msgstr "Создать архив"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr "Сгенерировать новый QR-код"
@@ -2974,21 +2983,20 @@ msgstr "Основные настройки"
msgid "Global network options"
msgstr "Основные настройки сети"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr "Перейти к обновлению прошивки..."
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Перейти к настройке пароля..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3143,7 +3151,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "Скрыть <abbr title=\"Расширенный идентификатор сети\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr "Скрыть QR-код"
@@ -3331,7 +3339,7 @@ msgstr "IPv4-адрес шлюза"
msgid "IPv4 netmask"
msgstr "Маска сети IPv4"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr "Сеть IPv4 в формате адрес/маска подсети"
@@ -3432,7 +3440,7 @@ msgstr "IPv6 назначение длины"
msgid "IPv6 gateway"
msgstr "IPv6-адрес шлюза"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr "Сеть IPv6 в формате адрес/маска подсети"
@@ -3502,7 +3510,7 @@ msgstr "IPv6 через IPv4 (6to4)"
msgid "Identity"
msgstr "Идентификация EAP"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr "Если доступно, «‎PresharedKey» клиента"
@@ -3543,7 +3551,7 @@ msgstr ""
"Если выбрано, монтировать устройство используя название его раздела, а не "
"фиксированный файл устройства"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3874,6 +3882,8 @@ msgid "Invalid hexadecimal value"
msgstr "Неверное шестнадцатеричное значение"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Неверный логин и/или пароль! Попробуйте снова."
@@ -3893,7 +3903,7 @@ msgstr ""
"Оказалось, что вы пытаетесь прошить устройство прошивкой, которая по размеру "
"не помещается в чип флэш-памяти, проверьте ваш файл прошивки!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -4068,7 +4078,7 @@ msgstr ""
"Стандарт 802.11b может понадобиться для работы с устаревшими устройствами. "
"Включайте его только при необходимости."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "События:"
@@ -4193,17 +4203,19 @@ msgstr "Загрузка"
msgid "Load Average"
msgstr "Нагрузка (1, 5, 15м)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr "Загрузка QR-кода..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "Загрузка содержимого директории…"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "Загрузка страницы…"
@@ -4314,6 +4326,7 @@ msgstr ""
"Логическая сеть, к которой будет добавлен туннель (мост) (опционально)."
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Войти"
@@ -4682,7 +4695,7 @@ msgstr "Монитор"
msgid "More Characters"
msgstr "Слишком мало символов"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "Больше…"
@@ -4788,8 +4801,8 @@ msgstr "NT домен"
msgid "NTP server candidates"
msgstr "Список NTP-серверов"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4888,7 +4901,7 @@ msgstr "Новое имя интерфейса…"
msgid "Next »"
msgstr "Следующий »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4918,7 +4931,6 @@ msgstr "Без NAT-T"
msgid "No RX signal"
msgstr "Rx сигнал отсутствует"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4951,7 +4963,7 @@ msgstr "Любая"
msgid "No entries available"
msgstr "Нет доступных записей"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "Нет элементов в этом каталоге"
@@ -4991,7 +5003,7 @@ msgstr "Больше нет доступных ведомых, сохранит
msgid "No negative cache"
msgstr "Отключить кэш отрицательных ответов"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -5160,7 +5172,7 @@ msgstr "On-link маршрут"
msgid "One of hostname or MAC address must be specified!"
msgstr "Должен быть указан либо MAC-адрес, либо имя хоста!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "Одно из: %s"
@@ -5235,20 +5247,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "Настройка частоты"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr "Опция \"%s\" содержит недопустимое значение."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr "Опция \"%s\" не должна быть пустой."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Опция изменена"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Опция удалена"
@@ -5280,7 +5292,7 @@ msgstr ""
"d::'), используйте суффикс на вроде ('::1') для этого IPv6 адреса ('a:b:c:"
"d::1') для этого интерфейса."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
@@ -5288,12 +5300,12 @@ msgstr ""
"Необязательно. Base64-шифрованный общий ключ. Добавляет дополнительный слой "
"криптографии с симметричным ключом для постквантовой устойчивости."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
"Необязательно. Создавать маршруты для разрешенных IP адресов для этого узла."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "Необязательно. Описание узла."
@@ -5301,14 +5313,14 @@ msgstr "Необязательно. Описание узла."
msgid "Optional. Do not create host routes to peers."
msgstr "Необязательно. Не создавать маршруты к пирам."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
"Необязательно. Имя хоста пира. Имена разрешаются до появления интерфейса."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5322,11 +5334,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "Необязательно. MTU туннельного интерфейса."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "Необязательно. Порт узла."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5477,7 +5489,7 @@ msgstr "Назначить таблицу внутренних маршруто
msgid "Overview"
msgstr "Обзор"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "Перезаписать существующий файл «%s»?"
@@ -5612,6 +5624,7 @@ msgstr "Pass-through (зеркалирование физического уст
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Пароль"
@@ -5701,6 +5714,10 @@ msgstr "Отсутствует адрес пира"
msgid "Peer device name"
msgstr "Имя устройства узла"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "Пиры"
@@ -5728,7 +5745,7 @@ msgstr "Выполнить сброс"
msgid "Permission denied"
msgstr "Доступ запрещён"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "Постоянно держать включенным"
@@ -5759,7 +5776,7 @@ msgstr "пакетов"
msgid "Please enter your username and password."
msgstr "Пожалуйста, введите имя пользователя и пароль."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "Пожалуйста, выберите файл для загрузки."
@@ -5779,7 +5796,7 @@ msgstr "Изоляция порта"
msgid "Port status:"
msgstr "Состояние порта:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr "Потенциальное отрицание: %s"
@@ -5807,7 +5824,7 @@ msgstr "Делегированный префикс"
msgid "Prefix suppressor"
msgstr "Подавитель префикса"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "Предварительный ключ"
@@ -5906,7 +5923,7 @@ msgstr "Предоставлять новую сеть"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Псевдо Ad-Hoc (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Публичный ключ"
@@ -5933,8 +5950,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr "QMI модем"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr "QR-код"
@@ -6171,7 +6188,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr "Обязательно. Приватный ключ в кодировке Base64 для этого интерфейса."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr "Обязательно. Публичный ключ узла в кодировке Base64."
@@ -6301,8 +6318,8 @@ msgstr ""
"Локализировать имя хоста в зависимости от запрашиваемой подсети, если "
"доступно несколько IP-адресов."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Показать/скрыть пароль"
@@ -6310,19 +6327,19 @@ msgstr "Показать/скрыть пароль"
msgid "Reverse path filter"
msgstr "Фильтр обратного пути"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Вернуть"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "Вернуть изменения"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr "Ошибка <code>%h</code> отмены конфигурации"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "Отмена конфигурации…"
@@ -6348,7 +6365,7 @@ msgstr "Подготовка корневой директории"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr "Политика round-robin (balance-rr, 0)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "Маршрутизировать разрешенные IP-адреса"
@@ -6458,7 +6475,7 @@ msgstr "Сервер SSTP"
msgid "SWAP"
msgstr "Разделы подкачки (swap)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6469,7 +6486,7 @@ msgid "Save"
msgstr "Сохранить"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Применить"
@@ -6495,11 +6512,11 @@ msgstr "Поиск"
msgid "Scheduled Tasks"
msgstr "Планировщик"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Раздел добавлен"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Раздел удалён"
@@ -6517,9 +6534,9 @@ msgstr ""
"формата завершается с ошибкой. Используйте эту опцию только если уверены, "
"что файл образа корректный и предназначен именно для данного устройства!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "Выбрать файл…"
@@ -6716,7 +6733,7 @@ msgstr "Частота обновления сигнала"
msgid "Signal:"
msgstr "Сигнал:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Размер"
@@ -7130,7 +7147,7 @@ msgstr "Приоритет"
msgid "Start refresh"
msgstr "Запустить обновление"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "Применение конфигурации…"
@@ -7202,6 +7219,10 @@ msgstr "Остановить WPS"
msgid "Stop refresh"
msgstr "Остановить обновление"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr "Строгая фильтрация"
@@ -7266,7 +7287,7 @@ msgstr "Изменить протокол"
msgid "Switch to CIDR list notation"
msgstr "Переключить в формат CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "Символическая ссылка"
@@ -7303,7 +7324,6 @@ msgstr "Свойства системы"
msgid "System log buffer size"
msgstr "Размер системного журнала"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7357,11 +7377,15 @@ msgstr "Целевая платформа"
msgid "Target network"
msgstr "Сеть назначения"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Завершить"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr "«‎PublicKey» этого wg-интерфейса"
@@ -7493,7 +7517,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr "MTU не должно превышать MTU родительского устройства, равное %d байт"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7525,7 +7549,7 @@ msgstr ""
"При подключении к скрытой беспроводной сети необходимо вручную указать "
"правильный SSID"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7630,7 +7654,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr "Длина префикса IPv6 в битах"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7659,6 +7683,10 @@ msgstr "Локальная маска сети IPv4"
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr "Локальный IPv6-адрес, через который создается туннель (необязательно)."
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7819,11 +7847,11 @@ msgstr "Значение переопределено конфигурацией
msgid "There are no active leases"
msgstr "Нет активных арендованных адресов"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "Нет изменений для применения"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7921,8 +7949,8 @@ msgid ""
msgstr ""
"Эта опция не может быть использована, так как пакет ca-bundle не установлен."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -8200,7 +8228,7 @@ msgstr "Отмонтировать"
msgid "Unnamed key"
msgstr "Ключ без имени"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Не принятые изменения"
@@ -8230,7 +8258,7 @@ msgstr "Вверх"
msgid "Up Delay"
msgstr "Задержка включения интерфейса"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Загрузить"
@@ -8246,21 +8274,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Выбрать архив"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "Загрузка файла"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "Загрузка файла…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "Ошибка запроса на загрузку: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "Загрузка файла…"
@@ -8471,6 +8499,7 @@ msgstr "Ключ пользователя (PEM encoded)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Имя пользователя"
@@ -8783,7 +8812,7 @@ msgstr "Записывать системные события в файл"
msgid "XOR policy (balance-xor, 2)"
msgstr "Политика XOR (balance-xor, 2)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8812,7 +8841,7 @@ msgstr ""
"><strong>Внимание: если вы выключите один из основных скриптов инициализации "
"(например \"network\"), ваше устройство может оказаться недоступным!</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8981,7 +9010,7 @@ msgstr "полный дуплекс"
msgid "half-duplex"
msgstr "полудуплекс"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "значение в шестнадцатеричном представлении"
@@ -9006,11 +9035,11 @@ msgstr "игнорировать"
msgid "input"
msgstr "ввод"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "ключ длиной от 8 до 63 символов"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "ключ длиной 5 или 13 символов"
@@ -9043,12 +9072,12 @@ msgstr "нет"
msgid "no link"
msgstr "нет соединения"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "не пустое значение"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "ничего"
@@ -9082,11 +9111,11 @@ msgstr "other config (O)"
msgid "output"
msgstr "вывод"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "положительное десятичное число"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "положительное целое число"
@@ -9140,7 +9169,7 @@ msgstr ""
"\">HTTP</abbr> или <abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</"
"abbr>."
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "уникальное значение"
@@ -9158,7 +9187,7 @@ msgstr "неизвестный"
msgid "unlimited"
msgstr "без ограничений"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -9179,175 +9208,175 @@ msgstr "не определено -или- создать:"
msgid "untagged"
msgstr "без тега"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "верный IP-адрес"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "верный IP-адрес или префикс"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "верная IPv4 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "верный IPv4 адрес"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "верный IPv4 адрес или сеть"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "верный IPv4 адрес:порт"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "верная IPv4 сеть"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "верная IPv4 или IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "верное значение IPv4 префикса (0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "верная IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "верный IPv6 адрес"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "верный IPv6 адрес или префикс"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "верный IPv6 идентификатор хоста"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "верная IPv6 ctnm"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "верное значение IPv6 префикса (0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "верный MAC адрес"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "верный UCI идентификатор"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "верный UCI идентификатор, имя хоста или IP-адрес"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "верный адрес:порт"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "верная дата (ГГГГ-ММ-ДД)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "верное десятичное число"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "верное шестнадцатеричное значение WEP ключа"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "верное шестнадцатеричное значение WPA ключа"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "верное имя хоста:порт"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "верное имя хоста"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "верное имя хоста или IP-адрес"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "верное целое число"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr "верный мультикаст MAC-адрес"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "верная сеть в формате адрес/маска подсети"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "верный символ номера телефона (0-9, \"*\", \"#\", \"!\" or \".\")"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "верный порт или диапазон портов (порт1-порт2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "верное значение порта"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "верное время (ЧЧ:ММ:СС)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "значение длиной от %d до %d символов"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "значение в диапазоне от %f до %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "значение больше или равное %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "значение меньше или равное %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "значение с %d символами"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "значение длиной %d или менее символов"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "значение длиной %d или более символов"
diff --git a/modules/luci-base/po/sk/base.po b/modules/luci-base/po/sk/base.po
index acb594aea1..ffaf7526a9 100644
--- a/modules/luci-base/po/sk/base.po
+++ b/modules/luci-base/po/sk/base.po
@@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2021-08-11 21:12+0000\n"
-"Last-Translator: Marek Ľach <graweeld@googlemail.com>\n"
+"PO-Revision-Date: 2021-11-12 18:40+0000\n"
+"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n"
"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/luci/sk/>"
"\n"
"Language: sk\n"
@@ -10,7 +10,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Weblate 4.8-dev\n"
+"X-Generator: Weblate 4.9.1-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
msgid "%.1f dB"
@@ -20,7 +20,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bitový"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "Neplatné polia: %d"
@@ -56,19 +56,19 @@ msgid "-- Additional Field --"
msgstr "-- Dodatočné pole --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Prosím, vyberte --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- vlastné --"
@@ -217,7 +217,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Adresár s rovnakým názvom už existuje."
@@ -226,7 +226,7 @@ msgid "A new login is required since the authentication session expired."
msgstr ""
"Vyžaduje sa nové prihlásenie, pretože overenie totožnosti relácie vypršalo."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -400,11 +400,11 @@ msgstr ""
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -626,7 +626,7 @@ msgstr ""
msgid "Allow the <em>root</em> user to login with password"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "Povolené IP adresy"
@@ -784,16 +784,16 @@ msgstr ""
msgid "Apply backup?"
msgstr "Použiť zálohu?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "Použiť bez kontroly"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "Aplikujú sa zmeny konfigurácie… %ds"
@@ -849,6 +849,7 @@ msgid "Authoritative"
msgstr "Autoritatívny"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Vyžaduje sa overenie totožnosti"
@@ -1061,8 +1062,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Prehliadať…"
@@ -1092,8 +1093,8 @@ msgstr "Vo vyrovnávacej pamäti"
msgid "Call failed"
msgstr "Volanie zlyhalo"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1159,11 +1160,11 @@ msgstr ""
msgid "Chain"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Zmeny"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "Zmeny boli vrátené späť."
@@ -1183,11 +1184,11 @@ msgstr "Kanál"
#: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:81
msgid "Channel Analysis"
-msgstr ""
+msgstr "Analýza kanálov"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:377
msgid "Channel Width"
-msgstr ""
+msgstr "Šírka kanála"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
msgid "Check filesystems before mount"
@@ -1263,7 +1264,7 @@ msgstr "Klient"
msgid "Client ID to send when requesting DHCP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1325,16 +1326,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Konfigurácia"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "Zmeny konfigurácie boli použité."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "Zmeny konfigurácie boli vrátené späť!"
@@ -1432,7 +1433,7 @@ msgstr "Obsah bol uložený."
msgid "Continue"
msgstr "Pokračovať"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1667,11 +1668,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1683,7 +1684,7 @@ msgstr "Odstrániť"
msgid "Delete key"
msgstr "Odstrániť kľúč"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "Požiadavka na odstránenie zlyhala: %s"
@@ -1697,11 +1698,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Popis"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Zrušiť výber"
@@ -1774,7 +1775,7 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Zariadenie neprístupné!"
@@ -1795,7 +1796,7 @@ msgstr "Diagnostika"
msgid "Dial number"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Adresár"
@@ -1867,10 +1868,14 @@ msgstr "Pokus o odpojenie zlyhal"
msgid "Disconnection attempt failed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1949,7 +1954,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "Naozaj chcete odstrániť „%s“?"
@@ -1961,7 +1966,7 @@ msgstr "Naozaj chcete odstrániť nasledovný kľúč SSH?"
msgid "Do you really want to erase all settings?"
msgstr "Naozaj chcete vymazať všetky nastavenia?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Naozaj chcete rekurzívne odstrániť adresár „%s“?"
@@ -2003,7 +2008,7 @@ msgstr "Stiahnuť mtdblock"
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr ""
@@ -2048,9 +2053,9 @@ msgstr "Dĺžka bitov EA"
msgid "EAP-Method"
msgstr "Spôsob EAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2095,6 +2100,10 @@ msgstr ""
msgid "Enable"
msgstr "Povoliť"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2295,11 +2304,11 @@ msgstr ""
msgid "Encryption"
msgstr "Šifrovanie"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2400,7 +2409,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2478,7 +2487,7 @@ msgstr ""
msgid "Failed to change the system password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
"Zlyhalo potvrdenie aplikovania nastavení v čase %ds, čaká sa na návrat "
@@ -2488,7 +2497,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Súbor"
@@ -2498,7 +2507,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "Súbor nie je prístupný"
@@ -2510,7 +2519,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "Názov súboru"
@@ -2617,7 +2626,7 @@ msgstr "Operácie nahrávania"
msgid "Flashing…"
msgstr "Nahráva sa…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2799,7 +2808,7 @@ msgstr "Vygenerovať nastavenie"
msgid "Generate Key"
msgstr "Generovať kľúč"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2811,7 +2820,7 @@ msgstr ""
msgid "Generate archive"
msgstr "Generovať archív"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2827,21 +2836,20 @@ msgstr "Globálne nastavenia"
msgid "Global network options"
msgstr "Globálne voľby siete"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Prejsť na konfiguráciu hesla..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -2997,7 +3005,7 @@ msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr ""
"Skryť <abbr title=\"Identifikátor nastavenej rozšírenej služby\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3183,7 +3191,7 @@ msgstr "Brána IPv4"
msgid "IPv4 netmask"
msgstr "Maska siete IPv4"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3284,7 +3292,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr "Brána IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3355,7 +3363,7 @@ msgstr ""
msgid "Identity"
msgstr "Identita"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3390,7 +3398,7 @@ msgid ""
"device node"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3696,6 +3704,8 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr ""
@@ -3715,7 +3725,7 @@ msgstr ""
"Zdá sa, že sa pokúšate nahrať obraz, ktorý sa nezmestí do pamäte flash. "
"Prosím, overte súbor obrazu!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3888,7 +3898,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "Legenda:"
@@ -4001,17 +4011,19 @@ msgstr "Zaťaženie"
msgid "Load Average"
msgstr "Priemerné zaťaženie"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "Načítava sa obsah priečinka…"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "Načítava sa zobrazenie…"
@@ -4117,6 +4129,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Prihlásiť sa"
@@ -4471,7 +4484,7 @@ msgstr ""
msgid "More Characters"
msgstr "Viac znakov"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "Viac…"
@@ -4575,8 +4588,8 @@ msgstr "Doména NT"
msgid "NTP server candidates"
msgstr "Kandidáti serverov NTP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4672,7 +4685,7 @@ msgstr "Názov nového rozhrania…"
msgid "Next »"
msgstr "Ďalej »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4702,7 +4715,6 @@ msgstr "Bez NAT-T"
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4733,7 +4745,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "V tomto adresári nie sú žiadne položky"
@@ -4773,7 +4785,7 @@ msgstr ""
msgid "No negative cache"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4938,7 +4950,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "Jeden z nasledovných: %s"
@@ -5002,20 +5014,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "Pracovná frekvencia"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Voľba zmenená"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Voľba odstránená"
@@ -5041,17 +5053,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "Voliteľné. Popis účastníka."
@@ -5059,13 +5071,13 @@ msgstr "Voliteľné. Popis účastníka."
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5076,11 +5088,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "Voliteľné. Port účastníka."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5221,7 +5233,7 @@ msgstr ""
msgid "Overview"
msgstr "Prehľad"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5356,6 +5368,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Heslo"
@@ -5445,6 +5458,10 @@ msgstr "Chýba adresa účastníka"
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "Účastníci"
@@ -5472,7 +5489,7 @@ msgstr "Vykonať obnovenie"
msgid "Permission denied"
msgstr "Prístup zamietnutý"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
@@ -5503,7 +5520,7 @@ msgstr ""
msgid "Please enter your username and password."
msgstr "Prosím, zadajte vaše používateľské meno a heslo."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "Prosím, vyberte súbor na odovzdanie."
@@ -5523,7 +5540,7 @@ msgstr ""
msgid "Port status:"
msgstr "Stav portu:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5551,7 +5568,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "Predzdieľaný kľúč"
@@ -5642,7 +5659,7 @@ msgstr ""
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Verejný kľúč"
@@ -5663,8 +5680,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5897,7 +5914,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -6025,8 +6042,8 @@ msgid ""
"received if multiple IPs are available."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Odkryť/skryť heslo"
@@ -6034,19 +6051,19 @@ msgstr "Odkryť/skryť heslo"
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Vrátiť späť"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "Vrátiť zmeny"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "Vracia sa späť konfigurácia…"
@@ -6069,7 +6086,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6176,7 +6193,7 @@ msgstr ""
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6187,7 +6204,7 @@ msgid "Save"
msgstr "Uložiť"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Uložiť a použiť"
@@ -6213,11 +6230,11 @@ msgstr "Prehľadať"
msgid "Scheduled Tasks"
msgstr "Naplánované úlohy"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Sekcia pridaná"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Sekcia odstránená"
@@ -6232,9 +6249,9 @@ msgid ""
"your device!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "Vybrať súbor…"
@@ -6416,7 +6433,7 @@ msgstr ""
msgid "Signal:"
msgstr "Signál:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Veľkosť"
@@ -6755,7 +6772,7 @@ msgstr "Počiatočná priorita"
msgid "Start refresh"
msgstr "Spustiť obnovu"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "Spúšťa sa aplikovanie konfigurácie…"
@@ -6824,6 +6841,10 @@ msgstr ""
msgid "Stop refresh"
msgstr "Zastaviť obnovu"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -6886,7 +6907,7 @@ msgstr "Prepnúť protokol"
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "Symbolický odkaz"
@@ -6923,7 +6944,6 @@ msgstr "Vlastnosti systému"
msgid "System log buffer size"
msgstr "Veľkosť vyrovnávacej pamäte systémového denníka"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -6977,11 +6997,15 @@ msgstr ""
msgid "Target network"
msgstr "Cieľová sieť"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Vypovedať"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7096,7 +7120,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7124,7 +7148,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7218,7 +7242,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7245,6 +7269,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7323,6 +7351,10 @@ msgid ""
"address of your computer to reach the device again, depending on your "
"settings."
msgstr ""
+"Práve sa nahráva systém.<br /> NEVYPÍNAJTE ZARIADENIE!<br /> Pred tým, než "
+"sa pokúsite opätovne pripojiť, počkajte niekoľko minút. V závislosti od "
+"vašich nastavení, bude možno potrebné obnoviť adresu vášho počítača, aby "
+"bolo možné opäť pristúpiť k zariadeniu."
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
msgid ""
@@ -7371,11 +7403,11 @@ msgstr ""
msgid "There are no active leases"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "Nie sú žiadne zmeny na aplikovanie"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7464,8 +7496,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7737,7 +7769,7 @@ msgstr "Odpojiť"
msgid "Unnamed key"
msgstr "Kľúč bez názvu"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Neuložené zmeny"
@@ -7767,7 +7799,7 @@ msgstr ""
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Odovzdať"
@@ -7784,21 +7816,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Odovzdať archív..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "Odovzdať súbor"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "Odovzdať súbor…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "Požiadavka na odovzdanie zlyhala: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "Odovzdáva sa súbor…"
@@ -7987,6 +8019,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Používateľské meno"
@@ -8278,7 +8311,7 @@ msgstr "Zapísať systémový denník do súboru"
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8305,7 +8338,7 @@ msgstr ""
"základné iniciačné skripty, napríklad „sieť“, vaše zariadenie by sa mohlo "
"stať neprístupným!</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8468,7 +8501,7 @@ msgstr ""
msgid "half-duplex"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr ""
@@ -8493,11 +8526,11 @@ msgstr ""
msgid "input"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "kľúč v rozpätí 8 a 63 znakov"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr ""
@@ -8530,12 +8563,12 @@ msgstr ""
msgid "no link"
msgstr "bez linky"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "nejaká hodnota"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr ""
@@ -8569,11 +8602,11 @@ msgstr ""
msgid "output"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr ""
@@ -8624,7 +8657,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "jedinečná hodnota"
@@ -8642,7 +8675,7 @@ msgstr "neznámy"
msgid "unlimited"
msgstr "neobmedzené"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8663,175 +8696,175 @@ msgstr ""
msgid "untagged"
msgstr "neoznačené"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "platná adresa:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "platná decimálna hodnota"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "platný hexadecimálny WEP kľúč"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "platný hexadecimálny WPA kľúč"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "platný hostiteľ:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "platný názov hostiteľa"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "platný názov hostiteľa alebo IP adresa"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "platná celá hodnota"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "platná sieť v anotácii adresa/sieťová maska"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "platné telefónne číslo (0-9, \"*\", \"#\", \"!\" or \".\")"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "platný port alebo rozsah portov (port1-port2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "platná hodnota portu"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "platný čas (HH:MM:SS)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "hodnota v rozpätí %d a %d znakov"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "hodnota v rozpätí %f a %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "hodnota väčšia alebo rovná %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "hodnota menšia alebo rovná %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "hodnota s počtom znakov: %d"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "hodnota aspoň s počtom znakov: %d"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "hodnota s maximálnym počtom znakov: %d"
diff --git a/modules/luci-base/po/sv/base.po b/modules/luci-base/po/sv/base.po
index bd20f44fa7..6dfec326de 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: 2021-11-07 15:53+0000\n"
-"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n"
+"PO-Revision-Date: 2021-11-20 12:52+0000\n"
+"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\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.9-dev\n"
+"X-Generator: Weblate 4.9.1\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
msgid "%.1f dB"
@@ -20,7 +20,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d ogiltiga fält(en)"
@@ -56,19 +56,19 @@ msgid "-- Additional Field --"
msgstr "-- Ytterligare fält --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Vänligen välj --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- anpassad --"
@@ -217,7 +217,7 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-tjänst"
msgid "A configuration for the device \"%s\" already exists"
msgstr "En konfiguration för enheten \"%s\" finns redan"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "En katalog med samma namn finns redan."
@@ -225,7 +225,7 @@ msgstr "En katalog med samma namn finns redan."
msgid "A new login is required since the authentication session expired."
msgstr "En ny inloggning krävs då autentiseringssessionen har upphört."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -401,11 +401,11 @@ msgstr ""
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -630,7 +630,7 @@ msgstr ""
msgid "Allow the <em>root</em> user to login with password"
msgstr "Tillåt <em>root</em>-användaren att logga in med lösenord"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "Tillåtna IP-adresser"
@@ -786,16 +786,16 @@ msgstr ""
msgid "Apply backup?"
msgstr "Verkställ säkerhetskopia?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "Verkställer ändringar i konfigurationen... %ds"
@@ -850,6 +850,7 @@ msgid "Authoritative"
msgstr "Auktoritär"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Tillstånd krävs"
@@ -1062,8 +1063,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Bläddra…"
@@ -1094,8 +1095,8 @@ msgstr ""
msgid "Call failed"
msgstr "Anrop misslyckades"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1161,11 +1162,11 @@ msgstr ""
msgid "Chain"
msgstr "Kedja"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Ändringar"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "Ändringar har återställts."
@@ -1260,7 +1261,7 @@ msgstr "Klient"
msgid "Client ID to send when requesting DHCP"
msgstr "Klient-ID att skicka vid DHCP-förfrågning"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1322,16 +1323,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Konfiguration"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "Konfigurationsändringar sparade."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "Konfigurationsändringar har återställts!"
@@ -1429,7 +1430,7 @@ msgstr "Innehåll har sparats."
msgid "Continue"
msgstr "Fortsätt"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1659,11 +1660,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1675,7 +1676,7 @@ msgstr "Radera"
msgid "Delete key"
msgstr "Radera nyckel"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr ""
@@ -1689,11 +1690,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Beskrivning"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Avmarkera"
@@ -1766,13 +1767,13 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Enheten kan inte nås!"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
msgid "Device unreachable! Still waiting for device..."
-msgstr "Enheten ej nåbar! Väntar fortfarande på enheten..."
+msgstr "Enheten kan inte nås! Väntar fortfarande på enheten…"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1229
msgid "Devices"
@@ -1787,7 +1788,7 @@ msgstr "Diagnostik"
msgid "Dial number"
msgstr "Slå nummer"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Mapp"
@@ -1861,10 +1862,14 @@ msgstr ""
msgid "Disconnection attempt failed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1947,7 +1952,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "Vill du verkligen radera \"%s\" ?"
@@ -1959,7 +1964,7 @@ msgstr "Vill du verkligen ta bort följande SSH-nyckel?"
msgid "Do you really want to erase all settings?"
msgstr "Vill du verkligen radera alla inställningar?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr ""
@@ -2001,7 +2006,7 @@ msgstr ""
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "Dra för att sortera om"
@@ -2047,9 +2052,9 @@ msgstr ""
msgid "EAP-Method"
msgstr "EAP-metod"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2094,6 +2099,10 @@ msgstr "Nödsituation"
msgid "Enable"
msgstr "Aktivera"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2292,11 +2301,11 @@ msgstr ""
msgid "Encryption"
msgstr "Kryptering"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2397,7 +2406,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2475,7 +2484,7 @@ msgstr ""
msgid "Failed to change the system password."
msgstr "Byte av systemlösenord misslyckades."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2483,7 +2492,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Fil"
@@ -2493,7 +2502,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "Fil ej nåbar"
@@ -2505,7 +2514,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr "lokal <abbr title=\"Domain Name System\">DNS</abbr>-fil."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "Filnamn"
@@ -2612,7 +2621,7 @@ msgstr ""
msgid "Flashing…"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2794,7 +2803,7 @@ msgstr "Generera konfig"
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2806,7 +2815,7 @@ msgstr ""
msgid "Generate archive"
msgstr "Generera arkiv"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2822,21 +2831,20 @@ msgstr "Globala inställningar"
msgid "Global network options"
msgstr "Globala nätverksalternativ"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Gå till lösenordskonfiguration..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -2991,7 +2999,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "Göm <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3176,7 +3184,7 @@ msgstr "IPv4-gateway"
msgid "IPv4 netmask"
msgstr "IPv4-nätmask"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3277,7 +3285,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr "IPv6-gateway"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3347,7 +3355,7 @@ msgstr "IPv6-över-IPv4 (6till4)"
msgid "Identity"
msgstr "Identitet"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3382,7 +3390,7 @@ msgid ""
"device node"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3688,6 +3696,8 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Ogiltigt användarnamn och/eller lösenord! Vänligen försök igen."
@@ -3705,7 +3715,7 @@ msgid ""
"flash memory, please verify the image file!"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3878,7 +3888,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr ""
@@ -3989,17 +3999,19 @@ msgstr "Last"
msgid "Load Average"
msgstr "Snitt-belastning"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr ""
@@ -4105,6 +4117,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Logga in"
@@ -4457,7 +4470,7 @@ msgstr "Övervaka"
msgid "More Characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr ""
@@ -4561,8 +4574,8 @@ msgstr "NT-domän"
msgid "NTP server candidates"
msgstr "NTP-serverkandidater"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4658,7 +4671,7 @@ msgstr ""
msgid "Next »"
msgstr "Nästa »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4688,7 +4701,6 @@ msgstr "Ingen NAT-T"
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4719,7 +4731,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr ""
@@ -4759,7 +4771,7 @@ msgstr ""
msgid "No negative cache"
msgstr "Ingen negativ cache"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4924,7 +4936,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr "En utav värdnamn eller MAC-adress måste anges!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr ""
@@ -4988,20 +5000,20 @@ msgstr ""
msgid "Operating frequency"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Alternativet ändrades"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Alternativet togs bort"
@@ -5027,17 +5039,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr ""
@@ -5045,13 +5057,13 @@ msgstr ""
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5062,11 +5074,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5207,7 +5219,7 @@ msgstr ""
msgid "Overview"
msgstr "Överblick"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5342,6 +5354,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Lösenord"
@@ -5431,6 +5444,10 @@ msgstr ""
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "Motpart"
@@ -5458,7 +5475,7 @@ msgstr "Utför återställning"
msgid "Permission denied"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
@@ -5489,7 +5506,7 @@ msgstr "Pkt."
msgid "Please enter your username and password."
msgstr "Vänligen ange ditt användarnamn och lösenord."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr ""
@@ -5509,7 +5526,7 @@ msgstr ""
msgid "Port status:"
msgstr "Port-status:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5537,7 +5554,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr ""
@@ -5628,7 +5645,7 @@ msgstr ""
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Publik nyckel"
@@ -5649,8 +5666,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr "QMI-telefoni"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5881,7 +5898,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -6009,8 +6026,8 @@ msgid ""
"received if multiple IPs are available."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Visa/dölj lösenordet"
@@ -6018,19 +6035,19 @@ msgstr "Visa/dölj lösenordet"
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Återgå"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr ""
@@ -6053,7 +6070,7 @@ msgstr "Root-förberedelse"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6158,7 +6175,7 @@ msgstr ""
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6169,7 +6186,7 @@ msgid "Save"
msgstr "Spara"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Spara och Verkställ"
@@ -6195,11 +6212,11 @@ msgstr "Skanna"
msgid "Scheduled Tasks"
msgstr "Schemalagda uppgifter"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Sektionen lades till"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Sektionen togs bort"
@@ -6214,9 +6231,9 @@ msgid ""
"your device!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr ""
@@ -6398,7 +6415,7 @@ msgstr ""
msgid "Signal:"
msgstr "Signal:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Storlek"
@@ -6734,7 +6751,7 @@ msgstr ""
msgid "Start refresh"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr ""
@@ -6803,6 +6820,10 @@ msgstr ""
msgid "Stop refresh"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -6865,7 +6886,7 @@ msgstr "Byt protokoll"
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr ""
@@ -6902,7 +6923,6 @@ msgstr "Systemets egenskaper"
msgid "System log buffer size"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -6956,11 +6976,15 @@ msgstr ""
msgid "Target network"
msgstr "Målnätverk"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7075,7 +7099,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7101,7 +7125,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7189,7 +7213,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7216,6 +7240,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7342,11 +7370,11 @@ msgstr ""
msgid "There are no active leases"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7428,8 +7456,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7699,7 +7727,7 @@ msgstr "Avmontera"
msgid "Unnamed key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Osparade ändringar"
@@ -7729,7 +7757,7 @@ msgstr ""
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Ladda upp"
@@ -7744,21 +7772,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Ladda upp arkiv..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr ""
@@ -7945,6 +7973,7 @@ msgstr "Användarnyckel (PEM-krypterad)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Användarnamn"
@@ -8237,7 +8266,7 @@ msgstr "Skriv systemlogg till fil"
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8260,7 +8289,7 @@ msgid ""
"scripts like \"network\", your device might become inaccessible!</strong>"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8425,7 +8454,7 @@ msgstr "full-duplex"
msgid "half-duplex"
msgstr "halv-duplex"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr ""
@@ -8450,11 +8479,11 @@ msgstr ""
msgid "input"
msgstr "inmatning"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr ""
@@ -8487,12 +8516,12 @@ msgstr "nej"
msgid "no link"
msgstr "ingen länk"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "inga"
@@ -8526,11 +8555,11 @@ msgstr ""
msgid "output"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr ""
@@ -8581,7 +8610,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr ""
@@ -8599,7 +8628,7 @@ msgstr "okänd"
msgid "unlimited"
msgstr "obegränsad"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8620,175 +8649,175 @@ msgstr "ospecifierat -eller- skapa:"
msgid "untagged"
msgstr "otaggat"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr ""
diff --git a/modules/luci-base/po/templates/base.pot b/modules/luci-base/po/templates/base.pot
index f4e4431a1c..10cf0e29c0 100644
--- a/modules/luci-base/po/templates/base.pot
+++ b/modules/luci-base/po/templates/base.pot
@@ -9,7 +9,7 @@ msgstr ""
msgid "%d Bit"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr ""
@@ -45,19 +45,19 @@ msgid "-- Additional Field --"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr ""
@@ -204,7 +204,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr ""
@@ -212,7 +212,7 @@ msgstr ""
msgid "A new login is required since the authentication session expired."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -386,11 +386,11 @@ msgstr ""
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -612,7 +612,7 @@ msgstr ""
msgid "Allow the <em>root</em> user to login with password"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr ""
@@ -768,16 +768,16 @@ msgstr ""
msgid "Apply backup?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr ""
@@ -832,6 +832,7 @@ msgid "Authoritative"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr ""
@@ -1044,8 +1045,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr ""
@@ -1075,8 +1076,8 @@ msgstr ""
msgid "Call failed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1142,11 +1143,11 @@ msgstr ""
msgid "Chain"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr ""
@@ -1239,7 +1240,7 @@ msgstr ""
msgid "Client ID to send when requesting DHCP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1301,16 +1302,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr ""
@@ -1408,7 +1409,7 @@ msgstr ""
msgid "Continue"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1638,11 +1639,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1654,7 +1655,7 @@ msgstr ""
msgid "Delete key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr ""
@@ -1668,11 +1669,11 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr ""
@@ -1745,7 +1746,7 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr ""
@@ -1766,7 +1767,7 @@ msgstr ""
msgid "Dial number"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr ""
@@ -1838,10 +1839,14 @@ msgstr ""
msgid "Disconnection attempt failed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1920,7 +1925,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr ""
@@ -1932,7 +1937,7 @@ msgstr ""
msgid "Do you really want to erase all settings?"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr ""
@@ -1974,7 +1979,7 @@ msgstr ""
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr ""
@@ -2019,9 +2024,9 @@ msgstr ""
msgid "EAP-Method"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2066,6 +2071,10 @@ msgstr ""
msgid "Enable"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2264,11 +2273,11 @@ msgstr ""
msgid "Encryption"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2369,7 +2378,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2447,7 +2456,7 @@ msgstr ""
msgid "Failed to change the system password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
@@ -2455,7 +2464,7 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr ""
@@ -2465,7 +2474,7 @@ msgid ""
"<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr ""
@@ -2477,7 +2486,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr ""
@@ -2584,7 +2593,7 @@ msgstr ""
msgid "Flashing…"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2766,7 +2775,7 @@ msgstr ""
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2778,7 +2787,7 @@ msgstr ""
msgid "Generate archive"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2794,21 +2803,20 @@ msgstr ""
msgid "Global network options"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -2961,7 +2969,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3146,7 +3154,7 @@ msgstr ""
msgid "IPv4 netmask"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3247,7 +3255,7 @@ msgstr ""
msgid "IPv6 gateway"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3317,7 +3325,7 @@ msgstr ""
msgid "Identity"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3352,7 +3360,7 @@ msgid ""
"device node"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3658,6 +3666,8 @@ msgid "Invalid hexadecimal value"
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr ""
@@ -3675,7 +3685,7 @@ msgid ""
"flash memory, please verify the image file!"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3848,7 +3858,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr ""
@@ -3958,17 +3968,19 @@ msgstr ""
msgid "Load Average"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr ""
@@ -4074,6 +4086,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr ""
@@ -4424,7 +4437,7 @@ msgstr ""
msgid "More Characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr ""
@@ -4528,8 +4541,8 @@ msgstr ""
msgid "NTP server candidates"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4625,7 +4638,7 @@ msgstr ""
msgid "Next »"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4655,7 +4668,6 @@ msgstr ""
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4686,7 +4698,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr ""
@@ -4726,7 +4738,7 @@ msgstr ""
msgid "No negative cache"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4891,7 +4903,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr ""
@@ -4955,20 +4967,20 @@ msgstr ""
msgid "Operating frequency"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr ""
@@ -4994,17 +5006,17 @@ msgid ""
"for the interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr ""
@@ -5012,13 +5024,13 @@ msgstr ""
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5029,11 +5041,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5174,7 +5186,7 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr ""
@@ -5309,6 +5321,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr ""
@@ -5398,6 +5411,10 @@ msgstr ""
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr ""
@@ -5425,7 +5442,7 @@ msgstr ""
msgid "Permission denied"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr ""
@@ -5456,7 +5473,7 @@ msgstr ""
msgid "Please enter your username and password."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr ""
@@ -5476,7 +5493,7 @@ msgstr ""
msgid "Port status:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr ""
@@ -5504,7 +5521,7 @@ msgstr ""
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr ""
@@ -5595,7 +5612,7 @@ msgstr ""
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr ""
@@ -5616,8 +5633,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5848,7 +5865,7 @@ msgstr ""
msgid "Required. Base64-encoded private key for this interface."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
@@ -5976,8 +5993,8 @@ msgid ""
"received if multiple IPs are available."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr ""
@@ -5985,19 +6002,19 @@ msgstr ""
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr ""
@@ -6020,7 +6037,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr ""
@@ -6125,7 +6142,7 @@ msgstr ""
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6136,7 +6153,7 @@ msgid "Save"
msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr ""
@@ -6162,11 +6179,11 @@ msgstr ""
msgid "Scheduled Tasks"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr ""
@@ -6181,9 +6198,9 @@ msgid ""
"your device!"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr ""
@@ -6365,7 +6382,7 @@ msgstr ""
msgid "Signal:"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr ""
@@ -6701,7 +6718,7 @@ msgstr ""
msgid "Start refresh"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr ""
@@ -6770,6 +6787,10 @@ msgstr ""
msgid "Stop refresh"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -6832,7 +6853,7 @@ msgstr ""
msgid "Switch to CIDR list notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr ""
@@ -6869,7 +6890,6 @@ msgstr ""
msgid "System log buffer size"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -6923,11 +6943,15 @@ msgstr ""
msgid "Target network"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7042,7 +7066,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7068,7 +7092,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7156,7 +7180,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7183,6 +7207,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7309,11 +7337,11 @@ msgstr ""
msgid "There are no active leases"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7393,8 +7421,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7662,7 +7690,7 @@ msgstr ""
msgid "Unnamed key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr ""
@@ -7692,7 +7720,7 @@ msgstr ""
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr ""
@@ -7707,21 +7735,21 @@ msgstr ""
msgid "Upload archive..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr ""
@@ -7908,6 +7936,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr ""
@@ -8199,7 +8228,7 @@ msgstr ""
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8222,7 +8251,7 @@ msgid ""
"scripts like \"network\", your device might become inaccessible!</strong>"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8385,7 +8414,7 @@ msgstr ""
msgid "half-duplex"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr ""
@@ -8410,11 +8439,11 @@ msgstr ""
msgid "input"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr ""
@@ -8447,12 +8476,12 @@ msgstr ""
msgid "no link"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr ""
@@ -8486,11 +8515,11 @@ msgstr ""
msgid "output"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr ""
@@ -8541,7 +8570,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr ""
@@ -8559,7 +8588,7 @@ msgstr ""
msgid "unlimited"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8580,175 +8609,175 @@ msgstr ""
msgid "untagged"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr ""
diff --git a/modules/luci-base/po/tr/base.po b/modules/luci-base/po/tr/base.po
index f8c345dbb5..90dde8327a 100644
--- a/modules/luci-base/po/tr/base.po
+++ b/modules/luci-base/po/tr/base.po
@@ -21,7 +21,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d geçersiz alan(lar)"
@@ -57,19 +57,19 @@ msgid "-- Additional Field --"
msgstr "-- Ek Alan--"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Lütfen seçin --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- özel --"
@@ -216,7 +216,7 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-Servisi"
msgid "A configuration for the device \"%s\" already exists"
msgstr "\"%s\" cihazı için bir yapılandırma zaten var"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Aynı isim ile bir dizin zaten bulunuyor."
@@ -225,7 +225,7 @@ msgid "A new login is required since the authentication session expired."
msgstr ""
"Kimlik doğrulama oturumu sona erdiğinden dolayı yeni bir oturum açma gerekli."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -405,11 +405,11 @@ msgstr "Uyarlanabilir yük dengelemesi (balance-alb, 6)"
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "Uyarlanabilir iletim yükü dengeleme (balance-tlb, 5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -641,7 +641,7 @@ msgstr "Sistemin özellik araştırmasına izin ver"
msgid "Allow the <em>root</em> user to login with password"
msgstr "<em>root</em> kullanıcısının parolayla oturum açmasına izin ver"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "İzin verilen IP adresleri"
@@ -806,16 +806,16 @@ msgstr "Bu ağa DHCP Seçeneklerini uygulayın. (Boş = tüm istemciler)."
msgid "Apply backup?"
msgstr "Yedek uygulansın mı?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "Başvuru isteği <code>%h</code> durumuyla başarısız oldu"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "İşaretlenmemişi uygula"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "Yapılandırma değişiklikleri uygulanıyor… %ds"
@@ -875,6 +875,7 @@ msgid "Authoritative"
msgstr "Yetkili"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "İzin Gerekli"
@@ -1093,8 +1094,8 @@ msgstr "Bağlantı noktası bağlı olmasa bile köprü arayüzünü açın"
msgid "Broadcast policy (broadcast, 3)"
msgstr "Yayın politikası (broadcast, 3)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Araştır…"
@@ -1124,8 +1125,8 @@ msgstr "Önbelleğe alınan"
msgid "Call failed"
msgstr "Çağrı başarısız"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1199,11 +1200,11 @@ msgstr ""
msgid "Chain"
msgstr "Zincir"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Değişiklikler"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "Değişiklikler geri alındı."
@@ -1306,7 +1307,7 @@ msgstr "İstemci"
msgid "Client ID to send when requesting DHCP"
msgstr "DHCP istendiğinde gönderilecek İstemci Kimliği"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1375,16 +1376,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "Giden sağlama toplamını hesaplayın (isteğe bağlı)."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Yapılandırma"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "Yapılandırma değişiklikleri uygulandı."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "Yapılandırma değişiklikleri geri alındı!"
@@ -1495,7 +1496,7 @@ msgstr "İçerik kaydedildi."
msgid "Continue"
msgstr "Devam et"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1739,11 +1740,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr "IPv6 öneklerini temsil et"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1755,7 +1756,7 @@ msgstr "Sil"
msgid "Delete key"
msgstr "Anahtarı sil"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "Silme isteği başarısız oldu: %s"
@@ -1769,11 +1770,11 @@ msgstr "Teslimat Trafiği Gösterge Mesaj Aralığı"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Açıklama"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Seçimi kaldır"
@@ -1846,7 +1847,7 @@ msgstr "Cihaz mevcut değil"
msgid "Device type"
msgstr "Cihaz tipi"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Cihaza ulaşılamıyor!"
@@ -1867,7 +1868,7 @@ msgstr "Tanılama"
msgid "Dial number"
msgstr "Arama numarası"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Dizin"
@@ -1941,10 +1942,14 @@ msgstr "Bağlantı kesme girişimi başarısız oldu"
msgid "Disconnection attempt failed."
msgstr "Bağlantı kesme girişimi başarısız oldu."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -2033,7 +2038,7 @@ msgstr ""
"Bu arayüzde herhangi bir <abbr title=\"Router Advertisement, ICMPv6 Type "
"134\">RA</abbr> mesajı gönderme."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "\"%s\" yi gerçekten silmek istiyor musunuz?"
@@ -2045,7 +2050,7 @@ msgstr "Aşağıdaki SSH anahtarını gerçekten silmek istiyor musunuz?"
msgid "Do you really want to erase all settings?"
msgstr "Tüm ayarları gerçekten silmek istiyor musunuz?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "\"%s\" dizinini gerçekten yinelemeli olarak silmek istiyor musunuz?"
@@ -2087,7 +2092,7 @@ msgstr "Mtdblock'u indir"
msgid "Downstream SNR offset"
msgstr "Aşağı akış SNR ofseti"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "Yeniden sıralamak için sürükleyin"
@@ -2137,9 +2142,9 @@ msgstr "EA bit uzunluğu"
msgid "EAP-Method"
msgstr "EAP Yöntemi"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2186,6 +2191,10 @@ msgstr "Acil Durum"
msgid "Enable"
msgstr "Etkinleştir"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2395,11 +2404,11 @@ msgstr "Encapsulation modu"
msgid "Encryption"
msgstr "Şifreleme"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr "Uç Nokta Ana Bilgisayarı"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr "Uç Nokta Bağlantı Noktası"
@@ -2502,7 +2511,7 @@ msgstr "Geçerli bir IPv6 adresi bekleniyor"
msgid "Expecting two priority values separated by a colon"
msgstr "İki nokta üst üste ile ayrılmış iki öncelik değeri bekleniyor"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2582,7 +2591,7 @@ msgstr "FT protokolü"
msgid "Failed to change the system password."
msgstr "Sistem şifresi değiştirilemedi."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "%ds içinde ayarlar uygulanamadı, geri alma bekleniyor…"
@@ -2590,7 +2599,7 @@ msgstr "%ds içinde ayarlar uygulanamadı, geri alma bekleniyor…"
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "\"/etc/init.d/%s %s\" eylemi yürütülemedi: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Dosya"
@@ -2603,7 +2612,7 @@ msgstr ""
"listeleyen dosya, ör. <code>server=1.2.3.4</code>, <code>server=/"
"domain/1.2.3.4</code>."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "Dosyaya erişilemiyor"
@@ -2615,7 +2624,7 @@ msgstr "DHCP kiralama bilgilerinin saklanacağı dosya."
msgid "File with upstream resolvers."
msgstr "Yukarı akış çözümleyicilerinin olduğu dosya."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "Dosya adı"
@@ -2724,7 +2733,7 @@ msgstr "Cihaza sistem yazılımı yükleme/yedekleme işlemleri"
msgid "Flashing…"
msgstr "Yazılıyor…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr "QR Kod desteği için lütfen qrencode paketini yükleyin!"
@@ -2918,7 +2927,7 @@ msgstr "Yapılandırma Oluştur"
msgid "Generate Key"
msgstr "Anahtar Oluştur"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr "Yeni QR Kodu Oluştur"
@@ -2930,7 +2939,7 @@ msgstr "Yerel olarak PMK oluştur"
msgid "Generate archive"
msgstr "Arşiv oluştur"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr "Yeni QR Kodu Oluştur"
@@ -2946,21 +2955,20 @@ msgstr "Genel Ayarlar"
msgid "Global network options"
msgstr "Genel ağ seçenekleri"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr "Ürün yazılımı yükseltmesine git..."
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Parola yapılandırmasına git..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3115,7 +3123,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>'yi gizle"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr "QR Kodunu Gizle"
@@ -3304,7 +3312,7 @@ msgstr "IPv4 ağ geçidi"
msgid "IPv4 netmask"
msgstr "IPv4 ağ maskesi"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr "Adres/ağ maskesi gösteriminde IPv4 ağı"
@@ -3405,7 +3413,7 @@ msgstr "IPv6 atama uzunluğu"
msgid "IPv6 gateway"
msgstr "IPv6 ağ geçidi"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr "Adres/ağ maskesi gösteriminde IPv6 ağı"
@@ -3476,7 +3484,7 @@ msgstr "IPv6-over-IPv4 (6to4)"
msgid "Identity"
msgstr "Kimlik"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr "Varsa, istemcinin \"PresharedKey\""
@@ -3516,7 +3524,7 @@ msgstr ""
"Belirtilmişse, cihazı sabit bir cihaz düğümü yerine bölüm etiketi ile "
"bağlayın"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3846,6 +3854,8 @@ msgid "Invalid hexadecimal value"
msgstr "Geçersiz onaltılık değer"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Geçersiz kullanıcı adı ve/veya şifre! Lütfen tekrar deneyin."
@@ -3865,7 +3875,7 @@ msgstr ""
"Flash belleğe sığmayan bir görüntüyü flaş etmeye çalıştığınız anlaşılıyor, "
"lütfen görüntü dosyasını doğrulayın!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -4042,7 +4052,7 @@ msgstr ""
"ölçüde azalabilir. Mümkün olduğunda 802.11b hızlarına izin verilmemesi "
"önerilir."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "Lejant:"
@@ -4162,17 +4172,19 @@ msgstr "Yük"
msgid "Load Average"
msgstr "Ortalama Yük"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr "QR Kodu yükleniyor..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "Dizin içeriği yükleniyor…"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "Görünüm yükleniyor…"
@@ -4281,6 +4293,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr "Tünelin ekleneceği mantıksal ağ (köprülü) (isteğe bağlı)."
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Oturum Aç"
@@ -4645,7 +4658,7 @@ msgstr "İzle"
msgid "More Characters"
msgstr "Daha Fazla Karakter"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "Daha…"
@@ -4751,8 +4764,8 @@ msgstr "NT Alanı"
msgid "NTP server candidates"
msgstr "NTP sunucusu adayları"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4850,7 +4863,7 @@ msgstr "Yeni arayüz adı…"
msgid "Next »"
msgstr "Sonraki »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4880,7 +4893,6 @@ msgstr "NAT-T yok"
msgid "No RX signal"
msgstr "RX sinyali yok"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4914,7 +4926,7 @@ msgstr "Uygulama yok"
msgid "No entries available"
msgstr "Kullanılabilir girdi yok"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "Bu dizinde giriş yok"
@@ -4954,7 +4966,7 @@ msgstr "Daha fazla bağımlı yok, arayüz kaydedilemiyor"
msgid "No negative cache"
msgstr "Negatif önbellek yok"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -5123,7 +5135,7 @@ msgstr "Bağlantı rotası"
msgid "One of hostname or MAC address must be specified!"
msgstr "Ana bilgisayar adı veya mac adreslerinden biri belirtilmelidir!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "Şunlardan biri: %s"
@@ -5198,20 +5210,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "Çalışma frekansı"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr "\"%s\" seçeneği geçersiz bir giriş değeri içeriyor."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr "\"%s\" seçeneği boş olmamalıdır."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Seçenek değişti"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Seçenek kaldırıldı"
@@ -5243,7 +5255,7 @@ msgstr ""
"alındığında, IPv6 adresini oluşturmak için soneki arayüz için ('::1' gibi) "
"kullanın ('a:b:c:d::1')."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
@@ -5251,11 +5263,11 @@ msgstr ""
"İsteğe bağlı. Base64 kodlu önceden paylaşılmış anahtar. Kuantum sonrası "
"direnç için ek bir simetrik anahtar şifreleme katmanı ekler."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr "İsteğe bağlı. Bu eş için İzin Verilen IP'ler için yollar oluşturun."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "İsteğe bağlı. Eşin tanımı."
@@ -5263,13 +5275,13 @@ msgstr "İsteğe bağlı. Eşin tanımı."
msgid "Optional. Do not create host routes to peers."
msgstr "İsteğe bağlı. Eşlere ana bilgisayar yolları oluşturmayın."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr "İsteğe bağlı. Eşin sunucusu. Arayüzü açmadan önce isimler çözümlenir."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5283,11 +5295,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "İsteğe bağlı. Tünel arayüzünün Maksimum İletim Birimi."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "İsteğe bağlı. Eşin bağlantı noktası."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5437,7 +5449,7 @@ msgstr "Dahili yollar için kullanılan tabloyu geçersiz kılın"
msgid "Overview"
msgstr "Genel bakış"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "Mevcut dosyanın \"%s\" üzerine yaz\" ?"
@@ -5572,6 +5584,7 @@ msgstr "Geçiş (Fiziksel cihazı tek bir MAC VLAN'a yansıtın)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Parola"
@@ -5661,6 +5674,10 @@ msgstr "Eş adresi eksik"
msgid "Peer device name"
msgstr "Eş cihaz adı"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "Eşler"
@@ -5688,7 +5705,7 @@ msgstr "Sistem Sıfırlaması gerçekleştir"
msgid "Permission denied"
msgstr "İzin reddedildi"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "Devamlı Canlı Tut"
@@ -5719,7 +5736,7 @@ msgstr "Pktler."
msgid "Please enter your username and password."
msgstr "Lütfen kullanıcı adınızı ve şifrenizi giriniz."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "Lütfen yüklenecek dosyayı seçin."
@@ -5739,7 +5756,7 @@ msgstr "Bağlantı noktası izolasyonu"
msgid "Port status:"
msgstr "Bağlantı noktası durumu:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr "Olası olumsuzluk: %s"
@@ -5767,7 +5784,7 @@ msgstr "Önek Delege Edildi"
msgid "Prefix suppressor"
msgstr "Ön ek bastırıcı"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "Ön Paylaşımlı Anahtar"
@@ -5862,7 +5879,7 @@ msgstr "Yeni ağ sağlayın"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Sahte Ad-Hoc (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Genel anahtar"
@@ -5887,8 +5904,8 @@ msgstr "İstemcilere dağıtılmak üzere bu cihaza yönlendirilen genel önek."
msgid "QMI Cellular"
msgstr "QMI Hücresel"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr "QR Kod"
@@ -6120,7 +6137,7 @@ msgstr "Belirli ISS'ler için gereklidir, ör. DOCSIS 3 ile Charter"
msgid "Required. Base64-encoded private key for this interface."
msgstr "Gereklidir. Bu arabirim için Base64 ile kodlanmış özel anahtar."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr "Gereklidir. Eşin Base64 ile kodlanmış genel anahtarı."
@@ -6250,8 +6267,8 @@ msgstr ""
"Birden çok IP varsa, sorgunun alındığı alt ağla eşleşen DNS sorgularına "
"yanıtları döndür."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Şifreyi göster/gizle"
@@ -6259,19 +6276,19 @@ msgstr "Şifreyi göster/gizle"
msgid "Reverse path filter"
msgstr "Ters yol filtresi"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Geri döndür"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "Değişiklikleri geri al"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr "Geri döndürme isteği <code>%h</code> durumuyla başarısız oldu"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "Yapılandırma geri döndürülüyor…"
@@ -6297,7 +6314,7 @@ msgstr "Kök hazırlığı"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr "Round-Robin politikası (balance-rr, 0)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "İzin Verilen IP'leri Yönlendir"
@@ -6406,7 +6423,7 @@ msgstr "SSTP Sunucusu"
msgid "SWAP"
msgstr "TAKAS"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6417,7 +6434,7 @@ msgid "Save"
msgstr "Kaydet"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Kaydet & Uygula"
@@ -6443,11 +6460,11 @@ msgstr "Tara"
msgid "Scheduled Tasks"
msgstr "Zamanlanmış Görevler"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Bölüm eklendi"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Bölüm kaldırıldı"
@@ -6465,9 +6482,9 @@ msgstr ""
"zorla' seçeneğini seçin. Yalnızca donanım yazılımının doğru olduğundan ve "
"cihazınız için tasarlandığından eminseniz kullanın!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "Dosya Seç…"
@@ -6663,7 +6680,7 @@ msgstr "Sinyal Yenileme Hızı"
msgid "Signal:"
msgstr "Sinyal:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Boyut"
@@ -7070,7 +7087,7 @@ msgstr "Başlatma önceliği"
msgid "Start refresh"
msgstr "Yenilemeye başla"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "Yapılandırma uygulanıyor…"
@@ -7143,6 +7160,10 @@ msgstr "WPS'yi durdur"
msgid "Stop refresh"
msgstr "Yenilemeyi durdur"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr "Sıkı Filtreleme"
@@ -7207,7 +7228,7 @@ msgstr "Ağ anahtarı protokolü"
msgid "Switch to CIDR list notation"
msgstr "CIDR listesi gösterimine geç"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "Sembolik bağlantı"
@@ -7244,7 +7265,6 @@ msgstr "Sistem özellikleri"
msgid "System log buffer size"
msgstr "Sistem günlüğü arabellek boyutu"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7298,11 +7318,15 @@ msgstr "Hedef Platform"
msgid "Target network"
msgstr "Hedef ağ"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Sonlandır"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr "Bu wg arayüzünün \"PublicKey\"i"
@@ -7434,7 +7458,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr "MTU, %d baytlık ana aygıt MTU'sunu aşmamalıdır"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7465,7 +7489,7 @@ msgid ""
msgstr ""
"Gizli bir kablosuz ağa katılırken doğru SSID manuel olarak belirtilmelidir"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7573,7 +7597,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr "IPv6 önekinin bit cinsinden uzunluğu"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7602,6 +7626,10 @@ msgstr "Yerel IPv4 ağ maskesi"
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr "Tünelin oluşturulduğu yerel IPv6 adresi (isteğe bağlı)."
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7763,11 +7791,11 @@ msgstr "Değer, konfigürasyon tarafından geçersiz kılınır. Orijinali: %s"
msgid "There are no active leases"
msgstr "Aktif kira yok"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "Uygulanabilecek değişiklik yok"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7864,8 +7892,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr "Ca-bundle paketi kurulu olmadığı için bu seçenek kullanılamaz."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -8145,7 +8173,7 @@ msgstr "Kaldır"
msgid "Unnamed key"
msgstr "Adsız anahtar"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Kaydedilmemiş Değişiklikler"
@@ -8175,7 +8203,7 @@ msgstr "Aktif"
msgid "Up Delay"
msgstr "Yukarı Gecikme"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Yükle"
@@ -8192,21 +8220,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Arşiv yükle..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "Dosya yükle"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "Dosya yükle…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "Yükleme isteği başarısız oldu: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "Dosya yükleniyor…"
@@ -8415,6 +8443,7 @@ msgstr "Kullanıcı anahtarı (PEM kodlu)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Kullanıcı adı"
@@ -8724,7 +8753,7 @@ msgstr "Sistem günlüğünü dosyaya yaz"
msgid "XOR policy (balance-xor, 2)"
msgstr "XOR politikası (balance-xor, 2)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8754,7 +8783,7 @@ msgstr ""
"dosyalarını devre dışı bırakırsanız, cihazınız erişilemez hale gelebilir!</"
"strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8919,7 +8948,7 @@ msgstr "Tam dubleks"
msgid "half-duplex"
msgstr "Yarı dubleks"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "onaltılık kodlanmış değer"
@@ -8944,11 +8973,11 @@ msgstr "göz ardı et"
msgid "input"
msgstr "giriş"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "8 ile 63 karakter arasında anahtar"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "5 veya 13 karakterli anahtar"
@@ -8981,12 +9010,12 @@ msgstr "hayır"
msgid "no link"
msgstr "bağlantı yok"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "boş olmayan değer"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "hiçbiri"
@@ -9020,11 +9049,11 @@ msgstr "diğer yapılandırma (O)"
msgid "output"
msgstr "çıktı"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "pozitif ondalık değer"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "pozitif tamsayı değeri"
@@ -9077,7 +9106,7 @@ msgstr ""
"uHTTPd, <abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> veya <abbr "
"title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> ağ erişimi sunar."
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "eşsiz değer"
@@ -9095,7 +9124,7 @@ msgstr "bilinmeyen"
msgid "unlimited"
msgstr "sınırsız"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -9116,175 +9145,175 @@ msgstr "tanımsız -veya- oluşturun:"
msgid "untagged"
msgstr "etiketsiz"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "geçerli IP adresi"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "geçerli IP adresi veya önek"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "geçerli IPv4 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "geçerli IPv4 adresi"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "geçerli IPv4 adresi veya ağ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "geçerli IPv4 adresi:bağlantı noktası"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "geçerli IPv4 ağı"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "geçerli IPv4 veya IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "geçerli IPv4 önek değeri (0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "geçerli IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "geçerli IPv6 adresi"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "geçerli IPv6 adresi veya öneki"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "geçerli IPv6 ana bilgisayar kimliği"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "geçerli IPv6 ağı"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "geçerli IPv6 önek değeri (0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "geçerli MAC adresi"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "geçerli UCI tanımlayıcı"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "geçerli UCI tanımlayıcısı, ana bilgisayar adı veya IP adresi"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "geçerli adres:bağlantı noktası"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "geçerli tarih (YYYY-AA-GG)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "geçerli ondalık değer"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "geçerli onaltılık WEP anahtarı"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "geçerli onaltılık WPA anahtarı"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "geçerli ana bilgisayar:bağlantı noktası"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "geçerli ana bilgisayar adı"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "geçerli ana bilgisayar adı veya IP adresi"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "geçerli tamsayı değeri"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr "geçerli çok noktaya yayın MAC adresi"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "adres/ağ maskesi gösteriminde geçerli ağ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "geçerli telefon rakamı (0-9, \"*\", \"#\", \"!\" veya \".\")"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "geçerli bağlantı noktası veya bağlantı noktası aralığı (port1-port2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "geçerli bağlantı noktası değeri"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "geçerli zaman (SA:DA:SN)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "%d ile %d karakter arasındaki değer"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "%f ile %f arasındaki değer"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "%f den büyük veya eşit değer"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "%f den küçük veya eşit değer"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "%d karakterli değer"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "en az %d karakter içeren değer"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "en fazla %d karakter içeren değer"
diff --git a/modules/luci-base/po/uk/base.po b/modules/luci-base/po/uk/base.po
index e754135340..5f9b384f0e 100644
--- a/modules/luci-base/po/uk/base.po
+++ b/modules/luci-base/po/uk/base.po
@@ -21,7 +21,7 @@ msgstr "%.1f дБ"
msgid "%d Bit"
msgstr "%d біт"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d неприпустимі поля"
@@ -57,19 +57,19 @@ msgid "-- Additional Field --"
msgstr "-- Додаткові поля --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Оберіть --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- нетипово --"
@@ -223,7 +223,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr "Конфігурація для пристрою \"%s\" вже існує"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "Каталог з такою ж назвою вже існує."
@@ -232,7 +232,7 @@ msgid "A new login is required since the authentication session expired."
msgstr ""
"Оскільки сеанс автентифікації закінчився, потрібен новий вхід у систему."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -417,11 +417,11 @@ msgstr "Адаптивне балансування навантаження (ba
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "Адаптивне балансування навантаження передавання (balance-tlb, 5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -652,7 +652,7 @@ msgstr "Дозволити зондування функцій системи"
msgid "Allow the <em>root</em> user to login with password"
msgstr "Дозволити користувачеві <em>root</em> вхід до системи з паролем"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "Дозволено IP-адреси"
@@ -811,16 +811,16 @@ msgstr ""
msgid "Apply backup?"
msgstr "Застосувати резервну копію?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "Сталася помилка запиту на застосування зі статусом <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "Застосувати без перевірки"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "Очікування на застосування конфігурації… %d c"
@@ -880,6 +880,7 @@ msgid "Authoritative"
msgstr "Надійний"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Потрібна авторизація"
@@ -1098,8 +1099,8 @@ msgstr "Піднімати інтерфейс моста, навіть якщо
msgid "Broadcast policy (broadcast, 3)"
msgstr "Політика широкомовності (broadcast, 3)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Огляд…"
@@ -1130,8 +1131,8 @@ msgstr "Кешовано"
msgid "Call failed"
msgstr "Не вдалося здійснити виклик"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1205,11 +1206,11 @@ msgstr ""
msgid "Chain"
msgstr "Ланцюжок"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Зміни"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "Зміни було скасовано."
@@ -1312,7 +1313,7 @@ msgstr "Клієнт"
msgid "Client ID to send when requesting DHCP"
msgstr "Ідентифікатор клієнта для відправки при запиті DHCP"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1380,16 +1381,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "Обчислити вихідну контрольну суму (необов’язково)."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Конфігурація"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "Зміни конфігурації застосовано."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "Зміни конфігурації було скасовано!"
@@ -1496,7 +1497,7 @@ msgstr "Вміст збережено."
msgid "Continue"
msgstr "Продовжити"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1748,11 +1749,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr "Делегувати префікси IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1764,7 +1765,7 @@ msgstr "Видалити"
msgid "Delete key"
msgstr "Видалити ключ"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "Помилка запиту на видалення: %s"
@@ -1778,11 +1779,11 @@ msgstr "Інтервал повідомлень індикації доправ
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Опис"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Скасувати вибір"
@@ -1855,7 +1856,7 @@ msgstr "Пристрій відсутній"
msgid "Device type"
msgstr "Тип пристрою"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Пристрій недосяжний!"
@@ -1876,7 +1877,7 @@ msgstr "Діагностика"
msgid "Dial number"
msgstr "Набір номера"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Каталог"
@@ -1950,10 +1951,14 @@ msgstr "Спроба від'єднання не вдалася"
msgid "Disconnection attempt failed."
msgstr "Спроба відключення зазнала невдачі."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -2044,7 +2049,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "Справді видалити \"%s\"?"
@@ -2056,7 +2061,7 @@ msgstr "Справді видалити такий SSH ключ?"
msgid "Do you really want to erase all settings?"
msgstr "Справді стерти всі налаштування?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Справді рекурсивно видалити каталог \"%s\"?"
@@ -2098,7 +2103,7 @@ msgstr "Завантажити mtdblock"
msgid "Downstream SNR offset"
msgstr "Низхідний зсув SNR"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "Перетягніть, щоб змінити порядок"
@@ -2149,9 +2154,9 @@ msgstr "Довжина EA-бітів"
msgid "EAP-Method"
msgstr "Метод EAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2198,6 +2203,10 @@ msgstr "Надзвичайна ситуація"
msgid "Enable"
msgstr "Увімкнути"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2403,11 +2412,11 @@ msgstr "Режим інкапсуляції"
msgid "Encryption"
msgstr "Шифрування"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr "Кінцевий вузол"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr "Порт кінцевого вузла"
@@ -2510,7 +2519,7 @@ msgstr "Очікується дійсна IPv6-адреса"
msgid "Expecting two priority values separated by a colon"
msgstr "Очікується два значення пріоритету, розділені двокрапкою"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2588,7 +2597,7 @@ msgstr "Протокол FT"
msgid "Failed to change the system password."
msgstr "Не вдалося змінити системний пароль."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "Не вдалося підтвердити застосування на протязі %d с, очікуємо відкату…"
@@ -2596,7 +2605,7 @@ msgstr "Не вдалося підтвердити застосування на
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Не вдалося виконати дію \"/etc/init.d/%s %s\": %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Файл"
@@ -2609,7 +2618,7 @@ msgstr ""
"'server=1.2.3.4' для домен-орієнтованих або повних висхідних <abbr title="
"\"Domain Name System\">DNS</abbr>-серверів."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "Файл недоступний"
@@ -2625,7 +2634,7 @@ msgstr ""
"Локальний <abbr title=\"Domain Name System — система доменних імен\">DNS</"
"abbr>-файл"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "Ім'я файлу"
@@ -2734,7 +2743,7 @@ msgstr "Операції прошивання"
msgid "Flashing…"
msgstr "Прошиваємо…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2918,7 +2927,7 @@ msgstr "Cтворити конфігурацію"
msgid "Generate Key"
msgstr "Згенерувати ключ"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2930,7 +2939,7 @@ msgstr "Згенерувати PMK локально"
msgid "Generate archive"
msgstr "Cтворити архів"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2946,21 +2955,20 @@ msgstr "Загальні параметри"
msgid "Global network options"
msgstr "Глобальні параметри мережі"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Перейти до конфігурування пароля..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3119,7 +3127,7 @@ msgstr ""
"Приховати <abbr title=\"Extended Service Set Identifier — ідентифікатор "
"розширеної служби послуг\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3304,7 +3312,7 @@ msgstr "Шлюз IPv4"
msgid "IPv4 netmask"
msgstr "Маска мережі IPv4"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr "Мережа IPv4 у позначенні адреси / мережевої маски"
@@ -3407,7 +3415,7 @@ msgstr "Довжина призначення IPv6"
msgid "IPv6 gateway"
msgstr "Шлюз IPv6"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr "Мережа IPv6 у позначенні адреси / мережевої маски"
@@ -3477,7 +3485,7 @@ msgstr "IPv6 через IPv4 (6to4)"
msgid "Identity"
msgstr "Ідентифікація EAP"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3516,7 +3524,7 @@ msgstr ""
"Якщо обрано, монтувати пристрій за міткою його розділу замість фіксованого "
"вузла пристрою"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3838,6 +3846,8 @@ msgid "Invalid hexadecimal value"
msgstr "Неприпустиме шістнадцяткове значення"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Неприпустиме ім'я користувача та/або пароль! Спробуйте ще раз."
@@ -3857,7 +3867,7 @@ msgstr ""
"Схоже, що ви намагаєтеся прошити образ, який не вміщається до флеш-пам'яті! "
"Перевірте файл образу!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -4034,7 +4044,7 @@ msgstr ""
"ефективність ефірного часу може значно зменшитися. Рекомендується не "
"дозволяти швидкості 802.11b, де це можливо."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "Легенда:"
@@ -4165,17 +4175,19 @@ msgstr "Навантаження"
msgid "Load Average"
msgstr "Середнє навантаження"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "Завантаження вмісту каталогу…"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "Завантаження подання…"
@@ -4283,6 +4295,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Увійти"
@@ -4642,7 +4655,7 @@ msgstr "Диспетчер"
msgid "More Characters"
msgstr "Більше символів"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "Докладніше…"
@@ -4748,8 +4761,8 @@ msgstr "Домен NT"
msgid "NTP server candidates"
msgstr "Сервери NTP – кандидати для синхронізації"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4848,7 +4861,7 @@ msgstr "Нова назва інтерфейсу…"
msgid "Next »"
msgstr "Наступний »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4878,7 +4891,6 @@ msgstr "Немає NAT-T"
msgid "No RX signal"
msgstr "Сигналу RX немає"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4909,7 +4921,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "У цьому каталозі немає записів"
@@ -4949,7 +4961,7 @@ msgstr "Більше немає доступних ведених, не вдає
msgid "No negative cache"
msgstr "Ніяких негативних кешувань"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -5116,7 +5128,7 @@ msgstr "Маршрут On-Link"
msgid "One of hostname or MAC address must be specified!"
msgstr "Має бути зазначено одне з двох – ім'я вузла або МАС-адреса!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "Одне з нижченаведеного: %s"
@@ -5182,20 +5194,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "Робоча частота"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr "Параметр \"%s\" містить неприпустиме значення введення."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr "Параметр \"%s\" не може бути порожнім."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Опцію змінено"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Опцію видалено"
@@ -5227,7 +5239,7 @@ msgstr ""
"отримано від сервера делегування, для формування IPv6-адреси інтерфейсу "
"(наприклад, 'a:b:c:d::1') використовуйте суфікс ('::1')."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
@@ -5236,11 +5248,11 @@ msgstr ""
"Додавання додатково рівня шифрування із симетричним ключем для пост-"
"квантової стійкості."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr "Необов'язково. Створити для цього вузла маршрути для дозволених IP."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "Необов'язково. Опис вузла."
@@ -5248,13 +5260,13 @@ msgstr "Необов'язково. Опис вузла."
msgid "Optional. Do not create host routes to peers."
msgstr "Необов'язково. Не створювати хост-маршрути для вузлів."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr "Необов'язково. Хост вузла. Імена буде виділено до підняття інтерфейсу."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5267,11 +5279,11 @@ msgstr ""
"Необов'язково. <abbr title=\"Maximum Transmission Unit — максимальний блок "
"передавання даних\">MTU</abbr> тунельного інтерфейсу."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "Необов'язково. Порт вузла."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5420,7 +5432,7 @@ msgstr ""
msgid "Overview"
msgstr "Огляд"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "Перезаписати існуючий файл \"%s\"?"
@@ -5558,6 +5570,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Пароль"
@@ -5647,6 +5660,10 @@ msgstr "Відсутня адреса вузла"
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "рівні"
@@ -5674,7 +5691,7 @@ msgstr "Виконати відновлення"
msgid "Permission denied"
msgstr "Дозволу не надано"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "Завжди тримати ввімкненим"
@@ -5705,7 +5722,7 @@ msgstr "пакетів"
msgid "Please enter your username and password."
msgstr "Введіть ім'я користувача і пароль."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "Виберіть файл для відвантаження."
@@ -5725,7 +5742,7 @@ msgstr ""
msgid "Port status:"
msgstr "Стан порту:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr "Потенційне заперечення: %s"
@@ -5753,7 +5770,7 @@ msgstr "Делеговано префікс"
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "Заздалегідь установлений спільний ключ"
@@ -5850,7 +5867,7 @@ msgstr "Укажіть нову мережу"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Псевдо Ad-Hoc (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Відкритий ключ"
@@ -5875,8 +5892,8 @@ msgstr "Публічний префікс надісланий на цей пр
msgid "QMI Cellular"
msgstr "Стільниковий QMI"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -6114,7 +6131,7 @@ msgstr "Вимагається для деяких провайдерів, на
msgid "Required. Base64-encoded private key for this interface."
msgstr "Вимагається. Base64-кодований закритий ключ для цього інтерфейсу."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr "Вимагається. Base64-кодований відкритий ключ вузла."
@@ -6244,8 +6261,8 @@ msgstr ""
"Локалізувати ім'я хоста залежно від запитуючої підмережі, якщо доступно "
"кілька IP-адрес"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Показати/приховати пароль"
@@ -6253,19 +6270,19 @@ msgstr "Показати/приховати пароль"
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Скасувати"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "Скасувати зміни"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr "Помилка запиту на скасування зі статусом <code>%h</code>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "Відкат конфігурації…"
@@ -6288,7 +6305,7 @@ msgstr "Підготовка Root"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr "Політика round-robin (balance-rr, 0)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "Маршрутизація дозволених IP-адрес"
@@ -6395,7 +6412,7 @@ msgstr "Сервер SSTP"
msgid "SWAP"
msgstr "SWAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6406,7 +6423,7 @@ msgid "Save"
msgstr "Зберегти"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Зберегти і застосувати"
@@ -6432,11 +6449,11 @@ msgstr "Сканувати"
msgid "Scheduled Tasks"
msgstr "Заплановані завдання"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Секцію додано"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Секцію видалено"
@@ -6454,9 +6471,9 @@ msgstr ""
"виберіть \"Примусове оновлення\". Використовуйте тільки якщо ви впевнені, що "
"мікропрограма є правильною і призначена для вашого пристрою!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "Виберіть файл…"
@@ -6644,7 +6661,7 @@ msgstr ""
msgid "Signal:"
msgstr "Сигнал:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Розмір"
@@ -7005,7 +7022,7 @@ msgstr "Стартовий пріоритет"
msgid "Start refresh"
msgstr "Запустити оновлення"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "Розпочато застосування конфігурації…"
@@ -7078,6 +7095,10 @@ msgstr "Зупинити WPS"
msgid "Stop refresh"
msgstr "Зупинити оновлення"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -7142,7 +7163,7 @@ msgstr "Протокол комутатора"
msgid "Switch to CIDR list notation"
msgstr "Перейти до позначення списку CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "Символічне посилання"
@@ -7179,7 +7200,6 @@ msgstr "Властивості системи"
msgid "System log buffer size"
msgstr "Розмір буфера системного журналу"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7233,11 +7253,15 @@ msgstr ""
msgid "Target network"
msgstr "Цільова мережа"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Завершити"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7356,7 +7380,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7384,7 +7408,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7487,7 +7511,7 @@ msgstr "Довжина IPv4-префікса в бітах, решта вико
msgid "The length of the IPv6 prefix in bits"
msgstr "Довжина IPv6-префікса в бітах"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7514,6 +7538,10 @@ msgstr "Локальна мережева маска IPv4"
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7661,11 +7689,11 @@ msgstr ""
msgid "There are no active leases"
msgstr "Немає жодних активних оренд"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "Немає жодних змін до застосування"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7766,8 +7794,8 @@ msgstr ""
"Цю опцію використовувати не можна, оскільки пакет \"ca-bundle\" не "
"інстальовано."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -8039,7 +8067,7 @@ msgstr "Демонтувати"
msgid "Unnamed key"
msgstr "Ключ без назви"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Незбережені зміни"
@@ -8069,7 +8097,7 @@ msgstr "Вгору"
msgid "Up Delay"
msgstr "Затримка підняття"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Завантажити"
@@ -8086,21 +8114,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Відвантажити архів…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "Відвантажити файл"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "Відвантажити файл…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "Не вдалося виконати запит на відвантаження: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "Відвантаження файлу…"
@@ -8302,6 +8330,7 @@ msgstr "Ключ користувача (PEM-кодований)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Ім'я користувача"
@@ -8607,7 +8636,7 @@ msgstr "Записувати cистемний журнал до файлу"
msgid "XOR policy (balance-xor, 2)"
msgstr "Політика XOR (balance-xor, 2)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8636,7 +8665,7 @@ msgstr ""
"Якщо ви вимкнете основний скрипт ініціалізації (наприклад \"network\"), "
"пристрій може стати недоступним!</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8801,7 +8830,7 @@ msgstr "повний дуплекс"
msgid "half-duplex"
msgstr "напівдуплекс"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "шістнадцяткове кодоване значення"
@@ -8826,11 +8855,11 @@ msgstr "ігнорувати"
msgid "input"
msgstr "вхід"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "ключ від 8 до 63 символів"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "ключ із 5 або 13 символів"
@@ -8863,12 +8892,12 @@ msgstr "Ні"
msgid "no link"
msgstr "нема з'єднання"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "непусте значення"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "нічого"
@@ -8902,11 +8931,11 @@ msgstr ""
msgid "output"
msgstr "вихід"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "додатне десяткове значення"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "додатне ціле значення"
@@ -8957,7 +8986,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "унікальне значення"
@@ -8975,7 +9004,7 @@ msgstr "невідомо"
msgid "unlimited"
msgstr "необмежено"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8996,175 +9025,175 @@ msgstr "невизначено -або- створити:"
msgid "untagged"
msgstr "непозначено"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "дійсна IP-адреса"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "дійсна IP-адреса або префікс"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "дійсна IPv4 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "дійсна IPv4-адреса"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "дійсна IPv4-адреса або мережа"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "дійсна IPv4-адреса:порт"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "дійсна IPv4-мережа"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "дійсна IPv4 або IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "дійсне значення IPv4-префіксу (0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "дійсна IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "дійсна IPv6-адреса"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "дійсна IPv6-адреса або префікс"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "дійсний IPv6-ідентифікатор хоста"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "дійсна IPv6-мережа"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "дійсне значення IPv6-префіксу (0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "дійсна MAC-адреса"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "дійсний UCI-ідентифікатор"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "дійсний UCI-ідентифікатор, ім'я хоста або IP-адреса"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "дійсна адреса:порт"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "дійсна дата (РРРР-ММ-ДД)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "дійсне десяткове значення"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "дійсний шістнадцятковий ключ WEP"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "дійсний шістнадцятковий ключ WPA"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "дійсне ім'я хоста:порт"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "дійсне ім'я хоста"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "дійсне ім'я хоста або IP-адреса"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "дійсне ціле значення"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "дійсна мережа в записі адреса/маска мережі"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "дійсний символ номера телефону (0-9, \"*\", \"#\", \"!\" or \".\")"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "дійсний порт або діапазон портів (порт1-порт2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "дійсне значення порту"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "дійсний час (ГГ:ХХ:СС)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "значення від %d до %d символів"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "значення від %f до %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "значення, що більше або дорівнює %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "значення, що менше або дорівнює %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "значення з %d симв."
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "значення з принаймні %d символів"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "значення з не більше %d символів"
diff --git a/modules/luci-base/po/vi/base.po b/modules/luci-base/po/vi/base.po
index 77969ac3a9..e629a13b5a 100644
--- a/modules/luci-base/po/vi/base.po
+++ b/modules/luci-base/po/vi/base.po
@@ -23,7 +23,7 @@ msgstr ""
msgid "%d Bit"
msgstr "%d bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d trường không hợp lệ"
@@ -59,19 +59,19 @@ msgid "-- Additional Field --"
msgstr "---Mục bổ sung---"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- Hãy chọn --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "--tùy chỉnh--"
@@ -219,7 +219,7 @@ msgstr ""
msgid "A configuration for the device \"%s\" already exists"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "thư mục có tên này đã tồn tại"
@@ -227,7 +227,7 @@ msgstr "thư mục có tên này đã tồn tại"
msgid "A new login is required since the authentication session expired."
msgstr "Cần đăng nhận lại vì phiên xác thực cũ đã hết hạn"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -410,11 +410,11 @@ msgstr ""
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -636,7 +636,7 @@ msgstr ""
msgid "Allow the <em>root</em> user to login with password"
msgstr "Cho phép người dùng <em>root</em> đăng nhập với mật khẩu"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "cho phép IPs"
@@ -794,16 +794,16 @@ msgstr ""
msgid "Apply backup?"
msgstr "Chấp nhận sao lưu?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "Áp dụng yêu cầu không thành công với trạng thái <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "Áp dụng không kiểm tra"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "Đợi cấu hình được áp dụng... %ds"
@@ -863,6 +863,7 @@ msgid "Authoritative"
msgstr "Xác thực"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "Yêu cầu ủy quyền"
@@ -1080,8 +1081,8 @@ msgstr ""
msgid "Broadcast policy (broadcast, 3)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "Duyệt..."
@@ -1111,8 +1112,8 @@ msgstr ""
msgid "Call failed"
msgstr "Liên lạc thất bại"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1178,11 +1179,11 @@ msgstr ""
msgid "Chain"
msgstr "chuỗi"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "Thay đổi"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "Những thay đổi đã được phục hồi"
@@ -1279,7 +1280,7 @@ msgstr "Khách hàng"
msgid "Client ID to send when requesting DHCP"
msgstr "ID máy khách gửi khi yêu cầu DHCP"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1347,16 +1348,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "Cấu hình"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "Cấu hình đã được áp dụng"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "Cấu hình đã được hoàn lại!"
@@ -1454,7 +1455,7 @@ msgstr "Nội dung đã được lưu"
msgid "Continue"
msgstr "Tiếp tục"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1693,11 +1694,11 @@ msgstr ""
msgid "Delegate IPv6 prefixes"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1709,7 +1710,7 @@ msgstr "Xóa"
msgid "Delete key"
msgstr "Xóa chìa khóa"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "Yêu cầu xóa thất bại: %s"
@@ -1723,11 +1724,11 @@ msgstr "Chu kỳ thông báo chỉ thị lưu thông"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "Mô tả"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "Bỏ chọn"
@@ -1800,7 +1801,7 @@ msgstr ""
msgid "Device type"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "Thiết bị không thể truy cập! "
@@ -1821,7 +1822,7 @@ msgstr "Phân tích"
msgid "Dial number"
msgstr "Quay số"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "Danh mục"
@@ -1895,10 +1896,14 @@ msgstr "Kết nối thất bại"
msgid "Disconnection attempt failed."
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1984,7 +1989,7 @@ msgid ""
"abbr> messages on this interface."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "Bạn thật sự muốn xóa \"%s\" ?"
@@ -1996,7 +2001,7 @@ msgstr "Bạn thật sự muốn xóa khóa SSH này?"
msgid "Do you really want to erase all settings?"
msgstr "Bạn có thật sự muốn xóa tất cả cài đặt này?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Bạn thật sự muốn xóa toàn bộ thư mục \"%s\" ?"
@@ -2038,7 +2043,7 @@ msgstr "Tải xuống mtdblock"
msgid "Downstream SNR offset"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "Kéo để tổ chức lại"
@@ -2088,9 +2093,9 @@ msgstr "Độ dài EA-bits"
msgid "EAP-Method"
msgstr "EAP-Method"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2137,6 +2142,10 @@ msgstr "Khẩn cấp"
msgid "Enable"
msgstr "Kích hoạt"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2338,11 +2347,11 @@ msgstr "Chế độ đóng gói"
msgid "Encryption"
msgstr "Mã hóa"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr ""
@@ -2443,7 +2452,7 @@ msgstr ""
msgid "Expecting two priority values separated by a colon"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2521,7 +2530,7 @@ msgstr "Giao thức FT"
msgid "Failed to change the system password."
msgstr "Đổi mật khẩu hệ thống thất bại"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "Thất bại khi xác thực áp dụng %ds, đợi làm lại..."
@@ -2529,7 +2538,7 @@ msgstr "Thất bại khi xác thực áp dụng %ds, đợi làm lại..."
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Thất bại khi thực thi \"/etc/init.d/%s %s\" hành động: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "Tệp tin"
@@ -2542,7 +2551,7 @@ msgstr ""
"chủ=1.2.3.4' cho các máy chủ <abbr title =\"Hệ thống tên miền\"> DNS </"
"abbr> . "
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "Tệp tin không thể truy cập"
@@ -2556,7 +2565,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr "Tập tin <abbr title=\"Hệ thống tên miền\">DNS</abbr> địa phương"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "Tên tệp"
@@ -2665,7 +2674,7 @@ msgstr "Hoạt động nạp phần mềm"
msgid "Flashing…"
msgstr "Đang nạp..."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2850,7 +2859,7 @@ msgstr "Cấu hình chung"
msgid "Generate Key"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2862,7 +2871,7 @@ msgstr "Tạo PMK cục bộ"
msgid "Generate archive"
msgstr "Tạo bản lưu trữ"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2878,21 +2887,20 @@ msgstr "Cài đặt toàn cục"
msgid "Global network options"
msgstr "Tùy chọn mạng toàn cầu"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "Tới trang cài đặt mật khẩu..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3047,7 +3055,7 @@ msgstr ""
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "Giấu <abbr title=\"Chế độ mở rộng đặt Identifier\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3232,7 +3240,7 @@ msgstr ""
msgid "IPv4 netmask"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr ""
@@ -3333,7 +3341,7 @@ msgstr "Độ dài gán IPv6"
msgid "IPv6 gateway"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr ""
@@ -3404,7 +3412,7 @@ msgstr ""
msgid "Identity"
msgstr "Nhận dạng"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3441,7 +3449,7 @@ msgid ""
msgstr ""
"Nếu được chỉ định, gắn thiết bị theo nhãn phân vùng thay vì nốt cố định"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3758,6 +3766,8 @@ msgid "Invalid hexadecimal value"
msgstr "Giá trị không hợp lệ"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "Tên và mật mã không đúng. Xin thử lại "
@@ -3778,7 +3788,7 @@ msgstr ""
"Dường như bạn cố gắng flash một hình ảnh không phù hợp với bộ nhớ flash, xin "
"vui lòng xác minh các tập tin hình ảnh!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3951,7 +3961,7 @@ msgid ""
"are used. It is recommended to not allow 802.11b rates where possible."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr ""
@@ -4071,17 +4081,19 @@ msgstr "Tải "
msgid "Load Average"
msgstr "Tải trung bình"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "Đang tải nội dung thư mục..."
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "Tải cảnh..."
@@ -4187,6 +4199,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr ""
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "Đăng nhập "
@@ -4543,7 +4556,7 @@ msgstr "Monitor"
msgid "More Characters"
msgstr "Thêm đặc điểm"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "thêm ..."
@@ -4649,8 +4662,8 @@ msgstr ""
msgid "NTP server candidates"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4748,7 +4761,7 @@ msgstr "Tên giao diện mạng mới..."
msgid "Next »"
msgstr "Tiếp »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4778,7 +4791,6 @@ msgstr "Không NAT-T"
msgid "No RX signal"
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4809,7 +4821,7 @@ msgstr ""
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "Không có gì trong đường dẫn này"
@@ -4849,7 +4861,7 @@ msgstr ""
msgid "No negative cache"
msgstr "Không có bộ đệm âm"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -5016,7 +5028,7 @@ msgstr ""
msgid "One of hostname or MAC address must be specified!"
msgstr "Một trong những tên máy chủ hoặc địa chỉ mac phải được chỉ định"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "Một trong những điều sau đây: %s"
@@ -5080,20 +5092,20 @@ msgstr ""
msgid "Operating frequency"
msgstr "Tần số hoạt động"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "Thay đổi tùy chỉnh"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "Xóa tùy chỉnh"
@@ -5125,7 +5137,7 @@ msgstr ""
"một máy chủ ủy nhiệm, sử dụng hậu tố (như '::1') để tạo địa chỉ IPv6 ('a:b:c:"
"d::1') cho giao diện. "
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
@@ -5133,12 +5145,12 @@ msgstr ""
"Không bắt buộc. Khóa mã hóa Base64 được chia sẻ từ trước. Thêm vào một lớp "
"mã hóa khóa đối xứng bổ sung cho tính kháng sau khi được lượng tử."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr ""
"Không bắt buộc. Tạo tuyến đường cho \"IP được phép\" cho mạng ngang hàng này"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "Không bắt buộc. Mô tả mạng ngang hàng"
@@ -5146,7 +5158,7 @@ msgstr "Không bắt buộc. Mô tả mạng ngang hàng"
msgid "Optional. Do not create host routes to peers."
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
@@ -5154,7 +5166,7 @@ msgstr ""
"Không bắt buộc. Máy chủ của mạng ngang hàng. Tên được giải quyết trước khi "
"đưa lên giao diện mạng. "
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5165,11 +5177,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "Không bắt buộc. Đơn vị truyền tối đa của giao diện đường hầm mạng."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "Không bắt buộc. Cổng sử dụng cho mạng ngang hàng"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5314,7 +5326,7 @@ msgstr "Ghi đè bảng được sử dụng cho định tuyến nội bộ"
msgid "Overview"
msgstr "Tổng quan"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "Ghi đè tệp đã tồn tại \"%s\" ?"
@@ -5449,6 +5461,7 @@ msgstr ""
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "Mật mã"
@@ -5538,6 +5551,10 @@ msgstr "Địa chỉ thiết bị mạng ngang hàng bị mất"
msgid "Peer device name"
msgstr ""
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "Thiết bị mạng ngang hàng"
@@ -5565,7 +5582,7 @@ msgstr "Thực hiện khởi động lại"
msgid "Permission denied"
msgstr "Bạn không có quyền làm"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "Giữ liên tục"
@@ -5596,7 +5613,7 @@ msgstr ""
msgid "Please enter your username and password."
msgstr "Nhập tên và mật mã"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr ""
@@ -5616,7 +5633,7 @@ msgstr ""
msgid "Port status:"
msgstr "Trạng thái cổng:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr "Phủ định tiềm năng của: %s"
@@ -5644,7 +5661,7 @@ msgstr "Tiền tố được ủy quyền"
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "Khóa đã được chia sẻ"
@@ -5737,7 +5754,7 @@ msgstr "Cung cấp mạng mới"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "Mạng Ad-Hoc giả (ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "Khóa công khai"
@@ -5763,8 +5780,8 @@ msgstr ""
msgid "QMI Cellular"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -6001,7 +6018,7 @@ msgstr "Cần thiết cho một số ISP nhất định, ví dụ: Điều lệ
msgid "Required. Base64-encoded private key for this interface."
msgstr "Bắt buộc. Khóa riêng tư được mã hóa Base64 cho giao diện này"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr ""
"Bắt buộc. Khóa công khai được mã hóa Base64 của thiết bị mạng ngang hàng"
@@ -6131,8 +6148,8 @@ msgid ""
msgstr ""
"Cục bộ hóa tên máy chủ tùy thuộc vào mạng con yêu cầu nếu có sẵn nhiều IP"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "Hiển thị/ẩn mật khẩu"
@@ -6140,19 +6157,19 @@ msgstr "Hiển thị/ẩn mật khẩu"
msgid "Reverse path filter"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "Hoàn nguyên"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "Hoàn nguyên thay đổi"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr "Yêu cầu hoàn nguyên không thành công với trạng thái <code>%h</code>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "Đang hoàn nguyên cấu hình .."
@@ -6175,7 +6192,7 @@ msgstr ""
msgid "Round-Robin policy (balance-rr, 0)"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "Định tuyến cho các IP được cho phép"
@@ -6282,7 +6299,7 @@ msgstr ""
msgid "SWAP"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6293,7 +6310,7 @@ msgid "Save"
msgstr "Lưu"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "Lưu & áp dụng "
@@ -6319,11 +6336,11 @@ msgstr "quét"
msgid "Scheduled Tasks"
msgstr "Nhiệm vụ theo lịch trình"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "Thêm mục"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "Xóa mục"
@@ -6341,9 +6358,9 @@ msgstr ""
"phần mềm không thành công. Chỉ chọn nếu bạn có thể chắc chắc rằng phần mềm "
"này tương thích với thiết bị của bạn"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "Chọn tệp"
@@ -6528,7 +6545,7 @@ msgstr ""
msgid "Signal:"
msgstr "Tín hiệu:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "Dung lượng "
@@ -6874,7 +6891,7 @@ msgstr "Bắt đầu ưu tiên"
msgid "Start refresh"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "Đang áp dụng cáu hình ..."
@@ -6947,6 +6964,10 @@ msgstr ""
msgid "Stop refresh"
msgstr ""
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr ""
@@ -7011,7 +7032,7 @@ msgstr "Đổi giao thức"
msgid "Switch to CIDR list notation"
msgstr "Chuyển sang ký hiệu danh sách CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "Đường dẫn tham chiếu"
@@ -7048,7 +7069,6 @@ msgstr "Thuộc tính hệ thống"
msgid "System log buffer size"
msgstr "Kích cỡ bộ đệm nhật ký hệ thống"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7102,11 +7122,15 @@ msgstr ""
msgid "Target network"
msgstr "Mạng đích"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "Kết thúc"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7223,7 +7247,7 @@ msgstr ""
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7249,7 +7273,7 @@ msgid ""
"network"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7347,7 +7371,7 @@ msgstr ""
msgid "The length of the IPv6 prefix in bits"
msgstr "Độ dài của địa chỉ IPv6 prefix (bit)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7374,6 +7398,10 @@ msgstr ""
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr ""
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7520,11 +7548,11 @@ msgstr ""
msgid "There are no active leases"
msgstr "Không có máy được cấp IP nào hoạt động"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "Không có thay đổi nào để áp dụng"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7619,8 +7647,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7892,7 +7920,7 @@ msgstr "Hủy gắn kết"
msgid "Unnamed key"
msgstr "Khóa không tên"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "Thay đổi không lưu"
@@ -7922,7 +7950,7 @@ msgstr "Lên"
msgid "Up Delay"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "Tải lên"
@@ -7939,21 +7967,21 @@ msgstr ""
msgid "Upload archive..."
msgstr "Tải dữ liệu lên ..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "Tải tập tin lên"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "Đang tải tin lên ..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "Yêu cầu tải thất bại: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "Đang tải tin lên ..."
@@ -8151,6 +8179,7 @@ msgstr "Khóa người dùng (mã hóa PEM)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "Tên người dùng "
@@ -8449,7 +8478,7 @@ msgstr "Viết nhật ký hệ thống vào một tệp"
msgid "XOR policy (balance-xor, 2)"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8478,7 +8507,7 @@ msgstr ""
"bạn vô hiệu hoá kịch bản khởi động thiết yếu như &amp;quot;network&amp;"
"quot;, công cụ của bạn chó thể trở nên không truy cập được</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8644,7 +8673,7 @@ msgstr ""
msgid "half-duplex"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "Giá trị mã hóa thập lục phân"
@@ -8669,11 +8698,11 @@ msgstr "Từ chối"
msgid "input"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "Mật khẩu từ 8 đến 63 ký tự"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "Mật khẩu có 5 hoặc 13 ký tự"
@@ -8706,12 +8735,12 @@ msgstr "Không"
msgid "no link"
msgstr "Không có liên kết"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "Giá trị không rỗng"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "không"
@@ -8745,11 +8774,11 @@ msgstr ""
msgid "output"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "Giá trị thập phân dương"
@@ -8800,7 +8829,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "Giá trị độc nhất"
@@ -8818,7 +8847,7 @@ msgstr "Không xác định"
msgid "unlimited"
msgstr "Không giới hạn"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8839,175 +8868,175 @@ msgstr "Chưa được phân loại hoặc tạo"
msgid "untagged"
msgstr "Chưa được gắn thẻ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "Địa chỉ IP hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "địa chỉ IP hoặc tiền tố hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "IPv4 CIDR hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "Địa chỉ IPv4 hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "Mạng hoặc địa chỉ IPv4 hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "Địa chỉ IPv4:cổng hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "Mạng IPv4 hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "IPv4 hoặc IPv6 CIDR hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "giá trị tiền tố IPv4 hợp lệ (0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "IPv6 CIDR hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "Địa chỉ IPv6 hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "Địa chỉ IPv6 hoặc tiền tố hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "id máy chủ IPv6 hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "Mạng IPv6 hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "Giá trị tiền tố IPv6 hợp lệ (0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "Địa chỉ MAC hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "định danh UCI hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "Định danh UCI, tên máy chủ hoặc địa chỉ IP hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "Địa-chỉ:cổng hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "Ngày hợp lệ (YYYY-MM-DD)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "Giá trị thập phân hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "Khóa WEP thập lục phân hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "Khóa WPA thập lục phân hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "Máy-chủ:cổng hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "Tên máy chủ hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "Địa chỉ IP hoặc tên máy chủ hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "Giá trị nguyên hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "Mạng trong địa chỉ/netmask hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "Số điện thoại hợp lệ (0-9, \"*\", \"#\", \"!\" or \".\")"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "Cổng hoặc tầm cổng hợp lệ (Cổng 1- Cổng 2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "Giá trị cổng hợp lệ"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "Thời gian hợp lệ (HH:MM:SS)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "Giá trị giữa %f và %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "Giá trị lớn hơn hoặc bằng %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "Giá trị nhỏ hơn hoặc bằng %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "giá trị với %d ký tự"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "giá trị với ít nhất %d ký tự"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "giá trị với tối đa %d ký tự"
diff --git a/modules/luci-base/po/zh_Hans/base.po b/modules/luci-base/po/zh_Hans/base.po
index 9447d2bd52..4cb467bdb9 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: 2021-11-02 17:27+0000\n"
-"Last-Translator: Meano Lee <meanocat@gmail.com>\n"
+"PO-Revision-Date: 2021-11-27 23:39+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.9-dev\n"
+"X-Generator: Weblate 4.10-dev\n"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
msgid "%.1f dB"
@@ -22,7 +22,7 @@ msgstr "%.1f dB"
msgid "%d Bit"
msgstr "%d Bit"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d 个无效字段"
@@ -58,19 +58,19 @@ msgid "-- Additional Field --"
msgstr "-- 更多选项 --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- 请选择 --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- 自定义 --"
@@ -217,7 +217,7 @@ msgstr "<abbr title=\"路由器通告\">RA</abbr> 服务"
msgid "A configuration for the device \"%s\" already exists"
msgstr "设备 “%s” 的配置已存在"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "已存在同名的目录。"
@@ -225,7 +225,7 @@ msgstr "已存在同名的目录。"
msgid "A new login is required since the authentication session expired."
msgstr "由于身份验证会话已过期,需要重新登录。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -401,11 +401,11 @@ msgstr "自适应负载均衡(balance-alb,6)"
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "自适应传输负载均衡(balance-tlb,5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -633,7 +633,7 @@ msgstr "允许系统功能探测"
msgid "Allow the <em>root</em> user to login with password"
msgstr "允许 <em>root</em> 用户凭密码登录"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "允许的 IP"
@@ -675,7 +675,7 @@ msgstr "此设备的可选简短描述"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1464
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20
msgid "Annex"
-msgstr "Annex"
+msgstr "附件"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1465
msgid "Annex A + L + M (all)"
@@ -683,19 +683,19 @@ msgstr "Annex A + L + M(全部)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1473
msgid "Annex A G.992.1"
-msgstr "Annex A G.992.1"
+msgstr "附件 A G.992.1"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1474
msgid "Annex A G.992.2"
-msgstr "Annex A G.992.2"
+msgstr "附件 A G.992.2"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1475
msgid "Annex A G.992.3"
-msgstr "Annex A G.992.3"
+msgstr "附件 A G.992.3"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476
msgid "Annex A G.992.5"
-msgstr "Annex A G.992.5"
+msgstr "附件 A G.992.5"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
msgid "Annex B (all)"
@@ -703,15 +703,15 @@ msgstr "Annex B(全部)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1469
msgid "Annex B G.992.1"
-msgstr "Annex B G.992.1"
+msgstr "附件 B G.992.1"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1470
msgid "Annex B G.992.3"
-msgstr "Annex B G.992.3"
+msgstr "附件 B G.992.3"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471
msgid "Annex B G.992.5"
-msgstr "Annex B G.992.5"
+msgstr "附件 B G.992.5"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1467
msgid "Annex J (all)"
@@ -719,7 +719,7 @@ msgstr "Annex J(全部)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1477
msgid "Annex L G.992.3 POTS 1"
-msgstr "Annex L G.992.3 POTS 1"
+msgstr "附件 L G.992.3 POTS 1"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1468
msgid "Annex M (all)"
@@ -727,11 +727,11 @@ msgstr "Annex M(全部)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1478
msgid "Annex M G.992.3"
-msgstr "Annex M G.992.3"
+msgstr "附件 M G.992.3"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1479
msgid "Annex M G.992.5"
-msgstr "Annex M G.992.5"
+msgstr "附件 M G.992.5"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:885
msgid "Announce this device as IPv6 DNS server."
@@ -792,16 +792,16 @@ msgstr "将 DHCP 选项应用到此网络。(Empty = 所有客户端)。"
msgid "Apply backup?"
msgstr "应用备份?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "应用请求失败,状态 <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "强制应用"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "正在等待配置被应用… %ds"
@@ -856,6 +856,7 @@ msgid "Authoritative"
msgstr "唯一授权"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "需要授权"
@@ -1070,8 +1071,8 @@ msgstr "即使没有接口附加到网桥,也启动它"
msgid "Broadcast policy (broadcast, 3)"
msgstr "广播策略(broadcast,3)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "浏览…"
@@ -1101,8 +1102,8 @@ msgstr "已缓存"
msgid "Call failed"
msgstr "调用失败"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1172,11 +1173,11 @@ msgstr ""
msgid "Chain"
msgstr "链"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "更改数"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "更改已恢复。"
@@ -1273,7 +1274,7 @@ msgstr "客户端"
msgid "Client ID to send when requesting DHCP"
msgstr "请求 DHCP 时发送的客户端 ID"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1338,16 +1339,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "计算传出校验和(可选)。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "配置"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "配置已应用。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "配置已回滚!"
@@ -1450,7 +1451,7 @@ msgstr "内容已保存。"
msgid "Continue"
msgstr "继续"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1596,7 +1597,7 @@ msgstr "DNS 权重"
#: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
msgid "DNS-Label / FQDN"
-msgstr "DNS-Label / FQDN"
+msgstr "DNS-标记 / FQDN"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:396
msgid "DNSSEC"
@@ -1685,11 +1686,11 @@ msgstr "定义在传入帧上 VLAN 标头优先级到 Linux 内部数据包优
msgid "Delegate IPv6 prefixes"
msgstr "委托 IPv6 前缀"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1701,7 +1702,7 @@ msgstr "删除"
msgid "Delete key"
msgstr "删除密钥"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "删除请求失败:%s"
@@ -1715,11 +1716,11 @@ msgstr "发送流量指示消息间隔"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "描述"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "取消"
@@ -1792,7 +1793,7 @@ msgstr "设备不存在"
msgid "Device type"
msgstr "设备类型"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "无法连接到设备!"
@@ -1813,7 +1814,7 @@ msgstr "网络诊断"
msgid "Dial number"
msgstr "拨号号码"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "目录"
@@ -1885,10 +1886,14 @@ msgstr "尝试断开连接失败"
msgid "Disconnection attempt failed."
msgstr "尝试断开连接失败。"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr "磁盘空间"
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1973,7 +1978,7 @@ msgstr ""
"不在此接口上发送任何 <abbr title=\"路由器通告,ICMPv6 类型 134\">RA</abbr> 消"
"息。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "您真的要删除“%s”吗?"
@@ -1985,7 +1990,7 @@ msgstr "您真的要删除以下 SSH 密钥吗?"
msgid "Do you really want to erase all settings?"
msgstr "您真的要清除所有设置吗?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "您真的要删除目录“%s”吗?"
@@ -2027,7 +2032,7 @@ msgstr "下载 mtdblock"
msgid "Downstream SNR offset"
msgstr "下游 SNR 偏移"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "拖动以重排"
@@ -2075,9 +2080,9 @@ msgstr "EA-bits 长度"
msgid "EAP-Method"
msgstr "EAP 类型"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2122,6 +2127,10 @@ msgstr "紧急"
msgid "Enable"
msgstr "启用"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr "启用/禁用对端。重启 Wireguard 端口应用更改。"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2322,11 +2331,11 @@ msgstr "封装模式"
msgid "Encryption"
msgstr "加密"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr "端点主机"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr "端点端口"
@@ -2429,7 +2438,7 @@ msgstr "请输入有效的 IPv6 地址"
msgid "Expecting two priority values separated by a colon"
msgstr "请输入用冒号分隔的两个优先级"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2493,11 +2502,11 @@ msgstr "额外的 sstpc 选项"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1529
msgid "FT over DS"
-msgstr "FT over DS"
+msgstr "FT 透过 DS"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1530
msgid "FT over the Air"
-msgstr "FT over the Air"
+msgstr "FT 透過 空中"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1527
msgid "FT protocol"
@@ -2507,7 +2516,7 @@ msgstr "FT 协议"
msgid "Failed to change the system password."
msgstr "更改系统密码失败。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "在 %d 秒内确认应用失败,等待回滚…"
@@ -2515,7 +2524,7 @@ msgstr "在 %d 秒内确认应用失败,等待回滚…"
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "执行“/etc/init.d/%s %s”失败:%s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "文件"
@@ -2527,7 +2536,7 @@ msgstr ""
"列出上游解析器的文件,可以特定于域名,比如 <code>server=1.2.3.4</code>,"
"<code>server=/domain/1.2.3.4</code>。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "文件无法访问"
@@ -2539,7 +2548,7 @@ msgstr "存储 DHCP 租约信息的文件。"
msgid "File with upstream resolvers."
msgstr "上游解析器文件。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "文件名"
@@ -2647,7 +2656,7 @@ msgstr "刷写操作"
msgid "Flashing…"
msgstr "正在刷写…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr "二维码支持,请安装 qrencode 包!"
@@ -2836,7 +2845,7 @@ msgstr "生成配置"
msgid "Generate Key"
msgstr "生成密钥"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr "生成新的二维码"
@@ -2848,7 +2857,7 @@ msgstr "本地生成 PMK"
msgid "Generate archive"
msgstr "生成备份"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr "生成新的二维码"
@@ -2864,21 +2873,20 @@ msgstr "全局设置"
msgid "Global network options"
msgstr "全局网络选项"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr "转到固件升级…"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "跳转到密码配置页…"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3031,7 +3039,7 @@ msgstr "此处配置设备的基础信息,如主机名称或时区。"
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "隐藏 <abbr title=\"扩展服务集标识符\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr "隐藏二维码"
@@ -3218,7 +3226,7 @@ msgstr "IPv4 网关"
msgid "IPv4 netmask"
msgstr "IPv4 子网掩码"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr "地址/网络掩码表示法中的 IPv4 网络"
@@ -3319,7 +3327,7 @@ msgstr "IPv6 分配长度"
msgid "IPv6 gateway"
msgstr "IPv6 网关"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr "地址/网络掩码表示法中的 IPv6 网络"
@@ -3389,7 +3397,7 @@ msgstr "IPv6-over-IPv4(6to4)"
msgid "Identity"
msgstr "鉴权"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr "如可用,使用客户端的 \"PresharedKey\""
@@ -3424,7 +3432,7 @@ msgid ""
"device node"
msgstr "如果指定,则通过分区卷标而不是固定的设备文件来挂载设备"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3737,6 +3745,8 @@ msgid "Invalid hexadecimal value"
msgstr "无效 16 进制值"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "无效的用户名和/或密码!请重试。"
@@ -3754,7 +3764,7 @@ msgid ""
"flash memory, please verify the image file!"
msgstr "您尝试刷写的固件与本路由器不兼容,请检查固件文件!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3929,7 +3939,7 @@ msgstr ""
"过时或性能欠佳的设备可能需要旧的 802.11b 速率才能互联。在使用这些速率的情况"
"下,信道占用效率可能会显著降低。建议尽可能不使用 802.11b 速率。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "图例:"
@@ -4046,17 +4056,19 @@ msgstr "负载"
msgid "Load Average"
msgstr "平均负载"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr "加载二维码中…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "正在载入目录内容…"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "正在载入视图…"
@@ -4164,6 +4176,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr "隧道将要被添加(桥接)到的逻辑网络(可选)。"
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "登录"
@@ -4228,7 +4241,7 @@ msgstr "MAC 列表"
#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
msgid "MAP / LW4over6"
-msgstr "MAP / LW4over6"
+msgstr "MAP / LW4over6 (IPv6组播技术)"
#: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62
#: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
@@ -4250,7 +4263,7 @@ msgstr "MII"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
msgid "MII / ETHTOOL ioctls"
-msgstr "MII / ETHTOOL ioctls"
+msgstr "MII / ETHTOOL 输入输出操作系统"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
msgid "MII Interval"
@@ -4522,7 +4535,7 @@ msgstr "监听"
msgid "More Characters"
msgstr "过短"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "更多…"
@@ -4626,8 +4639,8 @@ msgstr "NT 域"
msgid "NTP server candidates"
msgstr "候选 NTP 服务器"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4723,7 +4736,7 @@ msgstr "新接口名称…"
msgid "Next »"
msgstr "前进 »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4753,7 +4766,6 @@ msgstr "无 NAT-T"
msgid "No RX signal"
msgstr "无接收信号"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4785,7 +4797,7 @@ msgstr "不强制"
msgid "No entries available"
msgstr "没有可用的条目"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "此目录中没有内容"
@@ -4825,7 +4837,7 @@ msgstr "没有更多的从属设备可用,无法保存接口"
msgid "No negative cache"
msgstr "禁用无效信息缓存"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4991,7 +5003,7 @@ msgstr "On-Link 路由"
msgid "One of hostname or MAC address must be specified!"
msgstr "请指定主机名或 MAC 地址!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "可选值:%s"
@@ -5059,20 +5071,20 @@ msgstr "如存在上游 IPv6 前缀则以<em>中继模式</em>运行,否则禁
msgid "Operating frequency"
msgstr "工作频率"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr "选项“%s”包含无效的输入值。"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr "选项“%s”不能为空。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "选项已更改"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "选项已移除"
@@ -5102,7 +5114,7 @@ msgstr ""
"权服务器获取到 IPv6 前缀(如“a:b:c:d::”),使用后缀(如 “::1”)合成 IPv6 地址"
"(“a:b:c:d::1”)分配给此接口。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
@@ -5110,11 +5122,11 @@ msgstr ""
"可选,Base64 编码的预共享密钥。添加在额外的对称密钥加密层中,用于抵抗未来的量"
"子计算破解。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr "可选,为此对端创建允许 IP 的路由。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "可选,对端的描述。"
@@ -5122,13 +5134,13 @@ msgstr "可选,对端的描述。"
msgid "Optional. Do not create host routes to peers."
msgstr "可选,不要创建到对端的主机路由。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr "可选,对端主机。名称将会预先被解析以启动接口。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5141,11 +5153,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "可选,隧道接口的最大传输单元。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "可选,对端的端口。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5168,9 +5180,9 @@ msgid ""
"\" for default route. <code>0.0.0.0</code> means \"the address of the system "
"running dnsmasq\"."
msgstr ""
-"Network-ID 选项。(注意:还需要指定 Network-ID。)如,“<code>42,192.168.1.4</code>”为 NTP "
-"服务器,“<code>3,192.168.4.4</code>”为默认路由。<code>0.0.0.0</code> 表示“系统运行 dnsmasq "
-"的地址”。"
+"Network-ID 选项。(注意:还需要指定 Network-ID。)如,“<code>42,192.168.1.4</"
+"code>”为 NTP 服务器,“<code>3,192.168.4.4</code>”为默认路由。<code>0.0.0.0</"
+"code> 表示“系统运行 dnsmasq 的地址”。"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119
msgid "Options:"
@@ -5291,7 +5303,7 @@ msgstr "重设内部路由表"
msgid "Overview"
msgstr "概览"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "覆盖已存在的文件“%s”吗?"
@@ -5426,6 +5438,7 @@ msgstr "直通(将物理设备镜像到单个 MAC VLAN)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "密码"
@@ -5515,6 +5528,10 @@ msgstr "对端地址缺失"
msgid "Peer device name"
msgstr "对端设备名"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr "已禁用对端"
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "对端"
@@ -5542,7 +5559,7 @@ msgstr "执行重置"
msgid "Permission denied"
msgstr "没有权限"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "持续 Keep-Alive"
@@ -5567,13 +5584,13 @@ msgstr "Ping"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
msgid "Pkts."
-msgstr "数据包"
+msgstr "Pkts.(流量单位)"
#: modules/luci-base/luasrc/view/sysauth.htm:19
msgid "Please enter your username and password."
msgstr "请输入用户名和密码。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "请选择要上传的文件。"
@@ -5593,7 +5610,7 @@ msgstr "端口隔离"
msgid "Port status:"
msgstr "端口状态:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr "可能存在的冲突:%s"
@@ -5621,7 +5638,7 @@ msgstr "分发前缀"
msgid "Prefix suppressor"
msgstr "前缀抑制器"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "预共享密钥"
@@ -5684,7 +5701,7 @@ msgstr "系统进程"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
msgid "Prot."
-msgstr "协议"
+msgstr "端口."
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554
@@ -5715,7 +5732,7 @@ msgstr "添加新网络"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "伪装 Ad-Hoc(ahdemo)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "公钥"
@@ -5738,8 +5755,8 @@ msgstr "分配到此设备的公共前缀,用以分发到客户端。"
msgid "QMI Cellular"
msgstr "QMI 蜂窝"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr "二维码"
@@ -5970,7 +5987,7 @@ msgstr "某些运营商需要,例如:同轴线网络 DOCSIS 3"
msgid "Required. Base64-encoded private key for this interface."
msgstr "必须,此接口的 Base64 编码私钥。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr "必须,对端的 Base64 编码公钥。"
@@ -6099,8 +6116,8 @@ msgid ""
msgstr ""
"如果有多个 IP 可用,则应答特定的 DNS 查询,这些查询匹配接收到查询的子网。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "显示/隐藏 密码"
@@ -6108,19 +6125,19 @@ msgstr "显示/隐藏 密码"
msgid "Reverse path filter"
msgstr "反转路径过滤器"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "恢复"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "恢复更改"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr "恢复请求失败,状态 <code>%h</code>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "正在恢复配置…"
@@ -6145,7 +6162,7 @@ msgstr "根目录准备"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr "循环策略(balance-rr,0)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "路由允许的 IP"
@@ -6252,7 +6269,7 @@ msgstr "SSTP 服务器"
msgid "SWAP"
msgstr "交换分区"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6263,7 +6280,7 @@ msgid "Save"
msgstr "保存"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "保存并应用"
@@ -6289,11 +6306,11 @@ msgstr "扫描"
msgid "Scheduled Tasks"
msgstr "计划任务"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "添加的节点"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "移除的节点"
@@ -6310,9 +6327,9 @@ msgstr ""
"即使映像文件检查失败,也“强制升级”以烧录映像。仅在您确定固件正确且适用于您的"
"设备时使用!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "选择文件…"
@@ -6447,11 +6464,11 @@ msgstr "严重误码秒(SES)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
msgid "Short GI"
-msgstr "Short GI"
+msgstr "短GI"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1158
msgid "Short Preamble"
-msgstr "Short Preamble"
+msgstr "短序码"
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:470
#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18
@@ -6500,7 +6517,7 @@ msgstr "信号刷新率"
msgid "Signal:"
msgstr "信号:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "大小"
@@ -6724,7 +6741,7 @@ msgstr "指定系统优先级"
msgid ""
"Specifies the time in milliseconds to wait before disabling a slave after a "
"link failure detection"
-msgstr "指定在检测到链路故障后,在禁用从属设备之前等待的时间(以毫秒为单位)"
+msgstr "指定在检测到链路故障后,在禁用从属设备之前等待以毫秒为单位的时间"
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:412
msgid ""
@@ -6858,7 +6875,7 @@ msgstr "启动优先级"
msgid "Start refresh"
msgstr "开始刷新"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "开始应用配置…"
@@ -6929,6 +6946,10 @@ msgstr "停止 WPS"
msgid "Stop refresh"
msgstr "停止刷新"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr "存储空间使用"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr "严格过滤"
@@ -6991,7 +7012,7 @@ msgstr "切换协议"
msgid "Switch to CIDR list notation"
msgstr "切换到 CIDR 列表记法"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "符号链接"
@@ -7028,7 +7049,6 @@ msgstr "系统属性"
msgid "System log buffer size"
msgstr "系统日志缓冲区大小"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7082,11 +7102,15 @@ msgstr "目标平台"
msgid "Target network"
msgstr "目标网络"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr "临时空间"
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "关闭"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr "wireguard 接口的 \"PublicKey\""
@@ -7206,7 +7230,7 @@ msgstr "MAC 地址 %h 已被同一个 DHCP 池中的另一个静态租约使用"
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr "MTU 不能超过父设备 MTU 的 %d 字节"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7236,7 +7260,7 @@ msgid ""
"network"
msgstr "加入一个隐藏的无线网络时,必须手动指定正确的 SSID"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7331,7 +7355,7 @@ msgstr "IPv4 前缀长度(位),其余的用在 IPv6 地址。"
msgid "The length of the IPv6 prefix in bits"
msgstr "IPv6 前缀长度(位)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7358,6 +7382,10 @@ msgstr "本地 IPv4 网络掩码"
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr "建立隧道的本地 IPv6 地址(可选)。"
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr "登录请求失败,错误为:%h"
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
msgid ""
"The max response time in centiseconds inserted into group-specific queries "
@@ -7503,11 +7531,11 @@ msgstr "该值被配置覆盖。 原始:%s"
msgid "There are no active leases"
msgstr "没有已分配的租约"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "没有待应用的更改"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7590,8 +7618,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr "此选项不可用,因为 ca-bundle 软件包未安装。"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7648,7 +7676,7 @@ msgstr ""
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481
msgid "Tone"
-msgstr "Tone"
+msgstr "协调"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
msgid "Total Available"
@@ -7658,7 +7686,7 @@ msgstr "可用数"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:114
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:124
msgid "Traceroute"
-msgstr "Traceroute"
+msgstr "路由追踪"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
@@ -7864,7 +7892,7 @@ msgstr "卸载分区"
msgid "Unnamed key"
msgstr "未命名的密钥"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "未保存的配置"
@@ -7894,7 +7922,7 @@ msgstr "上移"
msgid "Up Delay"
msgstr "Up 延迟"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "上传"
@@ -7909,21 +7937,21 @@ msgstr "从这里上传一个 sysupgrade 兼容镜像以更新正在运行的固
msgid "Upload archive..."
msgstr "上传备份…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "上传文件"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "上传文件…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "上传请求失败:%s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "正在上传文件…"
@@ -8120,6 +8148,7 @@ msgstr "用户密钥(PEM)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "用户名"
@@ -8419,7 +8448,7 @@ msgstr "将系统日志写入文件"
msgid "XOR policy (balance-xor, 2)"
msgstr "XOR 策略 (balance-xor, 2)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8444,7 +8473,7 @@ msgstr ""
"在此启用或禁用已安装的启动脚本,更改在设备重启后生效。<br /><strong>警告:如"
"果禁用了必要的启动脚本,比如“network”,可能会导致无法访问设备!</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8607,7 +8636,7 @@ msgstr "全双工"
msgid "half-duplex"
msgstr "半双工"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "十六进制编码值"
@@ -8632,11 +8661,11 @@ msgstr "忽略"
msgid "input"
msgstr "输入"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "密钥在 8 到 63 个字符之间"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "密钥为 5 或 13 个字符"
@@ -8669,12 +8698,12 @@ msgstr "否"
msgid "no link"
msgstr "未连接"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "非空值"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "无"
@@ -8708,11 +8737,11 @@ msgstr "其他配置 (O)"
msgid "output"
msgstr "输出"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "正十进制值"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "正整数值"
@@ -8765,7 +8794,7 @@ msgstr ""
"uHTTPd 提供 <abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> 或 <abbr "
"title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> 网络访问。"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "唯一值"
@@ -8783,7 +8812,7 @@ msgstr "未知"
msgid "unlimited"
msgstr "无限制"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8804,175 +8833,175 @@ msgstr "不指定或新建:"
msgid "untagged"
msgstr "未标记"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "有效 IP 地址"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "有效 IP 地址或前缀"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "有效 IPv4 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "有效 IPv4 地址"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "有效 IPv4 地址或网络"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "有效 IPv4 address:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "有效 IPv4 网络"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "有效 IPv4 或 IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "有效 IPv4 前缀值(0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "有效 IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "有效 IPv6 地址"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "有效 IPv6 地址或前缀"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "有效 IPv6 主机 ID"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "有效 IPv6 网络"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "有效 IPv6 前缀值(0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "有效 MAC 地址"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "有效 UCI 识别"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "有效 UCI 标识符,主机名或 IP 地址"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "有效 address:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "有效日期(YYYY-MM-DD)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "有效十进制值"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "有效十六进制 WEP 密钥"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "有效十六进制 WPA 密钥"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "有效 host:port"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "有效主机名"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "有效主机名或 IP 地址"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "有效整数值"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr "有效的多播 MAC 地址"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "地址/网络掩码表示法中的有效网络"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "有效电话号码(0-9、“*”、“#”、“!”或“.”)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "有效端口或端口范围(port1-port2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "有效端口值"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "有效时间(HH:MM:SS)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "%d 和 %d 字符之间的值"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "%f 和 %f 之间的值"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "值大于或等于 %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "值小于或等于 %f"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "值有 %d 个字符"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "值至少为 %d 个字符"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "值至多为 %d 个字符"
diff --git a/modules/luci-base/po/zh_Hant/base.po b/modules/luci-base/po/zh_Hant/base.po
index 8b6bcb932d..6f1f8aa52a 100644
--- a/modules/luci-base/po/zh_Hant/base.po
+++ b/modules/luci-base/po/zh_Hant/base.po
@@ -20,7 +20,7 @@ msgstr "%.1f 分貝"
msgid "%d Bit"
msgstr "%d 位元"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3726
msgid "%d invalid field(s)"
msgstr "%d 個無效欄位"
@@ -56,19 +56,19 @@ msgid "-- Additional Field --"
msgstr "-- 額外欄位 --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3931
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:784
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3949
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:798
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1036
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2009
#: modules/luci-compat/luasrc/view/cbi/header.htm:8
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
msgid "-- Please choose --"
msgstr "-- 請選擇 --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2010
#: modules/luci-compat/luasrc/view/cbi/header.htm:9
msgid "-- custom --"
msgstr "-- 自訂 --"
@@ -218,7 +218,7 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr> 服務"
msgid "A configuration for the device \"%s\" already exists"
msgstr "裝置「%s」的設定已存在"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2755
msgid "A directory with the same name already exists."
msgstr "已存在同名的目錄。"
@@ -226,7 +226,7 @@ msgstr "已存在同名的目錄。"
msgid "A new login is required since the authentication session expired."
msgstr "因為身分驗證會話已逾期,需要重新登入。"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:167
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
msgid ""
"A random, on the fly generated \"PrivateKey\", the key will not be saved on "
"the router"
@@ -402,11 +402,11 @@ msgstr "自適應負載平衡 (balance-alb, 6)"
msgid "Adaptive transmit load balancing (balance-tlb, 5)"
msgstr "自適應發送負載平衡 (balance-tlb, 5)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2192
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2195
#: modules/luci-base/htdocs/luci-static/resources/form.js:2208
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2216
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2211
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2224
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2232
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3379
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@@ -629,7 +629,7 @@ msgstr "允許系統功能探測"
msgid "Allow the <em>root</em> user to login with password"
msgstr "允許 <em>root</em> 用戶以密碼登入"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid "Allowed IPs"
msgstr "允許的 IP群"
@@ -789,16 +789,16 @@ msgstr ""
msgid "Apply backup?"
msgstr "是否套用備份?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4313
msgid "Apply request failed with status <code>%h</code>"
msgstr "套用要求失敗,狀態 <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4179
msgid "Apply unchecked"
msgstr "應用未核取"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4252
msgid "Applying configuration changes… %ds"
msgstr "組態變更套用中… %ds"
@@ -853,6 +853,7 @@ msgid "Authoritative"
msgstr "授權"
#: modules/luci-base/luasrc/view/sysauth.htm:17
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:35
msgid "Authorization Required"
msgstr "需要授權"
@@ -1067,8 +1068,8 @@ msgstr "即使沒有介面附加到橋接,也啟動它"
msgid "Broadcast policy (broadcast, 3)"
msgstr "廣播政策(廣播,3)"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2845
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3836
msgid "Browse…"
msgstr "瀏覽…"
@@ -1098,8 +1099,8 @@ msgstr "已快取"
msgid "Call failed"
msgstr "呼叫失敗"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2938
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3845
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
@@ -1169,11 +1170,11 @@ msgstr ""
msgid "Chain"
msgstr "鏈"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
msgid "Changes"
msgstr "待修改"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4348
msgid "Changes have been reverted."
msgstr "設定值已還原."
@@ -1272,7 +1273,7 @@ msgstr "用戶端"
msgid "Client ID to send when requesting DHCP"
msgstr "當要求DHCP時要傳送的用戶識別碼ID"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4082
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
msgid "Close"
@@ -1337,16 +1338,16 @@ msgstr ""
msgid "Compute outgoing checksum (optional)."
msgstr "計算傳出的校驗和(自選)."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4065
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
msgid "Configuration"
msgstr "組態"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4227
msgid "Configuration changes applied."
msgstr "組態變更已套用。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
msgid "Configuration changes have been rolled back!"
msgstr "組態變更已被復原!"
@@ -1450,7 +1451,7 @@ msgstr "內容已儲存。"
msgid "Continue"
msgstr "繼續"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4201
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
@@ -1687,11 +1688,11 @@ msgstr "在傳入框架上定義 VLAN 標頭優先順序到 Linux 內部封包
msgid "Delegate IPv6 prefixes"
msgstr "委派 IPv6 首碼"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2272
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2701
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2705
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3347
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2288
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2717
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2721
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3363
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2907
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@@ -1703,7 +1704,7 @@ msgstr "刪除"
msgid "Delete key"
msgstr "刪除金鑰"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2804
msgid "Delete request failed: %s"
msgstr "刪除要求失敗: %s"
@@ -1717,11 +1718,11 @@ msgstr "傳送流量指示訊息間隔"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:138
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Description"
msgstr "描述"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2903
msgid "Deselect"
msgstr "取消選擇"
@@ -1794,7 +1795,7 @@ msgstr "裝置不存在"
msgid "Device type"
msgstr "裝置類型"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4200
msgid "Device unreachable!"
msgstr "裝置不可達!"
@@ -1815,7 +1816,7 @@ msgstr "診斷"
msgid "Dial number"
msgstr "撥號號碼"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2700
msgid "Directory"
msgstr "目錄"
@@ -1889,10 +1890,14 @@ msgstr "嘗試中斷線連失敗"
msgid "Disconnection attempt failed."
msgstr "嘗試中斷線連失敗."
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
+msgid "Disk space"
+msgstr ""
+
#: modules/luci-base/htdocs/luci-static/resources/form.js:606
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3054
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3070
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3344
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4171
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1766
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
msgid "Dismiss"
@@ -1979,7 +1984,7 @@ msgstr ""
"不在此介面上傳送任何 <abbr title=\"Router Advertisement, ICMPv6 Type "
"134\">RA</abbr> 訊息。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Do you really want to delete \"%s\" ?"
msgstr "您確定要刪除「%s」?"
@@ -1991,7 +1996,7 @@ msgstr "您確定要刪除下列 SSH 金鑰?"
msgid "Do you really want to erase all settings?"
msgstr "您確定要清除所有設定?"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "您真的要遞迴刪除目錄 \"%s\" 嗎?"
@@ -2033,7 +2038,7 @@ msgstr "下載 mtdblock"
msgid "Downstream SNR offset"
msgstr "下載串流 SNR 位移"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2659
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2675
msgid "Drag to reorder"
msgstr "拖動來排序"
@@ -2080,9 +2085,9 @@ msgstr "EA-位元長度"
msgid "EAP-Method"
msgstr "可擴展身份驗證協定(EAP)-方式"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2679
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2682
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3210
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2695
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2698
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3226
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
@@ -2127,6 +2132,10 @@ msgstr "緊急"
msgid "Enable"
msgstr "啟用"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
@@ -2329,11 +2338,11 @@ msgstr "封裝模式"
msgid "Encryption"
msgstr "加密(Encryption)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid "Endpoint Host"
msgstr "終端主機"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Endpoint Port"
msgstr "終端阜"
@@ -2434,7 +2443,7 @@ msgstr "請輸入有效的 IPv6 位址"
msgid "Expecting two priority values separated by a colon"
msgstr "請輸入用冒號分隔的兩個優先順序"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:64
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
@@ -2512,7 +2521,7 @@ msgstr "FT 協定"
msgid "Failed to change the system password."
msgstr "更新系統密碼失敗。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "無法在 %ds 秒內確認變更,等待回滾…"
@@ -2520,7 +2529,7 @@ msgstr "無法在 %ds 秒內確認變更,等待回滾…"
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "執行失敗 \"/etc/init.d/%s %s\" 動作: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2708
msgid "File"
msgstr "檔案"
@@ -2533,7 +2542,7 @@ msgstr ""
"前者為特定的網域指定 <abbr title=\"Domain Name System\">DNS</abbr> 伺服器,後"
"者則不限定伺服器的解析範圍。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2655
msgid "File not accessible"
msgstr "無法存取檔案"
@@ -2547,7 +2556,7 @@ msgstr ""
msgid "File with upstream resolvers."
msgstr "本地<abbr title=\"Domain Name System\">DNS</abbr> 檔案"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2846
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:506
msgid "Filename"
msgstr "檔名"
@@ -2654,7 +2663,7 @@ msgstr "韌體工具"
msgid "Flashing…"
msgstr "燒錄中…"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
msgid "For QR-Code support please install the qrencode package!"
msgstr ""
@@ -2843,7 +2852,7 @@ msgstr "產生設定檔"
msgid "Generate Key"
msgstr "產生金鑰"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:209
msgid "Generate New QR-Code"
msgstr ""
@@ -2855,7 +2864,7 @@ msgstr "本地產生 PMK"
msgid "Generate archive"
msgstr "製作壓縮檔"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:220
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
msgid "Generate new QR-Code"
msgstr ""
@@ -2871,21 +2880,20 @@ msgstr "全域設定"
msgid "Global network options"
msgstr "全域網路選項"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:63
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
msgid "Go to firmware upgrade..."
msgstr ""
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:53
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
msgid "Go to password configuration..."
msgstr "前往密碼設定..."
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2601
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3529
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2617
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3545
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page"
@@ -3038,7 +3046,7 @@ msgstr "在這裡設定基本設定值,如主機名稱、時區...等。"
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "隱藏 <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:215
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:219
msgid "Hide QR-Code"
msgstr ""
@@ -3225,7 +3233,7 @@ msgstr "IPv4閘道"
msgid "IPv4 netmask"
msgstr "IPv4網路遮罩"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:305
msgid "IPv4 network in address/netmask notation"
msgstr "IPv4網路以位址/子網路遮罩表示"
@@ -3326,7 +3334,7 @@ msgstr "IPv6 分配長度"
msgid "IPv6 gateway"
msgstr "IPv6閘道器"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:299
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:310
msgid "IPv6 network in address/netmask notation"
msgstr "IPv6網路以位址/子網路遮罩表示"
@@ -3397,7 +3405,7 @@ msgstr "IPv6凌駕IPv4外(6轉4)"
msgid "Identity"
msgstr "身分識別"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:173
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
msgid "If available, the client's \"PresharedKey\""
msgstr ""
@@ -3432,7 +3440,7 @@ msgid ""
"device node"
msgstr "假若指定的話, 掛載設備的分割標籤取代固定的設備節點"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
msgid ""
"If there are any unsaved changes for this client, please save the "
"configuration before generating a QR-Code"
@@ -3745,6 +3753,8 @@ msgid "Invalid hexadecimal value"
msgstr "錯誤的十六進制數值"
#: modules/luci-base/luasrc/view/sysauth.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:39
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:74
msgid "Invalid username and/or password! Please try again."
msgstr "不正確的使用者名稱和/或者密碼!請再試一次。"
@@ -3762,7 +3772,7 @@ msgid ""
"flash memory, please verify the image file!"
msgstr "您正使用不適用於此 Flash 的映像檔,請檢查映像檔!"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
msgid "JavaScript required!"
@@ -3937,7 +3947,7 @@ msgstr ""
"舊版或性能欠佳的設備可能需要舊版802.11b速率才能互操作. 使用這些功能時, 通話時"
"間效率可能會大大降低. 建議盡可能不允許802.11b速率."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4067
msgid "Legend:"
msgstr "圖例:"
@@ -4053,17 +4063,19 @@ msgstr "負載"
msgid "Load Average"
msgstr "平均負載"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:207
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:211
msgid "Loading QR-Code..."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2973
msgid "Loading directory contents…"
msgstr "讀取目錄內容…"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
#: modules/luci-base/luasrc/view/view.htm:4
#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:54
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:14
msgid "Loading view…"
msgstr "載入畫面中…"
@@ -4171,6 +4183,7 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)."
msgstr "(已橋接)隧道的邏輯網路將會被新增(可選的)."
#: modules/luci-base/luasrc/view/sysauth.htm:38
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:44
msgid "Login"
msgstr "登入"
@@ -4530,7 +4543,7 @@ msgstr "監視"
msgid "More Characters"
msgstr "字元過少"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2543
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2559
msgid "More…"
msgstr "更多…"
@@ -4634,8 +4647,8 @@ msgstr "微軟NT網域"
msgid "NTP server candidates"
msgstr "候選 NTP 伺服器"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2581
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2597
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
@@ -4731,7 +4744,7 @@ msgstr "新介面名稱…"
msgid "Next »"
msgstr "下一個 »"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
msgid "No"
@@ -4761,7 +4774,6 @@ msgstr "無 NAT-T"
msgid "No RX signal"
msgstr "沒有 RX 信號"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:61
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
@@ -4792,7 +4804,7 @@ msgstr "不強制"
msgid "No entries available"
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2913
msgid "No entries in this directory"
msgstr "在這目錄中缺乏項目"
@@ -4832,7 +4844,7 @@ msgstr "缺乏更多可用的實體界面, 無法儲存界面"
msgid "No negative cache"
msgstr "無負向快取"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:50
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
msgid "No password set!"
@@ -4997,7 +5009,7 @@ msgstr "連接路線"
msgid "One of hostname or MAC address must be specified!"
msgstr "主機名稱或 mac 位址至少要有一個被指定!"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:470
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:481
msgid "One of the following: %s"
msgstr "以下之一: %s"
@@ -5065,20 +5077,20 @@ msgstr "如存在上游 IPv6 前綴則以<em>中繼模式</em>執行,否則停
msgid "Operating frequency"
msgstr "操作頻率"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1974
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3880
+#: modules/luci-base/htdocs/luci-static/resources/form.js:1990
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3898
msgid "Option \"%s\" contains an invalid input value."
msgstr "選項 \"%s\" 含有無效的輸入數值。"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:1987
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2003
msgid "Option \"%s\" must not be empty."
msgstr "選項 \"%s\" 必須不能為空值。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
msgid "Option changed"
msgstr "選項已變更"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
msgid "Option removed"
msgstr "選項已移除"
@@ -5107,7 +5119,7 @@ msgstr ""
"收到IPv6前綴(如'a :b :c :d ::')時, 請使用後綴(如':: 1')形成IPv6地址('a :b :"
"c :d : :1')."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid ""
"Optional. Base64-encoded preshared key. Adds in an additional layer of "
"symmetric-key cryptography for post-quantum resistance."
@@ -5115,11 +5127,11 @@ msgstr ""
"可選性. Base64編碼的預先共享金鑰. 新增了額外一層對稱金鑰密碼學, 以便針對後量"
"子攻擊的抵抗力."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Optional. Create routes for Allowed IPs for this peer."
msgstr "可選性. 對已允許的IP對等節點創建路由表."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:157
msgid "Optional. Description of peer."
msgstr "可選性. 對等節點描述."
@@ -5127,13 +5139,13 @@ msgstr "可選性. 對等節點描述."
msgid "Optional. Do not create host routes to peers."
msgstr "可選性. 針對對等節點群別建立主機路由表."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:245
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
"interface."
msgstr "可選性. 對等節點主機. 名稱在啟動界面之前已解析."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:239
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
msgid ""
"Optional. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
@@ -5144,11 +5156,11 @@ msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
msgstr "可選性. 隧道界面的MTU."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:249
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
msgid "Optional. Port of peer."
msgstr "可選性. 節點的埠號."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
@@ -5291,7 +5303,7 @@ msgstr "覆蓋之前內部使用的路由表"
msgid "Overview"
msgstr "概覽"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756
msgid "Overwrite existing file \"%s\" ?"
msgstr "覆蓋現有文件 \"%s\" ?"
@@ -5426,6 +5438,7 @@ msgstr "直通 (Pass-through, 將物理裝置鏡像到單個 MAC VLAN)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:20
msgid "Password"
msgstr "密碼"
@@ -5515,6 +5528,10 @@ msgstr "對等節點位址遺失中"
msgid "Peer device name"
msgstr "對端裝置名稱"
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
+msgid "Peer disabled"
+msgstr ""
+
#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:135
msgid "Peers"
msgstr "對等節點群"
@@ -5542,7 +5559,7 @@ msgstr "執行重置"
msgid "Permission denied"
msgstr "權限不符"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:253
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:257
msgid "Persistent Keep Alive"
msgstr "持久保持活力"
@@ -5573,7 +5590,7 @@ msgstr "Pkts(流量單位)."
msgid "Please enter your username and password."
msgstr "請輸入您的用戶名稱和密碼。"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3805
msgid "Please select the file to upload."
msgstr "請選擇要上傳的檔案。"
@@ -5593,7 +5610,7 @@ msgstr "連接埠隔離"
msgid "Port status:"
msgstr "埠狀態:"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:496
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:507
msgid "Potential negation of: %s"
msgstr "可能反取: %s"
@@ -5621,7 +5638,7 @@ msgstr "前綴委派"
msgid "Prefix suppressor"
msgstr ""
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:238
msgid "Preshared Key"
msgstr "預先共享金鑰"
@@ -5715,7 +5732,7 @@ msgstr "提供新網路"
msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "偽裝 Ad-Hoc (ahdemo模式)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Public Key"
msgstr "公鑰"
@@ -5738,8 +5755,8 @@ msgstr "公開前綴字首路由到此設備以分發給客戶端."
msgid "QMI Cellular"
msgstr "QMI手機"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:159
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192
msgid "QR-Code"
msgstr ""
@@ -5973,7 +5990,7 @@ msgstr "對特定的ISP需要,例如.DOCSIS 3 加速有線電視寬頻網路"
msgid "Required. Base64-encoded private key for this interface."
msgstr "必需的. 對此界面的以Base64編碼的私鑰."
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:230
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:234
msgid "Required. Base64-encoded public key of peer."
msgstr "必需的. 對此節點的以Base64編碼的公鑰."
@@ -6101,8 +6118,8 @@ msgid ""
"received if multiple IPs are available."
msgstr "若有多個IP可用, 本地化主機名稱端看請求的子網路而言"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:371
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:372
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:385
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:386
msgid "Reveal/hide password"
msgstr "顯示/隱藏 密碼"
@@ -6110,19 +6127,19 @@ msgstr "顯示/隱藏 密碼"
msgid "Reverse path filter"
msgstr "反轉路徑過濾器"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4090
msgid "Revert"
msgstr "還原"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
msgid "Revert changes"
msgstr "還原更改"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4357
msgid "Revert request failed with status <code>%h</code>"
msgstr "還原請求失敗狀態碼<code>%h</code>"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4337
msgid "Reverting configuration…"
msgstr "正在還原設定值…"
@@ -6145,7 +6162,7 @@ msgstr "預備根系統"
msgid "Round-Robin policy (balance-rr, 0)"
msgstr "循環政策 (balance-rr, 0)"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:243
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:247
msgid "Route Allowed IPs"
msgstr "路由允許的IP群"
@@ -6252,7 +6269,7 @@ msgstr "SSTP伺服器"
msgid "SWAP"
msgstr "SWAP"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3059
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3075
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
#: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@@ -6263,7 +6280,7 @@ msgid "Save"
msgstr "儲存"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4086
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply"
msgstr "儲存並套用"
@@ -6289,11 +6306,11 @@ msgstr "掃描"
msgid "Scheduled Tasks"
msgstr "排程任務"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
msgid "Section added"
msgstr "已新增的區段"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
msgid "Section removed"
msgstr "區段移除"
@@ -6310,9 +6327,9 @@ msgstr ""
"選擇「強制升級」來燒錄映像檔,即使檢查未通過。請僅在您確認映像檔正確無誤時使"
"用!"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2962
msgid "Select file…"
msgstr "選擇檔案…"
@@ -6500,7 +6517,7 @@ msgstr "訊號重新整理頻率"
msgid "Signal:"
msgstr "信號:"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3823
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
msgid "Size"
msgstr "容量"
@@ -6856,7 +6873,7 @@ msgstr "啟動優先權"
msgid "Start refresh"
msgstr "開始更新"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4290
msgid "Starting configuration apply…"
msgstr "開始套用設定值…"
@@ -6927,6 +6944,10 @@ msgstr "停用WPS"
msgid "Stop refresh"
msgstr "停止重新整理"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
+msgid "Storage"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
msgid "Strict filtering"
msgstr "嚴格過濾"
@@ -6989,7 +7010,7 @@ msgstr "切換協定"
msgid "Switch to CIDR list notation"
msgstr "切換到 CIDR 清單標記法"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
msgid "Symbolic link"
msgstr "符號連接"
@@ -7026,7 +7047,6 @@ msgstr "系統屬性"
msgid "System log buffer size"
msgstr "系統日誌緩衝區大小"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:60
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
msgid "System running in recovery (initramfs) mode."
@@ -7080,11 +7100,15 @@ msgstr ""
msgid "Target network"
msgstr "目標網路"
+#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
+msgid "Temp space"
+msgstr ""
+
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
msgid "Terminate"
msgstr "終結"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:171
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:174
msgid "The \"PublicKey\" of that wg interface"
msgstr ""
@@ -7205,7 +7229,7 @@ msgstr "MAC 位址 %h 已被同一個 DHCP 池中的另一個靜態租約使用"
msgid "The MTU must not exceed the parent device MTU of %d bytes"
msgstr "MTU 不能超過父裝置 MTU 的 %d 位元組"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:180
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:183
msgid ""
"The QR-Code works per wg interface, it will be refreshed with every button "
"click and transfers the following information:"
@@ -7233,7 +7257,7 @@ msgid ""
"network"
msgstr "當加入隱形的無線網路時,必須手動指定正確的 SSID"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4166
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
@@ -7329,7 +7353,7 @@ msgstr "這IPv4開頭以位元計的長度, 剩餘部分將會延用在IPv6位
msgid "The length of the IPv6 prefix in bits"
msgstr "這IPv6開頭以位元計的長度"
-#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:172
+#: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:175
msgid ""
"The list of this client's \"AllowedIPs\" or \"0.0.0.0/0, ::/0\" if not "
"configured"
@@ -7356,6 +7380,10 @@ msgstr "本地端IPv4子網路遮罩"
msgid "The local IPv6 address over which the tunnel is created (optional)."
msgstr "從已建立的通道產生的本地端IPv6位址(選項)."
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:59
+msgid "The login request failed with error: %h"
+msgstr ""
+
#: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
#, fuzzy
msgid ""
@@ -7505,11 +7533,11 @@ msgstr "該值被設定覆蓋。 原始:%s"
msgid "There are no active leases"
msgstr "無活躍的租約"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4305
msgid "There are no changes to apply"
msgstr "無可套用的變更"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:51
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70
#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
msgid ""
@@ -7595,8 +7623,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed."
msgstr "此動作因 ca-bundle 未安裝無法使用。"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2240
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2550
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2256
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2566
#: 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"
@@ -7870,7 +7898,7 @@ msgstr "卸載"
msgid "Unnamed key"
msgstr "未命名的金鑰"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:4010
msgid "Unsaved Changes"
msgstr "尚未存檔的修改"
@@ -7900,7 +7928,7 @@ msgstr "上線"
msgid "Up Delay"
msgstr "上線延遲"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3897
msgid "Upload"
msgstr "上傳"
@@ -7915,21 +7943,21 @@ msgstr "在這裡上傳一個相容的系統升級映像檔來取代正在執行
msgid "Upload archive..."
msgstr "上傳壓縮檔..."
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2851
msgid "Upload file"
msgstr "上傳檔案"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2826
msgid "Upload file…"
msgstr "上傳檔案…"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:2773
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3885
msgid "Upload request failed: %s"
msgstr "上傳失敗: %s"
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
-#: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3804
+#: modules/luci-base/htdocs/luci-static/resources/ui.js:3858
msgid "Uploading file…"
msgstr "上傳檔案中…"
@@ -8124,6 +8152,7 @@ msgstr "使用者金鑰(PEM編碼格式)"
#: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
#: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
+#: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:17
msgid "Username"
msgstr "用戶名稱"
@@ -8421,7 +8450,7 @@ msgstr "將系統日誌寫入檔案"
msgid "XOR policy (balance-xor, 2)"
msgstr "位元互斥運算子(XOR)策略(balance-xor, 2)"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3870
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3886
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
#: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
msgid "Yes"
@@ -8446,7 +8475,7 @@ msgstr ""
"您可以開啟或關閉初始化指令在這. 修改將會在設備重開後被啟用. <br /><strong>警"
"告: 假如您關閉必要的初始化腳本像\"網路\", 您的設備將可能無法存取!</strong>"
-#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:71
+#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80
#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97
#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
msgid ""
@@ -8609,7 +8638,7 @@ msgstr "全雙工"
msgid "half-duplex"
msgstr "半雙工"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:573
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:584
msgid "hexadecimal encoded value"
msgstr "十六進制編碼值"
@@ -8634,11 +8663,11 @@ msgstr "忽略"
msgid "input"
msgstr "輸入"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:399
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:410
msgid "key between 8 and 63 characters"
msgstr "長度介於 8 到 63 個字"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:411
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:422
msgid "key with either 5 or 13 characters"
msgstr "鑰匙須為 5 或 13 個字"
@@ -8671,12 +8700,12 @@ msgstr "否"
msgid "no link"
msgstr "未連線"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:2228
+#: modules/luci-base/htdocs/luci-static/resources/form.js:2244
#: modules/luci-base/htdocs/luci-static/resources/validation.js:59
msgid "non-empty value"
msgstr "非空值"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3200
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3216
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
msgid "none"
msgstr "無"
@@ -8710,11 +8739,11 @@ msgstr "其他設定 (O)"
msgid "output"
msgstr "輸出"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:241
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:252
msgid "positive decimal value"
msgstr "正十進位數字"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:233
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:244
msgid "positive integer value"
msgstr "正整數"
@@ -8765,7 +8794,7 @@ msgid ""
"access."
msgstr ""
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:563
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:574
msgid "unique value"
msgstr "獨特值"
@@ -8783,7 +8812,7 @@ msgstr "未知"
msgid "unlimited"
msgstr "無限"
-#: modules/luci-base/htdocs/luci-static/resources/form.js:3565
+#: modules/luci-base/htdocs/luci-static/resources/form.js:3581
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
@@ -8804,175 +8833,175 @@ msgstr "尚未指定 - 或 -建立:"
msgid "untagged"
msgstr "未選"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:175
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:186
msgid "valid IP address"
msgstr "有效的 IP 位址"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:246
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:257
msgid "valid IP address or prefix"
msgstr "有效的IP位址或固定值"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:294
msgid "valid IPv4 CIDR"
msgstr "有效的 IPv4 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:179
msgid "valid IPv4 address"
msgstr "有效的 IPv4 位址"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:254
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:265
msgid "valid IPv4 address or network"
msgstr "有效的 IPv4 位址或網路"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:378
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:389
msgid "valid IPv4 address:port"
msgstr "有效的 IPv4 位址:阜號"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:317
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:328
msgid "valid IPv4 network"
msgstr "有效的 IPv4 網路"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:277
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:288
msgid "valid IPv4 or IPv6 CIDR"
msgstr "有效的 IPv4 或 IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:267
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:278
msgid "valid IPv4 prefix value (0-32)"
msgstr "有效的IPv4 固定值(0-32)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:289
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:300
msgid "valid IPv6 CIDR"
msgstr "有效的 IPv6 CIDR"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:183
msgid "valid IPv6 address"
msgstr "有效的 IPv6 位址"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:262
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:273
msgid "valid IPv6 address or prefix"
msgstr "有效的IPv6位址或固定值"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:307
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:318
msgid "valid IPv6 host id"
msgstr "有效的IPv6主機編號"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:322
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:333
msgid "valid IPv6 network"
msgstr "有效的 IPV6 網路"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:272
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:283
msgid "valid IPv6 prefix value (0-128)"
msgstr "有效的IPv6固定值 (0-128)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid MAC address"
msgstr "有效的 MAC 位址"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:415
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:426
msgid "valid UCI identifier"
msgstr "有效的UCI識別碼"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:366
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:377
msgid "valid UCI identifier, hostname or IP address range"
msgstr "有效的UCI識別碼, 主機名稱或IP位址"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:387
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:390
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:398
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:401
msgid "valid address:port"
msgstr "有效的位址:阜號"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:537
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:541
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:548
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:552
msgid "valid date (YYYY-MM-DD)"
msgstr "有效日期 (YYYY-MM-DD)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:237
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:248
msgid "valid decimal value"
msgstr "有效的十進制"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:409
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
msgid "valid hexadecimal WEP key"
msgstr "有效的 16 進制 WEP 鑰匙"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:397
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:408
msgid "valid hexadecimal WPA key"
msgstr "有效的 16 進制 WPA 鑰匙"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:383
msgid "valid host:port"
msgstr "有效的主機:埠號"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:359
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:361
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:370
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:372
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
msgid "valid hostname"
msgstr "有效的主機名稱"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:360
msgid "valid hostname or IP address"
msgstr "有效的主機名稱或 IP 位址"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:229
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:240
msgid "valid integer value"
msgstr "有效的整數值"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:344
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:355
msgid "valid multicast MAC address"
msgstr "有效的多播 MAC 位址"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:312
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:323
msgid "valid network in address/netmask notation"
msgstr "依照「位址/網路遮罩」標記法的有效網路"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:512
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:523
msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
msgstr "有效的電話號碼(0-9, \"*\", \"#\", \"!\" or \".\")"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:335
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:346
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:349
msgid "valid port or port range (port1-port2)"
msgstr "有效的埠號或者範圍埠(埠1-埠2)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:327
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:338
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:190
msgid "valid port value"
msgstr "有效的阜值"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:517
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:528
msgid "valid time (HH:MM:SS)"
msgstr "有效的時間 (HH:MM:SS)"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:450
msgid "value between %d and %d characters"
msgstr "介於 %d 和 %d 字間的值"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:420
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:431
msgid "value between %f and %f"
msgstr "介於 %d 和 %d 間的值"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:424
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:435
msgid "value greater or equal to %f"
msgstr "大於或等於 %f 的值"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:428
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:439
msgid "value smaller or equal to %f"
msgstr "小於或等於 %f 的值"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:433
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
msgid "value with %d characters"
msgstr "有 %d 字的值"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:444
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:455
msgid "value with at least %d characters"
msgstr "至少有 %d 字的值"
-#: modules/luci-base/htdocs/luci-static/resources/validation.js:449
+#: modules/luci-base/htdocs/luci-static/resources/validation.js:460
msgid "value with at most %d characters"
msgstr "最多有 %d 字的值"
diff --git a/modules/luci-base/root/www/index.html b/modules/luci-base/root/www/index.html
index 35c0ea0d32..bc3c98fe71 100644
--- a/modules/luci-base/root/www/index.html
+++ b/modules/luci-base/root/www/index.html
@@ -1,11 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
-<meta http-equiv="refresh" content="0; URL=cgi-bin/luci/" />
-</head>
-<body style="background-color: white">
-<a style="color: black; font-family: arial, helvetica, sans-serif;" href="cgi-bin/luci/">LuCI - Lua Configuration Interface</a>
-</body>
+ <head>
+ <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
+ <meta http-equiv="refresh" content="0; URL=cgi-bin/luci/" />
+ <style type="text/css">
+ body { background: white; font-family: arial, helvetica, sans-serif; }
+ a { color: black; }
+
+ @media (prefers-color-scheme: dark) {
+ body { background: black; }
+ a { color: white; }
+ }
+ </style>
+ </head>
+ <body>
+ <a href="cgi-bin/luci/">LuCI - Lua Configuration Interface</a>
+ </body>
</html>
diff --git a/modules/luci-mod-battstatus/po/ro/battstatus.po b/modules/luci-mod-battstatus/po/ro/battstatus.po
index 9200c7c5ec..a74280247b 100644
--- a/modules/luci-mod-battstatus/po/ro/battstatus.po
+++ b/modules/luci-mod-battstatus/po/ro/battstatus.po
@@ -1,23 +1,26 @@
msgid ""
msgstr ""
-"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: \n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2021-11-14 17:23+0000\n"
+"Last-Translator: Simona Iacob <s@zp1.net>\n"
+"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
+"lucimodulesluci-mod-battstatus/ro/>\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
+"X-Generator: Weblate 4.9.1-dev\n"
#: modules/luci-mod-battstatus/htdocs/luci-static/resources/preload/battstatus.js:26
msgid "Charging"
-msgstr ""
+msgstr "Încărcare"
#: modules/luci-mod-battstatus/root/usr/share/rpcd/acl.d/luci-mod-battstatus.json:3
msgid "Grant access to battery status"
-msgstr ""
+msgstr "Acordarea accesului la starea bateriei"
#: modules/luci-mod-battstatus/htdocs/luci-static/resources/preload/battstatus.js:26
msgid "Not Charging"
-msgstr ""
+msgstr "Nu se încarcă"
diff --git a/modules/luci-mod-dashboard/po/da/dashboard.po b/modules/luci-mod-dashboard/po/da/dashboard.po
new file mode 100644
index 0000000000..099a32522b
--- /dev/null
+++ b/modules/luci-mod-dashboard/po/da/dashboard.po
@@ -0,0 +1,220 @@
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2021-11-23 20:37+0000\n"
+"Last-Translator: drax red <drax@outlook.dk>\n"
+"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
+"lucimodulesluci-mod-dashboard/da/>\n"
+"Language: da\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.10-dev\n"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
+msgid "Active"
+msgstr "Aktiv"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:306
+msgid "Architecture"
+msgstr "Arkitektur"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
+msgid "BSSID"
+msgstr "BSSID"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
+msgid "Bitrate"
+msgstr "Bitrate"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
+msgid "Channel"
+msgstr "Kanal"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:175
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:215
+msgid "Connected"
+msgstr "Tilsluttet"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:181
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:221
+msgid "Connected since"
+msgstr "Tilsluttet siden"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
+msgid "DHCP Devices"
+msgstr "DHCP-enheder"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:205
+msgid "DNSv4"
+msgstr "DNSv4"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:251
+msgid "DNSv6"
+msgstr "DNSv6"
+
+#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
+msgid "Dashboard"
+msgstr "Dashboard"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
+msgid "Devices"
+msgstr "Enheder"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
+msgid "Devices Connected"
+msgstr "Enheder tilsluttet"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
+msgid "Down."
+msgstr "Ned."
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
+msgid "Download"
+msgstr "Download"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
+msgid "Encryption"
+msgstr "Kryptering"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:311
+msgid "Firmware Version"
+msgstr "Firmware-version"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
+msgid "GHz"
+msgstr "GHz"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:199
+msgid "GatewayV4"
+msgstr "GatewayV4"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:245
+msgid "GatewayV6"
+msgstr "GatewayV6"
+
+#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
+msgid "Grant access to DHCP status display"
+msgstr "Giver adgang til visning af DHCP-status"
+
+#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
+msgid "Grant access to main status display"
+msgstr "Giver adgang til hovedstatusdisplayet"
+
+#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
+msgid "Grant access to the system route status"
+msgstr "Giv adgang til systemets rutestatus"
+
+#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
+msgid "Grant access to wireless status display"
+msgstr "Giv adgang til trådløs statusvisning"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
+msgid "Hostname"
+msgstr "Værtsnavn"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
+msgid "IP Address"
+msgstr "IP-adresse"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:193
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
+msgid "IPv4"
+msgstr "IPv4"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:172
+msgid "IPv4 Internet"
+msgstr "IPv4 Internet"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:239
+msgid "IPv6"
+msgstr "IPv6"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:212
+msgid "IPv6 Internet"
+msgstr "IPv6 Internet"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:233
+msgid "IPv6 prefix"
+msgstr "IPv6-præfiks"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
+msgid "Internet"
+msgstr "Internet"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:296
+msgid "Kernel Version"
+msgstr "Kerneversion"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:291
+msgid "Local Time"
+msgstr "Lokal tid"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
+msgid "MAC"
+msgstr "MAC"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
+msgid "Mac"
+msgstr "Mac"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
+msgid "Mbit/s"
+msgstr "Mbit/s"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:301
+msgid "Model"
+msgstr "Model"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:151
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:158
+msgid "Not connected"
+msgstr "Ikke tilsluttet"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:187
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:227
+msgid "Protocol"
+msgstr "Protokol"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
+msgid "SSID"
+msgstr "SSID"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
+msgid "Signal"
+msgstr "Signal"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
+msgid "System"
+msgstr "System"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
+msgid "Up."
+msgstr "Op."
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
+msgid "Upload"
+msgstr "Upload"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:286
+msgid "Uptime"
+msgstr "Oppetid"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
+msgid "Wireless"
+msgstr "Trådløs"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
+msgid "no"
+msgstr "nej"
+
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
+#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
+msgid "yes"
+msgstr "ja"
diff --git a/modules/luci-mod-dashboard/po/it/dashboard.po b/modules/luci-mod-dashboard/po/it/dashboard.po
index e2bca573f9..6a0b22e352 100644
--- a/modules/luci-mod-dashboard/po/it/dashboard.po
+++ b/modules/luci-mod-dashboard/po/it/dashboard.po
@@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"PO-Revision-Date: 2021-10-09 17:14+0000\n"
-"Last-Translator: Pierfrancesco Passerini <p.passerini@gmail.com>\n"
+"PO-Revision-Date: 2021-11-18 15:14+0000\n"
+"Last-Translator: Giovanni Giacobbi <giovanni@giacobbi.net>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
"lucimodulesluci-mod-dashboard/it/>\n"
"Language: it\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.9-dev\n"
+"X-Generator: Weblate 4.9.1-dev\n"
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
msgid "Active"
@@ -209,7 +209,7 @@ msgstr "Uptime"
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
msgid "Wireless"
-msgstr "WiFi"
+msgstr "Wireless"
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
diff --git a/modules/luci-mod-dashboard/po/ro/dashboard.po b/modules/luci-mod-dashboard/po/ro/dashboard.po
index 786df0771c..b2d036af85 100644
--- a/modules/luci-mod-dashboard/po/ro/dashboard.po
+++ b/modules/luci-mod-dashboard/po/ro/dashboard.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"PO-Revision-Date: 2021-11-07 15:53+0000\n"
+"PO-Revision-Date: 2021-11-22 19:53+0000\n"
"Last-Translator: CRISTIAN ANDREI <cristianvdr@gmail.com>\n"
"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
"lucimodulesluci-mod-dashboard/ro/>\n"
@@ -11,7 +11,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
-"X-Generator: Weblate 4.9-dev\n"
+"X-Generator: Weblate 4.10-dev\n"
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
msgid "Active"
@@ -51,7 +51,7 @@ msgstr "Dispozitive DHCP"
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:205
msgid "DNSv4"
-msgstr "DNSv4"
+msgstr "DNSV4"
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:251
msgid "DNSv6"
@@ -75,7 +75,7 @@ msgstr "Oprit."
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
msgid "Download"
-msgstr ""
+msgstr "Descărcați"
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
msgid "Encryption"
@@ -166,7 +166,7 @@ msgstr "Mac"
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
msgid "Mbit/s"
-msgstr "Mbit/s"
+msgstr "Mbiți/s"
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:301
msgid "Model"
@@ -201,7 +201,7 @@ msgstr ""
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
msgid "Upload"
-msgstr ""
+msgstr "Încărcați"
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:286
msgid "Uptime"
@@ -210,7 +210,7 @@ msgstr "Timp de funcționare"
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
msgid "Wireless"
-msgstr "Fară fir"
+msgstr "Fără fir"
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js
index 371d82770e..52ad6e9b6f 100644
--- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js
+++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js
@@ -1177,7 +1177,7 @@ return view.extend({
var node = E('div', { 'class': 'ifacebox' }, [
E('div', {
'class': 'ifacebox-head',
- 'style': 'background-color:%s'.format(zone ? zone.getColor() : '#EEEEEE'),
+ 'style': firewall.getZoneColorStyle(zone),
'title': zone ? _('Part of zone %q').format(zone.getName()) : _('No zone assigned')
}, E('strong', net.getName().toUpperCase())),
E('div', {
diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js
new file mode 100644
index 0000000000..f6a3cef036
--- /dev/null
+++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js
@@ -0,0 +1,51 @@
+'use strict';
+'require baseclass';
+'require rpc';
+
+var callSystemInfo = rpc.declare({
+ object: 'system',
+ method: 'info'
+});
+
+function progressbar(value, max, byte) {
+ var vn = parseInt(value) || 0,
+ mn = parseInt(max) || 100,
+ fv = byte ? String.format('%1024.2mB', value) : value,
+ fm = byte ? String.format('%1024.2mB', max) : max,
+ pc = Math.floor((100 / mn) * vn);
+
+ return E('div', {
+ 'class': 'cbi-progressbar',
+ 'title': '%s / %s (%d%%)'.format(fv, fm, pc)
+ }, E('div', { 'style': 'width:%.2f%%'.format(pc) }));
+}
+
+return baseclass.extend({
+ title: _('Storage'),
+
+ load: function() {
+ return L.resolveDefault(callSystemInfo(), {});
+ },
+
+ render: function(systeminfo) {
+ var root = L.isObject(systeminfo.root) ? systeminfo.root : {},
+ tmp = L.isObject(systeminfo.tmp) ? systeminfo.tmp : {};
+
+ var fields = [];
+ fields.push(_('Disk space'), root.used*1024, root.total*1024);
+ fields.push(_('Temp space'), tmp.used*1024, tmp.total*1024);
+
+ var table = E('table', { 'class': 'table' });
+
+ for (var i = 0; i < fields.length; i += 3) {
+ table.appendChild(E('tr', { 'class': 'tr' }, [
+ E('td', { 'class': 'td left', 'width': '33%' }, [ fields[i] ]),
+ E('td', { 'class': 'td left' }, [
+ (fields[i + 1] != null) ? progressbar(fields[i + 1], fields[i + 2], true) : '?'
+ ])
+ ]));
+ }
+
+ return table;
+ }
+});