luci-app-firewall: rework rule descriptions, deduplicate code

Use a simple custom format string DSL to assemble the rule description
texts in the overview page.

Also move common code for shared, complex cbi options to the firewall
tool class.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2020-01-19 16:08:47 +01:00
parent 601c4ee01e
commit 7944b0a90b
93 changed files with 16817 additions and 15902 deletions

View file

@ -36,10 +36,12 @@ var protocols = [
'esp', 50, 'IPSEC-ESP', 'esp', 50, 'IPSEC-ESP',
'ah', 51, 'IPSEC-AH', 'ah', 51, 'IPSEC-AH',
'skip', 57, 'SKIP', 'skip', 57, 'SKIP',
'icmpv6', 58, 'IPv6-ICMP',
'ipv6-icmp', 58, 'IPv6-ICMP', 'ipv6-icmp', 58, 'IPv6-ICMP',
'ipv6-nonxt', 59, 'IPv6-NoNxt', 'ipv6-nonxt', 59, 'IPv6-NoNxt',
'ipv6-opts', 60, 'IPv6-Opts', 'ipv6-opts', 60, 'IPv6-Opts',
'rspf', 73, 'RSPF', 'CPHB', 'rspf', 73, 'RSPF',
'rspf', 73, 'CPHB',
'vmtp', 81, 'VMTP', 'vmtp', 81, 'VMTP',
'eigrp', 88, 'EIGRP', 'eigrp', 88, 'EIGRP',
'ospf', 89, 'OSPFIGP', 'ospf', 89, 'OSPFIGP',
@ -54,6 +56,8 @@ var protocols = [
'isis', 124, 'ISIS', 'isis', 124, 'ISIS',
'sctp', 132, 'SCTP', 'sctp', 132, 'SCTP',
'fc', 133, 'FC', 'fc', 133, 'FC',
'mh', 135, 'Mobility-Header',
'ipv6-mh', 135, 'Mobility-Header',
'mobility-header', 135, 'Mobility-Header', 'mobility-header', 135, 'Mobility-Header',
'udplite', 136, 'UDPLite', 'udplite', 136, 'UDPLite',
'mpls-in-ip', 137, 'MPLS-in-IP', 'mpls-in-ip', 137, 'MPLS-in-IP',
@ -72,244 +76,185 @@ function lookupProto(x) {
for (var i = 0; i < protocols.length; i += 3) for (var i = 0; i < protocols.length; i += 3)
if (s == protocols[i] || s == protocols[i+1]) if (s == protocols[i] || s == protocols[i+1])
return [ protocols[i+1], protocols[i+2] ]; return [ protocols[i+1], protocols[i+2], protocols[i] ];
return [ -1, x ]; return [ -1, x, x ];
} }
return L.Class.extend({ return L.Class.extend({
fmt_neg: function(x) { fmt: function(fmtstr, args, values) {
var rv = E([]), var repl = [],
v = (typeof(x) == 'string') ? x.replace(/^ *! */, '') : ''; wrap = false,
tokens = [];
L.dom.append(rv, (v != '' && v != x) ? [ _('not') + ' ', v ] : [ '', x ]); if (values == null) {
return rv; values = [];
}, wrap = true;
fmt_mac: function(x) {
var rv = E([]), l = L.toArray(x);
if (l.length == 0)
return null;
L.dom.append(rv, [ _('MAC') + ' ' ]);
for (var i = 0; i < l.length; i++) {
var n = this.fmt_neg(l[i]);
L.dom.append(rv, (i > 0) ? [ ', ', n ] : n);
} }
if (rv.childNodes.length > 2) var get = function(args, key) {
rv.firstChild.data = _('MACs') + ' '; var names = key.trim().split(/\./),
obj = args,
ctx = obj;
return rv; for (var i = 0; i < names.length; i++) {
}, if (!L.isObject(obj))
return null;
fmt_port: function(x, d) { ctx = obj;
var rv = E([]), l = L.toArray(x); obj = obj[names[i]];
if (l.length == 0) {
if (d) {
L.dom.append(rv, E('var', {}, d));
return rv;
} }
return null; if (typeof(obj) == 'function')
} return obj.call(ctx);
L.dom.append(rv, [ _('port') + ' ' ]); return obj;
};
for (var i = 0; i < l.length; i++) { var isset = function(val) {
var n = this.fmt_neg(l[i]), if (L.isObject(val) && !L.dom.elem(val)) {
m = n.lastChild.data.match(/^(\d+)\D+(\d+)$/); for (var k in val)
if (val.hasOwnProperty(k))
return true;
if (i > 0) return false;
L.dom.append(rv, [ ', ' ]); }
else if (Array.isArray(val)) {
if (m) { return (val.length > 0);
rv.firstChild.data = _('ports') + ' ';
L.dom.append(rv, E('var', [ n.firstChild, m[1], '-', m[2] ]));
} }
else { else {
L.dom.append(rv, E('var', {}, n)); return (val !== null && val !== undefined && val !== '' && val !== false);
}
};
var parse = function(tokens, text) {
if (L.dom.elem(text)) {
tokens.push('<span data-fmt-placeholder="%d"></span>'.format(values.length));
values.push(text);
}
else {
tokens.push(String(text).replace(/\\(.)/g, '$1'));
}
};
for (var i = 0, last = 0; i <= fmtstr.length; i++) {
if (fmtstr.charAt(i) == '%' && fmtstr.charAt(i + 1) == '{') {
if (i > last)
parse(tokens, fmtstr.substring(last, i));
var j = i + 1, nest = 0;
var subexpr = [];
for (var off = j + 1, esc = false; j <= fmtstr.length; j++) {
var ch = fmtstr.charAt(j);
if (esc) {
esc = false;
}
else if (ch == '\\') {
esc = true;
}
else if (ch == '{') {
nest++;
}
else if (ch == '}') {
if (--nest == 0) {
subexpr.push(fmtstr.substring(off, j));
break;
}
}
else if (ch == '?' || ch == ':' || ch == '#') {
if (nest == 1) {
subexpr.push(fmtstr.substring(off, j));
subexpr.push(ch);
off = j + 1;
}
}
}
var varname = subexpr[0].trim(),
op1 = (subexpr[1] != null) ? subexpr[1] : '?',
if_set = (subexpr[2] != null && subexpr[2] != '') ? subexpr[2] : '%{' + varname + '}',
op2 = (subexpr[3] != null) ? subexpr[3] : ':',
if_unset = (subexpr[4] != null) ? subexpr[4] : '';
/* Invalid expression */
if (nest != 0 || subexpr.length > 5 || varname == '') {
return fmtstr;
}
/* enumeration */
else if (op1 == '#' && subexpr.length == 3) {
var items = L.toArray(get(args, varname));
for (var k = 0; k < items.length; k++) {
tokens.push.apply(tokens, this.fmt(if_set, Object.assign({}, args, {
first: k == 0,
next: k > 0,
last: (k + 1) == items.length,
item: items[k]
}), values));
}
}
/* ternary expression */
else if (op1 == '?' && op2 == ':' && (subexpr.length == 1 || subexpr.length == 3 || subexpr.length == 5)) {
var val = get(args, varname);
if (subexpr.length == 1)
parse(tokens, isset(val) ? val : '');
else if (isset(val))
tokens.push.apply(tokens, this.fmt(if_set, args, values));
else
tokens.push.apply(tokens, this.fmt(if_unset, args, values));
}
/* unrecognized command */
else {
return fmtstr;
}
last = j + 1;
i = j;
}
else if (i >= fmtstr.length) {
if (i > last)
parse(tokens, fmtstr.substring(last, i));
} }
} }
if (rv.childNodes.length > 2) if (wrap) {
rv.firstChild.data = _('ports') + ' '; var node = E('span', {}, tokens.join('')),
repl = node.querySelectorAll('span[data-fmt-placeholder]');
return rv; for (var i = 0; i < repl.length; i++)
}, repl[i].parentNode.replaceChild(values[repl[i].getAttribute('data-fmt-placeholder')], repl[i]);
fmt_ip: function(x, d) { return node;
var rv = E([]), l = L.toArray(x);
if (l.length == 0) {
if (d) {
L.dom.append(rv, E('var', {}, d));
return rv;
}
return null;
}
L.dom.append(rv, [ _('IP') + ' ' ]);
for (var i = 0; i < l.length; i++) {
var n = this.fmt_neg(l[i]),
m = n.lastChild.data.match(/^(\S+)\/(\d+\.\S+)$/);
if (i > 0)
L.dom.append(rv, [ ', ' ]);
if (m)
rv.firstChild.data = _('IP range') + ' ';
else if (n.lastChild.data.match(/^[a-zA-Z0-9_]+$/))
rv.firstChild.data = _('Network') + ' ';
L.dom.append(rv, E('var', {}, n));
}
if (rv.childNodes.length > 2)
rv.firstChild.data = _('IPs') + ' ';
return rv;
},
fmt_zone: function(x, d) {
if (x == '*')
return E('var', _('any zone'));
else if (x != null && x != '')
return E('var', {}, [ x ]);
else if (d != null && d != '')
return E('var', {}, d);
else
return null;
},
fmt_icmp_type: function(x) {
var rv = E([]), l = L.toArray(x);
if (l.length == 0)
return null;
L.dom.append(rv, [ _('type') + ' ' ]);
for (var i = 0; i < l.length; i++) {
var n = this.fmt_neg(l[i]);
if (i > 0)
L.dom.append(rv, [ ', ' ]);
L.dom.append(rv, E('var', {}, n));
}
if (rv.childNodes.length > 2)
rv.firstChild.data = _('types') + ' ';
return rv;
},
fmt_family: function(family) {
if (family == 'ipv4')
return _('IPv4');
else if (family == 'ipv6')
return _('IPv6');
else
return _('IPv4 and IPv6');
},
fmt_proto: function(x, icmp_types) {
var rv = E([]), l = L.toArray(x);
if (l.length == 0)
return null;
var t = this.fmt_icmp_type(icmp_types);
for (var i = 0; i < l.length; i++) {
var n = this.fmt_neg(l[i]),
p = lookupProto(n.lastChild.data);
if (n.lastChild.data == 'all')
continue;
if (i > 0)
L.dom.append(rv, [ ', ' ]);
if (t && (p[0] == 1 || p[0] == 58))
L.dom.append(rv, [ _('%s%s with %s').format(n.firstChild.data, p[1], ''), t ]);
else
L.dom.append(rv, [ n.firstChild.data, p[1] ]);
}
return rv;
},
fmt_limit: function(limit, burst) {
if (limit == null || limit == '')
return null;
var m = String(limit).match(/^(\d+)\/(\w+)$/),
u = m[2] || 'second',
l = +(m[1] || limit),
b = +burst;
if (!isNaN(l)) {
if (u.match(/^s/))
u = _('second');
else if (u.match(/^m/))
u = _('minute');
else if (u.match(/^h/))
u = _('hour');
else if (u.match(/^d/))
u = _('day');
if (!isNaN(b) && b > 0)
return E('<span>' +
_('<var>%d</var> pkts. per <var>%s</var>, burst <var>%d</var> pkts.').format(l, u, b) +
'</span>');
else
return E('<span>' +
_('<var>%d</var> pkts. per <var>%s</var>').format(l, u) +
'</span>');
}
},
fmt_target: function(x, src, dest) {
if (src == null || src == '') {
if (x == 'ACCEPT')
return _('Accept output');
else if (x == 'REJECT')
return _('Refuse output');
else if (x == 'NOTRACK')
return _('Do not track output');
else /* if (x == 'DROP') */
return _('Discard output');
}
else if (dest != null && dest != '') {
if (x == 'ACCEPT')
return _('Accept forward');
else if (x == 'REJECT')
return _('Refuse forward');
else if (x == 'NOTRACK')
return _('Do not track forward');
else /* if (x == 'DROP') */
return _('Discard forward');
} }
else { else {
if (x == 'ACCEPT') return tokens;
return _('Accept input');
else if (x == 'REJECT' )
return _('Refuse input');
else if (x == 'NOTRACK')
return _('Do not track input');
else /* if (x == 'DROP') */
return _('Discard input');
} }
}, },
map_invert: function(v, fn) {
return L.toArray(v).map(function(v) {
v = String(v);
if (fn != null && typeof(v[fn]) == 'function')
v = v[fn].call(v);
return {
ival: v,
inv: v.charAt(0) == '!',
val: v.replace(/^!\s*/, '')
};
});
},
lookupProto: lookupProto,
addDSCPOption: function(s, is_target) { addDSCPOption: function(s, is_target) {
var o = s.taboption(is_target ? 'general' : 'advanced', form.Value, is_target ? 'set_dscp' : 'dscp', var o = s.taboption(is_target ? 'general' : 'advanced', form.Value, is_target ? 'set_dscp' : 'dscp',
is_target ? _('DSCP mark') : _('Match DSCP'), is_target ? _('DSCP mark') : _('Match DSCP'),
@ -442,5 +387,208 @@ return L.Class.extend({
o.depends({ limit: null, '!reverse': true }); o.depends({ limit: null, '!reverse': true });
return o; return o;
} },
transformHostHints: function(family, hosts) {
var choice_values = [], choice_labels = {};
if (!family || family == 'ipv4') {
L.sortedKeys(hosts, 'ipv4', 'addr').forEach(function(mac) {
var val = hosts[mac].ipv4,
txt = hosts[mac].name || mac;
choice_values.push(val);
choice_labels[val] = E([], [ val, ' (', E('strong', {}, [txt]), ')' ]);
});
}
if (!family || family == 'ipv6') {
L.sortedKeys(hosts, 'ipv6', 'addr').forEach(function(mac) {
var val = hosts[mac].ipv6,
txt = hosts[mac].name || mac;
choice_values.push(val);
choice_labels[val] = E([], [ val, ' (', E('strong', {}, [txt]), ')' ]);
});
}
return [choice_values, choice_labels];
},
updateHostHints: function(map, section_id, option, family, hosts) {
var opt = map.lookupOption(option, section_id)[0].getUIElement(section_id),
choices = this.transformHostHints(family, hosts);
opt.clearChoices();
opt.addChoices(choices[0], choices[1]);
},
addIPOption: function(s, tab, name, label, description, family, hosts, multiple) {
var o = s.taboption(tab, multiple ? form.DynamicList : form.Value, name, label, description);
o.modalonly = true;
o.datatype = 'list(neg(ipmask))';
o.placeholder = multiple ? _('-- add IP --') : _('any');
if (family != null) {
var choices = this.transformHostHints(family, hosts);
for (var i = 0; i < choices[0].length; i++)
o.value(choices[0][i], choices[1][choices[0][i]]);
}
/* force combobox rendering */
o.transformChoices = function() {
return this.super('transformChoices', []) || {};
};
return o;
},
addLocalIPOption: function(s, tab, name, label, description, devices) {
var o = s.taboption(tab, form.Value, name, label, description);
o.modalonly = true;
o.datatype = 'ip4addr("nomask")';
o.placeholder = _('any');
L.sortedKeys(devices, 'name').forEach(function(dev) {
var ip4addrs = devices[dev].ipaddrs;
if (!L.isObject(devices[dev].flags) || !Array.isArray(ip4addrs) || devices[dev].flags.loopback)
return;
for (var i = 0; i < ip4addrs.length; i++) {
if (!L.isObject(ip4addrs[i]) || !ip4addrs[i].address)
continue;
o.value(ip4addrs[i].address, E([], [
ip4addrs[i].address, ' (', E('strong', {}, [dev]), ')'
]));
}
});
return o;
},
addMACOption: function(s, tab, name, label, description, hosts) {
var o = s.taboption(tab, form.DynamicList, name, label, description);
o.modalonly = true;
o.datatype = 'list(macaddr)';
o.placeholder = _('-- add MAC --');
L.sortedKeys(hosts).forEach(function(mac) {
o.value(mac, E([], [ mac, ' (', E('strong', {}, [
hosts[mac].name || hosts[mac].ipv4 || hosts[mac].ipv6 || '?'
]), ')' ]));
});
return o;
},
CBIProtocolSelect: form.MultiValue.extend({
__name__: 'CBI.ProtocolSelect',
addChoice: function(value, label) {
if (!Array.isArray(this.keylist) || this.keylist.indexOf(value) == -1)
this.value(value, label);
},
load: function(section_id) {
var cfgvalue = L.toArray(this.super('load', [section_id]) || this.default).sort();
['all', 'tcp', 'udp', 'icmp'].concat(cfgvalue).forEach(L.bind(function(value) {
switch (value) {
case 'all':
case 'any':
case '*':
this.addChoice('all', _('Any'));
break;
case 'tcpudp':
this.addChoice('tcp', 'TCP');
this.addChoice('udp', 'UDP');
break;
default:
var m = value.match(/^(0x[0-9a-f]{1,2}|[0-9]{1,3})$/),
p = lookupProto(m ? +m[1] : value);
this.addChoice(p[2], p[1]);
break;
}
}, this));
return cfgvalue;
},
renderWidget: function(section_id, option_index, cfgvalue) {
var value = (cfgvalue != null) ? cfgvalue : this.default,
choices = this.transformChoices();
var widget = new ui.Dropdown(L.toArray(value), choices, {
id: this.cbid(section_id),
sort: this.keylist,
multiple: true,
optional: false,
display_items: 10,
dropdown_items: -1,
create: true,
validate: function(value) {
var v = L.toArray(value);
for (var i = 0; i < v.length; i++) {
if (v[i] == 'all')
continue;
var m = v[i].match(/^(0x[0-9a-f]{1,2}|[0-9]{1,3})$/);
if (m ? (+m[1] > 255) : (lookupProto(v[i])[0] == -1))
return _('Unrecognized protocol');
}
return true;
}
});
widget.createChoiceElement = function(sb, value) {
var m = value.match(/^(0x[0-9a-f]{1,2}|[0-9]{1,3})$/),
p = lookupProto(lookupProto(m ? +m[1] : value)[0]);
return ui.Dropdown.prototype.createChoiceElement.call(this, sb, p[2], p[1]);
};
widget.createItems = function(sb, value) {
var values = L.toArray(value).map(function(value) {
var m = value.match(/^(0x[0-9a-f]{1,2}|[0-9]{1,3})$/),
p = lookupProto(m ? +m[1] : value);
return (p[0] > -1) ? p[2] : value;
});
return ui.Dropdown.prototype.createItems.call(this, sb, values.join(' '));
};
widget.toggleItem = function(sb, li) {
var value = li.getAttribute('data-value'),
toggleFn = ui.Dropdown.prototype.toggleItem;
toggleFn.call(this, sb, li);
if (value == 'all') {
var items = li.parentNode.querySelectorAll('li[data-value]');
for (var j = 0; j < items.length; j++)
if (items[j] !== li)
toggleFn.call(this, sb, items[j], false);
}
else {
toggleFn.call(this, sb, li.parentNode.querySelector('li[data-value="all"]'), false);
}
};
return widget.render();
}
})
}); });

View file

@ -3,73 +3,85 @@
'require rpc'; 'require rpc';
'require uci'; 'require uci';
'require form'; 'require form';
'require firewall as fwmodel';
'require tools.firewall as fwtool'; 'require tools.firewall as fwtool';
'require tools.widgets as widgets'; 'require tools.widgets as widgets';
function fmt(fmt /*, ...*/) { function rule_proto_txt(s, ctHelpers) {
var repl = [], wrap = false; var proto = L.toArray(uci.get('firewall', s, 'proto')).filter(function(p) {
return (p != '*' && p != 'any' && p != 'all');
}).map(function(p) {
var pr = fwtool.lookupProto(p);
return {
num: pr[0],
name: pr[1],
types: (pr[0] == 1 || pr[0] == 58) ? L.toArray(uci.get('firewall', s, 'icmp_type')) : null
};
});
for (var i = 1; i < arguments.length; i++) { m = String(uci.get('firewall', s, 'helper') || '').match(/^(!\s*)?(\S+)$/);
if (L.dom.elem(arguments[i])) { var h = m ? {
switch (arguments[i].nodeType) { val: m[0].toUpperCase(),
case 1: inv: m[1],
repl.push(arguments[i].outerHTML); name: (ctHelpers.filter(function(ctH) { return ctH.name.toLowerCase() == m[2].toLowerCase() })[0] || {}).description
wrap = true; } : null;
break;
case 3: m = String(uci.get('firewall', s, 'mark')).match(/^(!\s*)?(0x[0-9a-f]{1,8}|[0-9]{1,10})(?:\/(0x[0-9a-f]{1,8}|[0-9]{1,10}))?$/i);
repl.push(arguments[i].data); var f = m ? {
break; val: m[0].toUpperCase().replace(/X/g, 'x'),
inv: m[1],
num: '0x%02X'.format(+m[2]),
mask: m[3] ? '0x%02X'.format(+m[3]) : null
} : null;
case 11: return fwtool.fmt(_('Incoming IPv4%{proto?, protocol %{proto#%{next?, }%{item.types?<var class="cbi-tooltip-container">%{item.name}<span class="cbi-tooltip">ICMP with types %{item.types#%{next?, }<var>%{item}</var>}</span></var>:<var>%{item.name}</var>}}}%{mark?, mark <var%{mark.inv? data-tooltip="Match fwmarks except %{mark.num}%{mark.mask? with mask %{mark.mask}}.":%{mark.mask? data-tooltip="Mask fwmark value with %{mark.mask} before compare."}}>%{mark.val}</var>}%{helper?, helper %{helper.inv?<var data-tooltip="Match any helper except &quot;%{helper.name}&quot;">%{helper.val}</var>:<var data-tooltip="%{helper.name}">%{helper.val}</var>}}'), {
var span = E('span'); proto: proto,
span.appendChild(arguments[i]); helper: h,
repl.push(span.innerHTML); mark: f
wrap = true; });
break;
default:
repl.push('');
}
}
else {
repl.push(arguments[i]);
}
}
var rv = fmt.format.apply(fmt, repl);
return wrap ? E('span', rv) : rv;
} }
function forward_proto_txt(s) { function rule_src_txt(s, hosts) {
return fmt('%s-%s', var z = uci.get('firewall', s, 'src');
fwtool.fmt_family('ipv4'),
fwtool.fmt_proto(uci.get('firewall', s, 'proto'), return fwtool.fmt(_('From %{src}%{src_ip?, IP %{src_ip#%{next?, }<var%{item.inv? data-tooltip="Match IP addresses except %{item.val}."}>%{item.ival}</var>}}%{src_port?, port %{src_port#%{next?, }<var%{item.inv? data-tooltip="Match ports except %{item.val}."}>%{item.ival}</var>}}%{src_mac?, MAC %{src_mac#%{next?, }<var%{item.inv? data-tooltip="Match MACs except %{item.val}%{item.hint.name? a.k.a. %{item.hint.name}}.":%{item.hint.name? data-tooltip="%{item.hint.name}"}}>%{item.ival}</var>}}'), {
uci.get('firewall', s, 'icmp_type')) || 'TCP+UDP'); src: E('span', { 'class': 'zonebadge', 'style': 'background-color:' + fwmodel.getColorForName((z && z != '*') ? z : null) }, [(z == '*') ? E('em', _('any zone')) : (z || E('em', _('this device')))]),
src_ip: fwtool.map_invert(uci.get('firewall', s, 'src_ip'), 'toLowerCase'),
src_mac: fwtool.map_invert(uci.get('firewall', s, 'src_mac'), 'toUpperCase').map(function(v) { return Object.assign(v, { hint: hosts[v.val] }) }),
src_port: fwtool.map_invert(uci.get('firewall', s, 'src_port'))
});
} }
function forward_src_txt(s) { function rule_dest_txt(s) {
var z = fwtool.fmt_zone(uci.get('firewall', s, 'src'), _('any zone')), return fwtool.fmt(_('To %{dest}%{dest_ip?, IP %{dest_ip#%{next?, }<var%{item.inv? data-tooltip="Match IP addresses except %{item.val}."}>%{item.ival}</var>}}%{dest_port?, port %{dest_port#%{next?, }<var%{item.inv? data-tooltip="Match ports except %{item.val}."}>%{item.ival}</var>}}'), {
a = fwtool.fmt_ip(uci.get('firewall', s, 'src_ip'), _('any host')), dest: E('span', { 'class': 'zonebadge', 'style': 'background-color:' + fwmodel.getColorForName(null) }, [E('em', _('this device'))]),
p = fwtool.fmt_port(uci.get('firewall', s, 'src_port')), dest_ip: fwtool.map_invert(uci.get('firewall', s, 'src_dip'), 'toLowerCase'),
m = fwtool.fmt_mac(uci.get('firewall', s, 'src_mac')); dest_port: fwtool.map_invert(uci.get('firewall', s, 'src_dport'))
});
if (p && m)
return fmt(_('From %s in %s with source %s and %s'), a, z, p, m);
else if (p || m)
return fmt(_('From %s in %s with source %s'), a, z, p || m);
else
return fmt(_('From %s in %s'), a, z);
} }
function forward_via_txt(s) { function rule_limit_txt(s) {
var a = fwtool.fmt_ip(uci.get('firewall', s, 'src_dip'), _('any router IP')), var m = String(uci.get('firewall', s, 'limit')).match(/^(\d+)\/([smhd])\w*$/i),
p = fwtool.fmt_port(uci.get('firewall', s, 'src_dport')); l = m ? {
num: +m[1],
unit: ({ s: _('second'), m: _('minute'), h: _('hour'), d: _('day') })[m[2]],
burst: uci.get('firewall', s, 'limit_burst')
} : null;
if (p) if (!l)
return fmt(_('Via %s at %s'), a, p); return '';
else
return fmt(_('Via %s'), a); return fwtool.fmt(_('Limit matching to <var>%{limit.num}</var> packets per <var>%{limit.unit}</var>%{limit.burst? burst <var>%{limit.burst}</var>}'), { limit: l });
}
function rule_target_txt(s) {
var z = uci.get('firewall', s, 'dest');
return fwtool.fmt(_('<var data-tooltip="DNAT">Forward</var> to %{dest}%{dest_ip? IP <var>%{dest_ip}</var>}%{dest_port? port <var>%{dest_port}</var>}'), {
dest: E('span', { 'class': 'zonebadge', 'style': 'background-color:' + fwmodel.getColorForName((z && z != '*') ? z : null) }, [(z == '*') ? E('em', _('any zone')) : (z || E('em', _('this device')))]),
dest_ip: (uci.get('firewall', s, 'dest_ip') || '').toLowerCase(),
dest_port: uci.get('firewall', s, 'dest_port')
});
} }
return L.view.extend({ return L.view.extend({
@ -85,16 +97,24 @@ return L.view.extend({
expect: { result: [] } expect: { result: [] }
}), }),
callNetworkDevices: rpc.declare({
object: 'luci-rpc',
method: 'getNetworkDevices',
expect: { '': {} }
}),
load: function() { load: function() {
return Promise.all([ return Promise.all([
this.callHostHints(), this.callHostHints(),
this.callConntrackHelpers() this.callConntrackHelpers(),
this.callNetworkDevices()
]); ]);
}, },
render: function(data) { render: function(data) {
var hosts = data[0], var hosts = data[0],
ctHelpers = data[1], ctHelpers = data[1],
devs = data[2],
m, s, o; m, s, o;
m = new form.Map('firewall', _('Firewall - Port Forwards'), m = new form.Map('firewall', _('Firewall - Port Forwards'),
@ -134,24 +154,19 @@ return L.view.extend({
o.modalonly = false; o.modalonly = false;
o.textvalue = function(s) { o.textvalue = function(s) {
return E('small', [ return E('small', [
forward_proto_txt(s), E('br'), rule_proto_txt(s, ctHelpers), E('br'),
forward_src_txt(s), E('br'), rule_src_txt(s, hosts), E('br'),
forward_via_txt(s) rule_dest_txt(s), E('br'),
rule_limit_txt(s)
]); ]);
}; };
o = s.option(form.ListValue, '_dest', _('Forward to')); o = s.option(form.ListValue, '_dest', _('Action'));
o.modalonly = false; o.modalonly = false;
o.textvalue = function(s) { o.textvalue = function(s) {
var z = fwtool.fmt_zone(uci.get('firewall', s, 'dest'), _('any zone')), return E('small', [
a = fwtool.fmt_ip(uci.get('firewall', s, 'dest_ip'), _('any host')), rule_target_txt(s)
p = fwtool.fmt_port(uci.get('firewall', s, 'dest_port')) || ]);
fwtool.fmt_port(uci.get('firewall', s, 'src_dport'));
if (p)
return fmt(_('%s, %s in %s'), a, p, z);
else
return fmt(_('%s in %s'), a, z);
}; };
o = s.option(form.Flag, 'enabled', _('Enable')); o = s.option(form.Flag, 'enabled', _('Enable'));
@ -159,18 +174,9 @@ return L.view.extend({
o.default = o.enabled; o.default = o.enabled;
o.editable = true; o.editable = true;
o = s.taboption('general', form.Value, 'proto', _('Protocol')); o = s.taboption('general', fwtool.CBIProtocolSelect, 'proto', _('Protocol'));
o.modalonly = true; o.modalonly = true;
o.default = 'tcp udp'; o.default = 'tcp udp';
o.value('tcp udp', 'TCP+UDP');
o.value('tcp', 'TCP');
o.value('udp', 'UDP');
o.value('icmp', 'ICMP');
o.cfgvalue = function(/* ... */) {
var v = this.super('cfgvalue', arguments);
return (v == 'tcpudp') ? 'tcp udp' : v;
};
o = s.taboption('general', widgets.ZoneSelect, 'src', _('Source zone')); o = s.taboption('general', widgets.ZoneSelect, 'src', _('Source zone'));
o.modalonly = true; o.modalonly = true;
@ -178,31 +184,15 @@ return L.view.extend({
o.nocreate = true; o.nocreate = true;
o.default = 'wan'; o.default = 'wan';
o = s.taboption('advanced', form.Value, 'src_mac', _('Source MAC address'), o = fwtool.addMACOption(s, 'advanced', 'src_mac', _('Source MAC address'),
_('Only match incoming traffic from these MACs.')); _('Only match incoming traffic from these MACs.'), hosts);
o.modalonly = true;
o.rmempty = true; o.rmempty = true;
o.datatype = 'neg(macaddr)'; o.datatype = 'list(neg(macaddr))';
o.placeholder = E('em', _('any'));
L.sortedKeys(hosts).forEach(function(mac) {
o.value(mac, '%s (%s)'.format(
mac,
hosts[mac].name || hosts[mac].ipv4 || hosts[mac].ipv6 || '?'
));
});
o = s.taboption('advanced', form.Value, 'src_ip', _('Source IP address'), o = fwtool.addIPOption(s, 'advanced', 'src_ip', _('Source IP address'),
_('Only match incoming traffic from this IP or range.')); _('Only match incoming traffic from this IP or range.'), 'ipv4', hosts);
o.modalonly = true;
o.rmempty = true; o.rmempty = true;
o.datatype = 'neg(ipmask4)'; o.datatype = 'neg(ipmask4)';
o.placeholder = E('em', _('any'));
L.sortedKeys(hosts, 'ipv4', 'addr').forEach(function(mac) {
o.value(hosts[mac].ipv4, '%s (%s)'.format(
hosts[mac].ipv4,
hosts[mac].name || mac
));
});
o = s.taboption('advanced', form.Value, 'src_port', _('Source port'), o = s.taboption('advanced', form.Value, 'src_port', _('Source port'),
_('Only match incoming traffic originating from the given source port or port range on the client host')); _('Only match incoming traffic originating from the given source port or port range on the client host'));
@ -210,33 +200,21 @@ return L.view.extend({
o.rmempty = true; o.rmempty = true;
o.datatype = 'neg(portrange)'; o.datatype = 'neg(portrange)';
o.placeholder = _('any'); o.placeholder = _('any');
o.depends('proto', 'tcp'); o.depends({ proto: 'tcp', '!contains': true });
o.depends('proto', 'udp'); o.depends({ proto: 'udp', '!contains': true });
o.depends('proto', 'tcp udp');
o.depends('proto', 'tcpudp');
o = s.taboption('advanced', form.Value, 'src_dip', _('External IP address'), o = fwtool.addLocalIPOption(s, 'advanced', 'src_dip', _('External IP address'),
_('Only match incoming traffic directed at the given IP address.')); _('Only match incoming traffic directed at the given IP address.'), devs);
o.modalonly = true;
o.rmempty = true;
o.datatype = 'neg(ipmask4)'; o.datatype = 'neg(ipmask4)';
o.placeholder = E('em', _('any')); o.rmempty = true;
L.sortedKeys(hosts, 'ipv4', 'addr').forEach(function(mac) {
o.value(hosts[mac].ipv4, '%s (%s)'.format(
hosts[mac].ipv4,
hosts[mac].name || mac
));
});
o = s.taboption('general', form.Value, 'src_dport', _('External port'), o = s.taboption('general', form.Value, 'src_dport', _('External port'),
_('Match incoming traffic directed at the given destination port or port range on this host')); _('Match incoming traffic directed at the given destination port or port range on this host'));
o.modalonly = true; o.modalonly = true;
o.rmempty = false; o.rmempty = false;
o.datatype = 'neg(portrange)'; o.datatype = 'neg(portrange)';
o.depends('proto', 'tcp'); o.depends({ proto: 'tcp', '!contains': true });
o.depends('proto', 'udp'); o.depends({ proto: 'udp', '!contains': true });
o.depends('proto', 'tcp udp');
o.depends('proto', 'tcpudp');
o = s.taboption('general', widgets.ZoneSelect, 'dest', _('Internal zone')); o = s.taboption('general', widgets.ZoneSelect, 'dest', _('Internal zone'));
o.modalonly = true; o.modalonly = true;
@ -244,17 +222,10 @@ return L.view.extend({
o.nocreate = true; o.nocreate = true;
o.default = 'lan'; o.default = 'lan';
o = s.taboption('general', form.Value, 'dest_ip', _('Internal IP address'), o = fwtool.addIPOption(s, 'general', 'dest_ip', _('Internal IP address'),
_('Redirect matched incoming traffic to the specified internal host')); _('Redirect matched incoming traffic to the specified internal host'), 'ipv4', hosts);
o.modalonly = true;
o.rmempty = true; o.rmempty = true;
o.datatype = 'ipmask4'; o.datatype = 'ipmask4';
L.sortedKeys(hosts, 'ipv4', 'addr').forEach(function(mac) {
o.value(hosts[mac].ipv4, '%s (%s)'.format(
hosts[mac].ipv4,
hosts[mac].name || mac
));
});
o = s.taboption('general', form.Value, 'dest_port', _('Internal port'), o = s.taboption('general', form.Value, 'dest_port', _('Internal port'),
_('Redirect matched incoming traffic to the given port on the internal host')); _('Redirect matched incoming traffic to the given port on the internal host'));
@ -262,10 +233,8 @@ return L.view.extend({
o.rmempty = true; o.rmempty = true;
o.placeholder = _('any'); o.placeholder = _('any');
o.datatype = 'portrange'; o.datatype = 'portrange';
o.depends('proto', 'tcp'); o.depends({ proto: 'tcp', '!contains': true });
o.depends('proto', 'udp'); o.depends({ proto: 'udp', '!contains': true });
o.depends('proto', 'tcp udp');
o.depends('proto', 'tcpudp');
o = s.taboption('advanced', form.Flag, 'reflection', _('Enable NAT Loopback')); o = s.taboption('advanced', form.Flag, 'reflection', _('Enable NAT Loopback'));
o.modalonly = true; o.modalonly = true;

View file

@ -3,142 +3,137 @@
'require rpc'; 'require rpc';
'require uci'; 'require uci';
'require form'; 'require form';
'require firewall as fwmodel';
'require tools.firewall as fwtool'; 'require tools.firewall as fwtool';
'require tools.widgets as widgets'; 'require tools.widgets as widgets';
function fmt(fmt /*, ...*/) { function rule_proto_txt(s, ctHelpers) {
var repl = [], wrap = false; var f = (uci.get('firewall', s, 'family') || '').toLowerCase().replace(/^(?:any|\*)$/, '');
for (var i = 1; i < arguments.length; i++) { var proto = L.toArray(uci.get('firewall', s, 'proto')).filter(function(p) {
if (L.dom.elem(arguments[i])) { return (p != '*' && p != 'any' && p != 'all');
switch (arguments[i].nodeType) { }).map(function(p) {
case 1: var pr = fwtool.lookupProto(p);
repl.push(arguments[i].outerHTML); return {
wrap = true; num: pr[0],
break; name: pr[1],
types: (pr[0] == 1 || pr[0] == 58) ? L.toArray(uci.get('firewall', s, 'icmp_type')) : null
};
});
case 3: m = String(uci.get('firewall', s, 'helper') || '').match(/^(!\s*)?(\S+)$/);
repl.push(arguments[i].data); var h = m ? {
break; val: m[0].toUpperCase(),
inv: m[1],
name: (ctHelpers.filter(function(ctH) { return ctH.name.toLowerCase() == m[2].toLowerCase() })[0] || {}).description
} : null;
case 11: m = String(uci.get('firewall', s, 'mark')).match(/^(!\s*)?(0x[0-9a-f]{1,8}|[0-9]{1,10})(?:\/(0x[0-9a-f]{1,8}|[0-9]{1,10}))?$/i);
var span = E('span'); var f = m ? {
span.appendChild(arguments[i]); val: m[0].toUpperCase().replace(/X/g, 'x'),
repl.push(span.innerHTML); inv: m[1],
wrap = true; num: '0x%02X'.format(+m[2]),
break; mask: m[3] ? '0x%02X'.format(+m[3]) : null
} : null;
default: m = String(uci.get('firewall', s, 'dscp')).match(/^(!\s*)?(?:(CS[0-7]|BE|AF[1234][123]|EF)|(0x[0-9a-f]{1,2}|[0-9]{1,2}))$/);
repl.push(''); var d = m ? {
} val: m[0],
} inv: m[1],
else { name: m[2],
repl.push(arguments[i]); num: m[3] ? '0x%02X'.format(+m[3]) : null
} } : null;
}
var rv = fmt.format.apply(fmt, repl); return fwtool.fmt(_('%{src?%{dest?Forwarded:Incoming}:Outgoing} %{ipv6?%{ipv4?<var>IPv4</var> and <var>IPv6</var>:<var>IPv6</var>}:<var>IPv4</var>}%{proto?, protocol %{proto#%{next?, }%{item.types?<var class="cbi-tooltip-container">%{item.name}<span class="cbi-tooltip">ICMP with types %{item.types#%{next?, }<var>%{item}</var>}</span></var>:<var>%{item.name}</var>}}}%{mark?, mark <var%{mark.inv? data-tooltip="Match fwmarks except %{mark.num}%{mark.mask? with mask %{mark.mask}}.":%{mark.mask? data-tooltip="Mask fwmark value with %{mark.mask} before compare."}}>%{mark.val}</var>}%{dscp?, DSCP %{dscp.inv?<var data-tooltip="Match DSCP classifications except %{dscp.num?:%{dscp.name}}">%{dscp.val}</var>:<var>%{dscp.val}</var>}}%{helper?, helper %{helper.inv?<var data-tooltip="Match any helper except &quot;%{helper.name}&quot;">%{helper.val}</var>:<var data-tooltip="%{helper.name}">%{helper.val}</var>}}'), {
return wrap ? E('span', rv) : rv; ipv4: (!f || f == 'ipv4'),
ipv6: (!f || f == 'ipv6'),
src: uci.get('firewall', s, 'src'),
dest: uci.get('firewall', s, 'dest'),
proto: proto,
helper: h,
mark: f,
dscp: d
});
} }
function forward_proto_txt(s) { function rule_src_txt(s, hosts) {
return fmt('%s-%s', var z = uci.get('firewall', s, 'src'),
fwtool.fmt_family(uci.get('firewall', s, 'family')), d = (uci.get('firewall', s, 'direction') == 'in') ? uci.get('firewall', s, 'device') : null;
fwtool.fmt_proto(uci.get('firewall', s, 'proto'),
uci.get('firewall', s, 'icmp_type')) || 'TCP+UDP');
}
function rule_src_txt(s) { return fwtool.fmt(_('From %{src}%{src_device?, interface <var>%{src_device}</var>}%{src_ip?, IP %{src_ip#%{next?, }<var%{item.inv? data-tooltip="Match IP addresses except %{item.val}."}>%{item.ival}</var>}}%{src_port?, port %{src_port#%{next?, }<var%{item.inv? data-tooltip="Match ports except %{item.val}."}>%{item.ival}</var>}}%{src_mac?, MAC %{src_mac#%{next?, }<var%{item.inv? data-tooltip="Match MACs except %{item.val}%{item.hint.name? a.k.a. %{item.hint.name}}.":%{item.hint.name? data-tooltip="%{item.hint.name}"}}>%{item.ival}</var>}}'), {
var z = fwtool.fmt_zone(uci.get('firewall', s, 'src')), src: E('span', { 'class': 'zonebadge', 'style': 'background-color:' + fwmodel.getColorForName((z && z != '*') ? z : null) }, [(z == '*') ? E('em', _('any zone')) : (z || E('em', _('this device')))]),
p = fwtool.fmt_port(uci.get('firewall', s, 'src_port')), src_ip: fwtool.map_invert(uci.get('firewall', s, 'src_ip'), 'toLowerCase'),
m = fwtool.fmt_mac(uci.get('firewall', s, 'src_mac')); src_mac: fwtool.map_invert(uci.get('firewall', s, 'src_mac'), 'toUpperCase').map(function(v) { return Object.assign(v, { hint: hosts[v.val] }) }),
src_port: fwtool.map_invert(uci.get('firewall', s, 'src_port')),
// Forward/Input src_device: d
if (z) { });
var a = fwtool.fmt_ip(uci.get('firewall', s, 'src_ip'), _('any host'));
if (p && m)
return fmt(_('From %s in %s with source %s and %s'), a, z, p, m);
else if (p || m)
return fmt(_('From %s in %s with source %s'), a, z, p || m);
else
return fmt(_('From %s in %s'), a, z);
}
// Output
else {
var a = fwtool.fmt_ip(uci.get('firewall', s, 'src_ip'), _('any router IP'));
if (p && m)
return fmt(_('From %s on <var>this device</var> with source %s and %s'), a, p, m);
else if (p || m)
return fmt(_('From %s on <var>this device</var> with source %s'), a, p || m);
else
return fmt(_('From %s on <var>this device</var>'), a);
}
} }
function rule_dest_txt(s) { function rule_dest_txt(s) {
var z = fwtool.fmt_zone(uci.get('firewall', s, 'dest')), var z = uci.get('firewall', s, 'dest'),
p = fwtool.fmt_port(uci.get('firewall', s, 'dest_port')); d = (uci.get('firewall', s, 'direction') == 'out') ? uci.get('firewall', s, 'device') : null;
// Forward return fwtool.fmt(_('To %{dest}%{dest_device?, interface <var>%{dest_device}</var>}%{dest_ip?, IP %{dest_ip#%{next?, }<var%{item.inv? data-tooltip="Match IP addresses except %{item.val}."}>%{item.ival}</var>}}%{dest_port?, port %{dest_port#%{next?, }<var%{item.inv? data-tooltip="Match ports except %{item.val}."}>%{item.ival}</var>}}'), {
if (z) { dest: E('span', { 'class': 'zonebadge', 'style': 'background-color:' + fwmodel.getColorForName((z && z != '*') ? z : null) }, [(z == '*') ? E('em', _('any zone')) : (z || E('em', _('this device')))]),
var a = fwtool.fmt_ip(uci.get('firewall', s, 'dest_ip'), _('any host')); dest_ip: fwtool.map_invert(uci.get('firewall', s, 'dest_ip'), 'toLowerCase'),
if (p) dest_port: fwtool.map_invert(uci.get('firewall', s, 'dest_port')),
return fmt(_('To %s, %s in %s'), a, p, z); dest_device: d
else });
return fmt(_('To %s in %s'), a, z);
}
// Input
else {
var a = fwtool.fmt_ip(uci.get('firewall', s, 'dest_ip'), _('any router IP'));
if (p)
return fmt(_('To %s at %s on <var>this device</var>'), a, p);
else
return fmt(_('To %s on <var>this device</var>'), a);
}
} }
function rule_target_txt(s) { function rule_limit_txt(s) {
var t = fwtool.fmt_target(uci.get('firewall', s, 'target'), uci.get('firewall', s, 'src'), uci.get('firewall', s, 'dest')), var m = String(uci.get('firewall', s, 'limit')).match(/^(\d+)\/([smhd])\w*$/i),
l = fwtool.fmt_limit(uci.get('firewall', s, 'limit'), uci.get('firewall', s, 'limit_burst')); l = m ? {
num: +m[1],
unit: ({ s: _('second'), m: _('minute'), h: _('hour'), d: _('day') })[m[2]],
burst: uci.get('firewall', s, 'limit_burst')
} : null;
if (l) if (!l)
return fmt(_('<var>%s</var> and limit to %s'), t, l); return '';
else
return fmt('<var>%s</var>', t); return fwtool.fmt(_('Limit matching to <var>%{limit.num}</var> packets per <var>%{limit.unit}</var>%{limit.burst? burst <var>%{limit.burst}</var>}'), { limit: l });
} }
function update_ip_hints(map, section_id, family, hosts) { function rule_target_txt(s, ctHelpers) {
var elem_src_ip = map.lookupOption('src_ip', section_id)[0].getUIElement(section_id), var t = uci.get('firewall', s, 'target'),
elem_dst_ip = map.lookupOption('dest_ip', section_id)[0].getUIElement(section_id), h = (uci.get('firewall', s, 'set_helper') || '').toUpperCase(),
choice_values = [], choice_labels = {}; s = {
target: t,
src: uci.get('firewall', s, 'src'),
dest: uci.get('firewall', s, 'dest'),
set_helper: h,
set_mark: uci.get('firewall', s, 'set_mark'),
set_xmark: uci.get('firewall', s, 'set_xmark'),
set_dscp: uci.get('firewall', s, 'set_dscp'),
helper_name: (ctHelpers.filter(function(ctH) { return ctH.name.toUpperCase() == h })[0] || {}).description
};
elem_src_ip.clearChoices(); switch (t) {
elem_dst_ip.clearChoices(); case 'DROP':
return fwtool.fmt(_('<var data-tooltip="DROP">Drop</var> %{src?%{dest?forward:input}:output}'), s);
if (!family || family == 'ipv4') { case 'ACCEPT':
L.sortedKeys(hosts, 'ipv4', 'addr').forEach(function(mac) { return fwtool.fmt(_('<var data-tooltip="ACCEPT">Accept</var> %{src?%{dest?forward:input}:output}'), s);
var val = hosts[mac].ipv4,
txt = '%s (<strong>%s</strong>)'.format(val, hosts[mac].name || mac);
choice_values.push(val); case 'REJECT':
choice_labels[val] = txt; return fwtool.fmt(_('<var data-tooltip="REJECT">Reject</var> %{src?%{dest?forward:input}:output}'), s);
});
case 'NOTRACK':
return fwtool.fmt(_('<var data-tooltip="NOTRACK">Do not track</var> %{src?%{dest?forward:input}:output}'), s);
case 'HELPER':
return fwtool.fmt(_('<var data-tooltip="HELPER">Assign conntrack</var> helper <var%{helper_name? data-tooltip="%{helper_name}"}>%{set_helper}</var>'), s);
case 'MARK':
return fwtool.fmt(_('<var data-tooltip="MARK">%{set_mark?Assign:XOR}</var> firewall mark <var>%{set_mark?:%{set_xmark}}</var>'), s);
case 'DSCP':
return fwtool.fmt(_('<var data-tooltip="DSCP">Assign DSCP</var> classification <var>%{set_dscp}</var>'), s);
default:
return t;
} }
if (!family || family == 'ipv6') {
L.sortedKeys(hosts, 'ipv6', 'addr').forEach(function(mac) {
var val = hosts[mac].ipv6,
txt = '%s (<strong>%s</strong>)'.format(val, hosts[mac].name || mac);
choice_values.push(val);
choice_labels[val] = txt;
});
}
elem_src_ip.addChoices(choice_values, choice_labels);
elem_dst_ip.addChoices(choice_values, choice_labels);
} }
return L.view.extend({ return L.view.extend({
@ -215,16 +210,17 @@ return L.view.extend({
o.modalonly = false; o.modalonly = false;
o.textvalue = function(s) { o.textvalue = function(s) {
return E('small', [ return E('small', [
forward_proto_txt(s), E('br'), rule_proto_txt(s, ctHelpers), E('br'),
rule_src_txt(s), E('br'), rule_src_txt(s, hosts), E('br'),
rule_dest_txt(s) rule_dest_txt(s), E('br'),
rule_limit_txt(s)
]); ]);
}; };
o = s.option(form.ListValue, '_target', _('Action')); o = s.option(form.ListValue, '_target', _('Action'));
o.modalonly = false; o.modalonly = false;
o.textvalue = function(s) { o.textvalue = function(s) {
return rule_target_txt(s); return rule_target_txt(s, ctHelpers);
}; };
o = s.option(form.Flag, 'enabled', _('Enable')); o = s.option(form.Flag, 'enabled', _('Enable'));
@ -268,22 +264,14 @@ return L.view.extend({
o.value('ipv4', _('IPv4 only')); o.value('ipv4', _('IPv4 only'));
o.value('ipv6', _('IPv6 only')); o.value('ipv6', _('IPv6 only'));
o.validate = function(section_id, value) { o.validate = function(section_id, value) {
update_ip_hints(this.map, section_id, value, hosts); fwtool.updateHostHints(this.map, section_id, 'src_ip', value, hosts);
fwtool.updateHostHints(this.map, section_id, 'dest_ip', value, hosts);
return true; return true;
}; };
o = s.taboption('general', form.Value, 'proto', _('Protocol')); o = s.taboption('general', fwtool.CBIProtocolSelect, 'proto', _('Protocol'));
o.modalonly = true; o.modalonly = true;
o.default = 'tcp udp'; o.default = 'tcp udp';
o.value('all', _('Any'));
o.value('tcp udp', 'TCP+UDP');
o.value('tcp', 'TCP');
o.value('udp', 'UDP');
o.value('icmp', 'ICMP');
o.cfgvalue = function(/* ... */) {
var v = this.super('cfgvalue', arguments);
return (v == 'tcpudp') ? 'tcp udp' : v;
};
o = s.taboption('advanced', form.MultiValue, 'icmp_type', _('Match ICMP type')); o = s.taboption('advanced', form.MultiValue, 'icmp_type', _('Match ICMP type'));
o.modalonly = true; o.modalonly = true;
@ -330,7 +318,8 @@ return L.view.extend({
o.value('TOS-network-unreachable'); o.value('TOS-network-unreachable');
o.value('ttl-zero-during-reassembly'); o.value('ttl-zero-during-reassembly');
o.value('ttl-zero-during-transit'); o.value('ttl-zero-during-transit');
o.depends('proto', 'icmp'); o.depends({ proto: 'icmp', '!contains': true });
o.depends({ proto: 'icmpv6', '!contains': true });
o = s.taboption('general', widgets.ZoneSelect, 'src', _('Source zone')); o = s.taboption('general', widgets.ZoneSelect, 'src', _('Source zone'));
o.modalonly = true; o.modalonly = true;
@ -338,31 +327,15 @@ return L.view.extend({
o.allowany = true; o.allowany = true;
o.allowlocal = 'src'; o.allowlocal = 'src';
o = s.taboption('advanced', form.Value, 'src_mac', _('Source MAC address')); fwtool.addMACOption(s, 'advanced', 'src_mac', _('Source MAC address'), null, hosts);
o.modalonly = true; fwtool.addIPOption(s, 'general', 'src_ip', _('Source address'), null, '', hosts, true);
o.datatype = 'list(macaddr)';
o.placeholder = _('any');
L.sortedKeys(hosts).forEach(function(mac) {
o.value(mac, '%s (%s)'.format(
mac,
hosts[mac].name || hosts[mac].ipv4 || hosts[mac].ipv6 || '?'
));
});
o = s.taboption('general', form.Value, 'src_ip', _('Source address'));
o.modalonly = true;
o.datatype = 'list(neg(ipmask))';
o.placeholder = _('any');
o.transformChoices = function() { return {} }; /* force combobox rendering */
o = s.taboption('general', form.Value, 'src_port', _('Source port')); o = s.taboption('general', form.Value, 'src_port', _('Source port'));
o.modalonly = true; o.modalonly = true;
o.datatype = 'list(neg(portrange))'; o.datatype = 'list(neg(portrange))';
o.placeholder = _('any'); o.placeholder = _('any');
o.depends('proto', 'tcp'); o.depends({ proto: 'tcp', '!contains': true });
o.depends('proto', 'udp'); o.depends({ proto: 'udp', '!contains': true });
o.depends('proto', 'tcp udp');
o.depends('proto', 'tcpudp');
o = s.taboption('general', widgets.ZoneSelect, 'dest', _('Destination zone')); o = s.taboption('general', widgets.ZoneSelect, 'dest', _('Destination zone'));
o.modalonly = true; o.modalonly = true;
@ -370,20 +343,14 @@ return L.view.extend({
o.allowany = true; o.allowany = true;
o.allowlocal = true; o.allowlocal = true;
o = s.taboption('general', form.Value, 'dest_ip', _('Destination address')); fwtool.addIPOption(s, 'general', 'dest_ip', _('Destination address'), null, '', hosts, true);
o.modalonly = true;
o.datatype = 'list(neg(ipmask))';
o.placeholder = _('any');
o.transformChoices = function() { return {} }; /* force combobox rendering */
o = s.taboption('general', form.Value, 'dest_port', _('Destination port')); o = s.taboption('general', form.Value, 'dest_port', _('Destination port'));
o.modalonly = true; o.modalonly = true;
o.datatype = 'list(neg(portrange))'; o.datatype = 'list(neg(portrange))';
o.placeholder = _('any'); o.placeholder = _('any');
o.depends('proto', 'tcp'); o.depends({ proto: 'tcp', '!contains': true });
o.depends('proto', 'udp'); o.depends({ proto: 'udp', '!contains': true });
o.depends('proto', 'tcp udp');
o.depends('proto', 'tcpudp');
o = s.taboption('general', form.ListValue, 'target', _('Action')); o = s.taboption('general', form.ListValue, 'target', _('Action'));
o.modalonly = true; o.modalonly = true;

View file

@ -3,126 +3,90 @@
'require rpc'; 'require rpc';
'require uci'; 'require uci';
'require form'; 'require form';
'require firewall as fwmodel';
'require tools.firewall as fwtool'; 'require tools.firewall as fwtool';
'require tools.widgets as widgets'; 'require tools.widgets as widgets';
function fmt(fmtstr, args) { function rule_proto_txt(s) {
var repl = [], wrap = false; var proto = L.toArray(uci.get('firewall', s, 'proto')).filter(function(p) {
var tokens = []; return (p != '*' && p != 'any' && p != 'all');
}).map(function(p) {
var pr = fwtool.lookupProto(p);
return {
num: pr[0],
name: pr[1]
};
});
for (var i = 0, last = 0; i <= fmtstr.length; i++) { m = String(uci.get('firewall', s, 'mark')).match(/^(!\s*)?(0x[0-9a-f]{1,8}|[0-9]{1,10})(?:\/(0x[0-9a-f]{1,8}|[0-9]{1,10}))?$/i);
if (fmtstr.charAt(i) == '%' && fmtstr.charAt(i + 1) == '{') { var f = m ? {
if (i > last) val: m[0].toUpperCase().replace(/X/g, 'x'),
tokens.push(fmtstr.substring(last, i)); inv: m[1],
num: '0x%02X'.format(+m[2]),
mask: m[3] ? '0x%02X'.format(+m[3]) : null
} : null;
var j = i + 1, nest = 0; return fwtool.fmt(_('Forwarded IPv4%{proto?, protocol %{proto#%{next?, }<var>%{item.name}</var>}}%{mark?, mark <var%{mark.inv? data-tooltip="Match fwmarks except %{mark.num}%{mark.mask? with mask %{mark.mask}}.":%{mark.mask? data-tooltip="Mask fwmark value with %{mark.mask} before compare."}}>%{mark.val}</var>}'), {
proto: proto,
var subexpr = []; mark: f
for (var off = j + 1, esc = false; j <= fmtstr.length; j++) {
if (esc) {
esc = false;
}
else if (fmtstr.charAt(j) == '\\') {
esc = true;
}
else if (fmtstr.charAt(j) == '{') {
nest++;
}
else if (fmtstr.charAt(j) == '}') {
if (--nest == 0) {
subexpr.push(fmtstr.substring(off, j));
break;
}
}
else if (fmtstr.charAt(j) == '?' || fmtstr.charAt(j) == ':') {
if (nest == 1) {
subexpr.push(fmtstr.substring(off, j));
subexpr.push(fmtstr.charAt(j));
off = j + 1;
}
}
}
var varname = subexpr[0].trim(),
op1 = (subexpr[1] != null) ? subexpr[1] : '?',
if_set = (subexpr[2] != null && subexpr[2] != '') ? subexpr[2] : '%{' + varname + '}',
op2 = (subexpr[3] != null) ? subexpr[3] : ':',
if_unset = (subexpr[4] != null) ? subexpr[4] : '';
/* Invalid expression */
if (nest != 0 || subexpr.length > 5 || varname == '' || op1 != '?' || op2 != ':')
return fmtstr;
if (subexpr.length == 1)
tokens.push(args[varname] != null ? args[varname] : '');
else if (args[varname] != null)
tokens.push(fmt(if_set.replace(/\\(.)/g, '$1'), args));
else
tokens.push(fmt(if_unset.replace(/\\(.)/g, '$1'), args));
last = j + 1;
i = last;
}
else if (i >= fmtstr.length) {
if (i > last)
tokens.push(fmtstr.substring(last, i));
}
}
for (var i = 0; i < tokens.length; i++)
if (typeof(tokens[i]) == 'object')
return E('span', {}, tokens);
return tokens.join('');
}
function snat_proto_txt(s) {
var m = uci.get('firewall', s, 'mark'),
p = uci.get('firewall', s, 'proto');
return fmt(_('Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?with firewall mark %{mark}} %{limit?limited to %{limit}}'), {
protocol: (p && p != 'all' && p != 'any' && p != '*') ? fwtool.fmt_proto(uci.get('firewall', s, 'proto')) : null,
family: fwtool.fmt_family('ipv4'),
mark: m ? E('var', {}, fwtool.fmt_neg(m)) : null,
limit: fwtool.fmt_limit(uci.get('firewall', s, 'limit'), uci.get('firewall', s, 'limit_burst'))
}); });
} }
function snat_src_txt(s) { function rule_src_txt(s, hosts) {
return fmt(_('From %{ipaddr?:any host} %{port?with source %{port}}'), { var z = uci.get('firewall', s, 'src');
ipaddr: fwtool.fmt_ip(uci.get('firewall', s, 'src_ip')),
port: fwtool.fmt_port(uci.get('firewall', s, 'src_port')) return fwtool.fmt(_('From %{src}%{src_device?, interface <var>%{src_device}</var>}%{src_ip?, IP %{src_ip#%{next?, }<var%{item.inv? data-tooltip="Match IP addresses except %{item.val}."}>%{item.ival}</var>}}%{src_port?, port %{src_port#%{next?, }<var%{item.inv? data-tooltip="Match ports except %{item.val}."}>%{item.ival}</var>}}'), {
src: E('span', { 'class': 'zonebadge', 'style': 'background-color:' + fwmodel.getColorForName(null) }, [E('em', _('any zone'))]),
src_ip: fwtool.map_invert(uci.get('firewall', s, 'src_ip'), 'toLowerCase'),
src_port: fwtool.map_invert(uci.get('firewall', s, 'src_port'))
}); });
} }
function snat_dest_txt(s) { function rule_dest_txt(s) {
var z = uci.get('firewall', s, 'src'), var z = uci.get('firewall', s, 'src');
d = uci.get('firewall', s, 'device');
return fmt(_('To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} %{device?egress device %{device}}'), { return fwtool.fmt(_('To %{dest}%{dest_device?, via interface <var>%{dest_device}</var>}%{dest_ip?, IP %{dest_ip#%{next?, }<var%{item.inv? data-tooltip="Match IP addresses except %{item.val}."}>%{item.ival}</var>}}%{dest_port?, port %{dest_port#%{next?, }<var%{item.inv? data-tooltip="Match ports except %{item.val}."}>%{item.ival}</var>}}'), {
port: fwtool.fmt_port(uci.get('firewall', s, 'dest_port')), dest: E('span', { 'class': 'zonebadge', 'style': 'background-color:' + fwmodel.getColorForName((z && z != '*') ? z : null) }, [(z == '*') ? E('em', _('any zone')) : (z || E('em', _('this device')))]),
ipaddr: fwtool.fmt_ip(uci.get('firewall', s, 'dest_ip')), dest_ip: fwtool.map_invert(uci.get('firewall', s, 'dest_ip'), 'toLowerCase'),
zone: (z != '*') ? fwtool.fmt_zone(z) : null, dest_port: fwtool.map_invert(uci.get('firewall', s, 'dest_port')),
device: d ? E('var', {}, [d]) : null dest_device: uci.get('firewall', s, 'device')
}); });
} }
function snat_rewrite_txt(s) { function rule_limit_txt(s) {
var m = String(uci.get('firewall', s, 'limit')).match(/^(\d+)\/([smhd])\w*$/i),
l = m ? {
num: +m[1],
unit: ({ s: _('second'), m: _('minute'), h: _('hour'), d: _('day') })[m[2]],
burst: uci.get('firewall', s, 'limit_burst')
} : null;
if (!l)
return '';
return fwtool.fmt(_('Limit matching to <var>%{limit.num}</var> packets per <var>%{limit.unit}</var>%{limit.burst? burst <var>%{limit.burst}</var>}'), { limit: l });
}
function rule_target_txt(s) {
var t = uci.get('firewall', s, 'target'), var t = uci.get('firewall', s, 'target'),
l = fwtool.fmt_limit(uci.get('firewall', s, 'limit'), uci.get('firewall', s, 'limit_burst')); s = {
target: t,
snat_ip: uci.get('firewall', s, 'snat_ip'),
snat_port: uci.get('firewall', s, 'snat_port')
};
if (t == 'SNAT') { switch (t) {
return fmt(_('Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}'), { case 'SNAT':
ipaddr: fwtool.fmt_ip(uci.get('firewall', s, 'snat_ip')), return fwtool.fmt(_('<var data-tooltip="SNAT">Statically rewrite</var> to source %{snat_ip?IP <var>%{snat_ip}</var>} %{snat_port?port <var>%{snat_port}</var>}'), s);
port: fwtool.fmt_port(uci.get('firewall', s, 'snat_port'))
}); case 'MASQUERADE':
} return fwtool.fmt(_('<var data-tooltip="MASQUERADE">Automatically rewrite</var> source IP'));
else if (t == 'MASQUERADE') {
return _('Rewrite to outbound device IP'); case 'ACCEPT':
} return fwtool.fmt(_('<var data-tooltip="ACCEPT">Prevent source rewrite</var>'));
else if (t == 'ACCEPT') {
return _('Do not rewrite'); default:
return t;
} }
} }
@ -175,16 +139,17 @@ return L.view.extend({
o.modalonly = false; o.modalonly = false;
o.textvalue = function(s) { o.textvalue = function(s) {
return E('small', [ return E('small', [
snat_proto_txt(s), E('br'), rule_proto_txt(s), E('br'),
snat_src_txt(s), E('br'), rule_src_txt(s, hosts), E('br'),
snat_dest_txt(s) rule_dest_txt(s), E('br'),
rule_limit_txt(s)
]); ]);
}; };
o = s.option(form.ListValue, '_dest', _('Rewrite to')); o = s.option(form.ListValue, '_target', _('Action'));
o.modalonly = false; o.modalonly = false;
o.textvalue = function(s) { o.textvalue = function(s) {
return snat_rewrite_txt(s); return rule_target_txt(s);
}; };
o = s.option(form.Flag, 'enabled', _('Enable')); o = s.option(form.Flag, 'enabled', _('Enable'));
@ -192,17 +157,9 @@ return L.view.extend({
o.default = o.enabled; o.default = o.enabled;
o.editable = true; o.editable = true;
o = s.taboption('general', form.Value, 'proto', _('Protocol')); o = s.taboption('general', fwtool.CBIProtocolSelect, 'proto', _('Protocol'));
o.modalonly = true; o.modalonly = true;
o.default = 'all'; o.default = 'all';
o.value('all', _('Any'));
o.value('tcp udp', 'TCP+UDP');
o.value('tcp', 'TCP');
o.value('udp', 'UDP');
o.cfgvalue = function(/* ... */) {
var v = this.super('cfgvalue', arguments);
return (v == 'tcpudp') ? 'tcp udp' : v;
};
o = s.taboption('general', widgets.ZoneSelect, 'src', _('Outbound zone')); o = s.taboption('general', widgets.ZoneSelect, 'src', _('Outbound zone'));
o.modalonly = true; o.modalonly = true;
@ -211,18 +168,10 @@ return L.view.extend({
o.allowany = true; o.allowany = true;
o.default = 'lan'; o.default = 'lan';
o = s.taboption('general', form.Value, 'src_ip', _('Source IP address'), o = fwtool.addIPOption(s, 'general', 'src_ip', _('Source address'),
_('Match forwarded traffic from this IP or range.')); _('Match forwarded traffic from this IP or range.'), 'ipv4', hosts);
o.modalonly = true;
o.rmempty = true; o.rmempty = true;
o.datatype = 'neg(ipmask4)'; o.datatype = 'neg(ipmask4)';
o.placeholder = E('em', _('any'));
L.sortedKeys(hosts, 'ipv4', 'addr').forEach(function(mac) {
o.value(hosts[mac].ipv4, '%s (%s)'.format(
hosts[mac].ipv4,
hosts[mac].name || mac
));
});
o = s.taboption('general', form.Value, 'src_port', _('Source port'), o = s.taboption('general', form.Value, 'src_port', _('Source port'),
_('Match forwarded traffic originating from the given source port or port range.')); _('Match forwarded traffic originating from the given source port or port range.'));
@ -230,23 +179,13 @@ return L.view.extend({
o.rmempty = true; o.rmempty = true;
o.datatype = 'neg(portrange)'; o.datatype = 'neg(portrange)';
o.placeholder = _('any'); o.placeholder = _('any');
o.depends('proto', 'tcp'); o.depends({ proto: 'tcp', '!contains': true });
o.depends('proto', 'udp'); o.depends({ proto: 'udp', '!contains': true });
o.depends('proto', 'tcp udp');
o.depends('proto', 'tcpudp');
o = s.taboption('general', form.Value, 'dest_ip', _('Destination IP address'), o = fwtool.addIPOption(s, 'general', 'dest_ip', _('Destination address'),
_('Match forwarded traffic directed at the given IP address.')); _('Match forwarded traffic directed at the given IP address.'), 'ipv4', hosts);
o.modalonly = true;
o.rmempty = true; o.rmempty = true;
o.datatype = 'neg(ipmask4)'; o.datatype = 'neg(ipmask4)';
o.placeholder = E('em', _('any'));
L.sortedKeys(hosts, 'ipv4', 'addr').forEach(function(mac) {
o.value(hosts[mac].ipv4, '%s (%s)'.format(
hosts[mac].ipv4,
hosts[mac].name || mac
));
});
o = s.taboption('general', form.Value, 'dest_port', _('Destination port'), o = s.taboption('general', form.Value, 'dest_port', _('Destination port'),
_('Match forwarded traffic directed at the given destination port or port range.')); _('Match forwarded traffic directed at the given destination port or port range.'));
@ -254,10 +193,8 @@ return L.view.extend({
o.rmempty = true; o.rmempty = true;
o.placeholder = _('any'); o.placeholder = _('any');
o.datatype = 'neg(portrange)'; o.datatype = 'neg(portrange)';
o.depends('proto', 'tcp'); o.depends({ proto: 'tcp', '!contains': true });
o.depends('proto', 'udp'); o.depends({ proto: 'udp', '!contains': true });
o.depends('proto', 'tcp udp');
o.depends('proto', 'tcpudp');
o = s.taboption('general', form.ListValue, 'target', _('Action')); o = s.taboption('general', form.ListValue, 'target', _('Action'));
o.modalonly = true; o.modalonly = true;
@ -266,35 +203,20 @@ return L.view.extend({
o.value('MASQUERADE', _('MASQUERADE - Automatically rewrite to outbound interface IP')); o.value('MASQUERADE', _('MASQUERADE - Automatically rewrite to outbound interface IP'));
o.value('ACCEPT', _('ACCEPT - Disable address rewriting')); o.value('ACCEPT', _('ACCEPT - Disable address rewriting'));
o = s.taboption('general', form.Value, 'snat_ip', _('Rewrite IP address'), o = fwtool.addLocalIPOption(s, 'general', 'snat_ip', _('Rewrite IP address'),
_('Rewrite matched traffic to the specified source IP address.')); _('Rewrite matched traffic to the specified source IP address.'), devs);
o.modalonly = true; o.placeholder = null;
o.rmempty = true; o.depends('target', 'SNAT');
o.placeholder = _('do not rewrite');
o.datatype = 'ip4addr("nomask")';
o.validate = function(section_id, value) { o.validate = function(section_id, value) {
var port = this.map.lookupOption('snat_port', section_id), var port = this.map.lookupOption('snat_port', section_id),
a = this.formvalue(section_id),
p = port ? port[0].formvalue(section_id) : null; p = port ? port[0].formvalue(section_id) : null;
if ((value == null || value == '') && (p == null || p == '')) if ((a == null || a == '') && (p == null || p == ''))
return _('A rewrite IP must be specified!'); return _('A rewrite IP must be specified!');
return true; return true;
}; };
o.depends('target', 'SNAT');
L.sortedKeys(devs, 'name').forEach(function(dev) {
var ip4addrs = devs[dev].ipaddrs;
if (!L.isObject(devs[dev].flags) || !Array.isArray(ip4addrs) || devs[dev].flags.loopback)
return;
for (var i = 0; i < ip4addrs.length; i++) {
if (!L.isObject(ip4addrs[i]) || !ip4addrs[i].address)
continue;
o.value(ip4addrs[i].address, '%s (%s)'.format(ip4addrs[i].address, dev));
}
});
o = s.taboption('general', form.Value, 'snat_port', _('Rewrite port'), o = s.taboption('general', form.Value, 'snat_port', _('Rewrite port'),
_('Rewrite matched traffic to the specified source port or port range.')); _('Rewrite matched traffic to the specified source port or port range.'));
@ -302,10 +224,8 @@ return L.view.extend({
o.rmempty = true; o.rmempty = true;
o.placeholder = _('do not rewrite'); o.placeholder = _('do not rewrite');
o.datatype = 'portrange'; o.datatype = 'portrange';
o.depends({ target: 'SNAT', proto: 'tcp' }); o.depends({ proto: 'tcp', '!contains': true });
o.depends({ target: 'SNAT', proto: 'udp' }); o.depends({ proto: 'udp', '!contains': true });
o.depends({ target: 'SNAT', proto: 'tcp udp' });
o.depends({ target: 'SNAT', proto: 'tcpudp' });
o = s.taboption('advanced', widgets.DeviceSelect, 'device', _('Outbound device'), o = s.taboption('advanced', widgets.DeviceSelect, 'device', _('Outbound device'),
_('Matches forwarded traffic using the specified outbound network device.')); _('Matches forwarded traffic using the specified outbound network device.'));

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -489,14 +489,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "" msgstr ""

View file

@ -492,14 +492,11 @@ msgstr "Refusa la connexió si no hi ha configuració de client personalitzada"
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "Remapeja senyals SIGUSR1" msgstr "Remapeja senyals SIGUSR1"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "Nom de màquina remot o adreça IP" msgstr "Nom de màquina remot o adreça IP"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "Temps d'espera màxim de ping remot" msgstr "Temps d'espera màxim de ping remot"

View file

@ -498,14 +498,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "Přemapovat signály SIGUSR1" msgstr "Přemapovat signály SIGUSR1"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "Název vzdáleného hostitele nebo adresa IP" msgstr "Název vzdáleného hostitele nebo adresa IP"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "Časový limit pingu protistrany" msgstr "Časový limit pingu protistrany"

View file

@ -500,14 +500,11 @@ msgstr "Teilnehmer-Verbindung verweigern wenn Teilnehmer-Konfiguration fehlt"
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "\"USR1\" Systemsignal umleiten" msgstr "\"USR1\" Systemsignal umleiten"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "Entfernter Rechnername oder IP-Adresse" msgstr "Entfernter Rechnername oder IP-Adresse"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "Ping-Timeout für Gegenstellen" msgstr "Ping-Timeout für Gegenstellen"

View file

@ -491,14 +491,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "Όνομα απομακρυσμένου μηχανήματος ή διεύθυνση IP" msgstr "Όνομα απομακρυσμένου μηχανήματος ή διεύθυνση IP"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "" msgstr ""

View file

@ -489,14 +489,11 @@ msgstr "Refuse connection if no custom client config"
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "Remap SIGUSR1 signals" msgstr "Remap SIGUSR1 signals"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "Remote host name or IP address" msgstr "Remote host name or IP address"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "Remote ping timeout" msgstr "Remote ping timeout"

View file

@ -499,14 +499,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "Redirigir señales SIGUSR1" msgstr "Redirigir señales SIGUSR1"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "Nombre de máquina remota o dirección IP" msgstr "Nombre de máquina remota o dirección IP"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr "Nombre de host remoto o dirección IP"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "Tiempo de espera de ping remoto" msgstr "Tiempo de espera de ping remoto"
@ -849,5 +846,8 @@ msgstr "Espera de inactividad tun/tap"
msgid "yes (%i)" msgid "yes (%i)"
msgstr "sí (%i)" msgstr "sí (%i)"
#~ msgid "Remote host name or ip address"
#~ msgstr "Nombre de host remoto o dirección IP"
#~ msgid "Invalid" #~ msgid "Invalid"
#~ msgstr "No válido" #~ msgstr "No válido"

View file

@ -512,14 +512,11 @@ msgstr "Refuser la connexion en l'absence de config client spécifique"
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "Rediriger les signaux SIGUSR1" msgstr "Rediriger les signaux SIGUSR1"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "Nom ou adresse IP de l'hôte distant" msgstr "Nom ou adresse IP de l'hôte distant"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "Délai de ping du distant" msgstr "Délai de ping du distant"

View file

@ -484,14 +484,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "" msgstr ""

View file

@ -489,14 +489,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "" msgstr ""

View file

@ -501,14 +501,11 @@ msgstr "Kapcsolat visszautasítása, ha nincs egyéni ügyfélbeállítás"
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "SIGUSR1 szignálok újraleképezése" msgstr "SIGUSR1 szignálok újraleképezése"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "Távoli gépnév vagy IP-cím" msgstr "Távoli gépnév vagy IP-cím"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "Távoli ping időkorlátja" msgstr "Távoli ping időkorlátja"

View file

@ -491,14 +491,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "" msgstr ""

View file

@ -488,14 +488,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "" msgstr ""

View file

@ -489,14 +489,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "" msgstr ""

View file

@ -489,14 +489,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "" msgstr ""

View file

@ -487,14 +487,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "" msgstr ""

View file

@ -487,14 +487,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "" msgstr ""

View file

@ -499,14 +499,11 @@ msgstr "Odmów połączenie gdy nie standardowy klient konfiguracja"
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "Przemapuj SIGUSR1" msgstr "Przemapuj SIGUSR1"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "Nazwa lub IP zdalnego hosta" msgstr "Nazwa lub IP zdalnego hosta"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr "Zdalna nazwa hosta lub adres IP"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "Limit czasu zdalnego pingowania" msgstr "Limit czasu zdalnego pingowania"
@ -849,5 +846,8 @@ msgstr "czas bezczynności tun/tap"
msgid "yes (%i)" msgid "yes (%i)"
msgstr "tak (%i)" msgstr "tak (%i)"
#~ msgid "Remote host name or ip address"
#~ msgstr "Zdalna nazwa hosta lub adres IP"
#~ msgid "Invalid" #~ msgid "Invalid"
#~ msgstr "Nieprawidłowe" #~ msgstr "Nieprawidłowe"

View file

@ -497,14 +497,11 @@ msgstr "Recusar conexões de clientes que não tenham configuração personaliza
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "Remapear os sinais SIGUSR1" msgstr "Remapear os sinais SIGUSR1"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "Nome do equipamento ou endereço IP remoto" msgstr "Nome do equipamento ou endereço IP remoto"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "Tempo limite do ping remoto" msgstr "Tempo limite do ping remoto"

View file

@ -501,14 +501,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "Mapear os sinais SIGUSR1" msgstr "Mapear os sinais SIGUSR1"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "Hostname ou endereço IP remoto" msgstr "Hostname ou endereço IP remoto"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr "Hostname ou endereço IP remoto"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "Timeout do ping remoto" msgstr "Timeout do ping remoto"
@ -850,5 +847,8 @@ msgstr "Timeout de inactividade tun/tap"
msgid "yes (%i)" msgid "yes (%i)"
msgstr "sim (%i)" msgstr "sim (%i)"
#~ msgid "Remote host name or ip address"
#~ msgstr "Hostname ou endereço IP remoto"
#~ msgid "Invalid" #~ msgid "Invalid"
#~ msgstr "Inválido" #~ msgstr "Inválido"

View file

@ -488,14 +488,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "" msgstr ""

View file

@ -547,14 +547,11 @@ msgstr ""
"Управление внутренними или внешними сигналами генерируемыми 'SIGUSR1' и " "Управление внутренними или внешними сигналами генерируемыми 'SIGUSR1' и "
"переназначаемыми 'SIGHUP'" "переназначаемыми 'SIGHUP'"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "Имя удалённого хоста или IP-адрес" msgstr "Имя удалённого хоста или IP-адрес"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "Время ожидания удаленного пинг-запроса" msgstr "Время ожидания удаленного пинг-запроса"

View file

@ -487,14 +487,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "" msgstr ""

View file

@ -487,14 +487,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "" msgstr ""

View file

@ -487,14 +487,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "" msgstr ""

View file

@ -488,14 +488,11 @@ msgstr ""
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "" msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "" msgstr ""

View file

@ -491,14 +491,11 @@ msgstr "Từ chối kết nối nêu không có config đối tượng tùy ch
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "Remap tín hiệu SIGUSR1" msgstr "Remap tín hiệu SIGUSR1"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "Tên host ngoài vùng và địa chỉ IP" msgstr "Tên host ngoài vùng và địa chỉ IP"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "PING timeout từ xa" msgstr "PING timeout từ xa"

View file

@ -493,14 +493,11 @@ msgstr "拒接没有自定义客户端配置的连接"
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "重映射 SIGUSR1 信号" msgstr "重映射 SIGUSR1 信号"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "远程主机名或 IP 地址" msgstr "远程主机名或 IP 地址"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "远程 ping 超时" msgstr "远程 ping 超时"

View file

@ -492,14 +492,11 @@ msgstr "拒接沒有自訂客戶端配置的連線"
msgid "Remap SIGUSR1 signals" msgid "Remap SIGUSR1 signals"
msgstr "重對映 SIGUSR1 訊號" msgstr "重對映 SIGUSR1 訊號"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61
msgid "Remote host name or IP address" msgid "Remote host name or IP address"
msgstr "遠端主機名或 IP 位址" msgstr "遠端主機名或 IP 位址"
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500
msgid "Remote host name or ip address"
msgstr ""
#: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315
msgid "Remote ping timeout" msgid "Remote ping timeout"
msgstr "遠端 ping 超時" msgstr "遠端 ping 超時"

View file

@ -19,7 +19,7 @@ msgstr ""
msgid "%d Bit" msgid "%d Bit"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "" msgstr ""
@ -55,11 +55,11 @@ msgid "-- Additional Field --"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -67,7 +67,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "" msgstr ""
@ -229,7 +229,7 @@ msgid ""
"was empty before editing." "was empty before editing."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "" msgstr ""
@ -350,11 +350,11 @@ msgstr ""
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -632,16 +632,16 @@ msgstr ""
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -861,8 +861,8 @@ msgstr ""
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
@ -893,8 +893,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -960,11 +960,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "" msgstr ""
@ -1102,16 +1102,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "" msgstr ""
@ -1158,7 +1158,7 @@ msgstr ""
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1366,11 +1366,11 @@ msgid ""
"servers to clients." "servers to clients."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1382,7 +1382,7 @@ msgstr ""
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1399,7 +1399,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1444,7 +1444,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "" msgstr ""
@ -1461,7 +1461,7 @@ msgstr ""
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "" msgstr ""
@ -1526,10 +1526,10 @@ msgstr ""
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1563,7 +1563,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "" msgstr ""
@ -1575,7 +1575,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1613,7 +1613,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1654,9 +1654,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1928,7 +1928,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -1936,15 +1936,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "" msgstr ""
@ -2182,8 +2182,8 @@ msgstr ""
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2876,7 +2876,7 @@ msgstr ""
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "" msgstr ""
@ -2973,7 +2973,7 @@ msgstr ""
msgid "Load Average" msgid "Load Average"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3297,7 +3297,7 @@ msgstr ""
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "" msgstr ""
@ -3386,8 +3386,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3435,7 +3435,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -3456,7 +3456,7 @@ msgstr ""
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3657,11 +3657,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "" msgstr ""
@ -3800,7 +3800,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4043,7 +4043,7 @@ msgstr ""
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4476,19 +4476,19 @@ msgstr ""
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "" msgstr ""
@ -4590,7 +4590,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4601,7 +4601,7 @@ msgid "Save"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "" msgstr ""
@ -4623,11 +4623,11 @@ msgstr ""
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "" msgstr ""
@ -4642,9 +4642,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4758,7 +4758,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "" msgstr ""
@ -4871,7 +4871,7 @@ msgstr ""
msgid "Start priority" msgid "Start priority"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -4992,7 +4992,7 @@ msgstr ""
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5097,7 +5097,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5257,7 +5257,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5351,8 +5351,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5571,7 +5571,7 @@ msgstr ""
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "" msgstr ""
@ -5597,7 +5597,7 @@ msgstr ""
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5612,21 +5612,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -5987,7 +5987,7 @@ msgstr ""
msgid "Write system log to file" msgid "Write system log to file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@ -6201,7 +6201,7 @@ msgstr ""
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "" msgstr ""
@ -6309,7 +6309,7 @@ msgstr ""
msgid "unlimited" msgid "unlimited"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -23,7 +23,7 @@ msgstr "%.1f dB"
msgid "%d Bit" msgid "%d Bit"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "" msgstr ""
@ -59,11 +59,11 @@ msgid "-- Additional Field --"
msgstr "-- Camp addicional --" msgstr "-- Camp addicional --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -71,7 +71,7 @@ msgstr "-- Escolliu, si us plau --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- personalitzat --" msgstr "-- personalitzat --"
@ -243,7 +243,7 @@ msgstr ""
"Avís: cal reiniciar manualment el servei cron si el fitxer crontab estava " "Avís: cal reiniciar manualment el servei cron si el fitxer crontab estava "
"buit abans d'editar-lo." "buit abans d'editar-lo."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "" msgstr ""
@ -367,11 +367,11 @@ msgstr "Arrendaments DHCPv6 actius"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -654,16 +654,16 @@ msgstr "Qualsevol zona"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -886,8 +886,8 @@ msgstr "Número d'unitat de pont"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "Aixecar a l'engegada" msgstr "Aixecar a l'engegada"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
@ -918,8 +918,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -985,11 +985,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Cadena" msgstr "Cadena"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Canvis" msgstr "Canvis"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "" msgstr ""
@ -1135,16 +1135,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Configuració" msgstr "Configuració"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "" msgstr ""
@ -1191,7 +1191,7 @@ msgstr ""
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1401,11 +1401,11 @@ msgid ""
"servers to clients." "servers to clients."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1417,7 +1417,7 @@ msgstr "Suprimeix"
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1434,7 +1434,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "Descripció" msgstr "Descripció"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1479,7 +1479,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "" msgstr ""
@ -1496,7 +1496,7 @@ msgstr "Diagnòstics"
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Directori" msgstr "Directori"
@ -1563,10 +1563,10 @@ msgstr ""
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1604,7 +1604,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "" msgstr ""
@ -1616,7 +1616,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1656,7 +1656,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1700,9 +1700,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "Mètode EAP" msgstr "Mètode EAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1974,7 +1974,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -1982,15 +1982,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "Fitxer" msgstr "Fitxer"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "No hi ha accés al fitxer" msgstr "No hi ha accés al fitxer"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "Nom de fitxer" msgstr "Nom de fitxer"
@ -2230,8 +2230,8 @@ msgstr ""
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "Vés a la configuració de contrasenya" msgstr "Vés a la configuració de contrasenya"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2936,7 +2936,7 @@ msgstr "Deixeu-ho en blanc per autodetectar"
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "Deixeu-ho en blanc per utilitzar l'adreça WAN actual" msgstr "Deixeu-ho en blanc per utilitzar l'adreça WAN actual"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "Llegenda:" msgstr "Llegenda:"
@ -3035,7 +3035,7 @@ msgstr "Càrrega"
msgid "Load Average" msgid "Load Average"
msgstr "Càrrega mitjana" msgstr "Càrrega mitjana"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3359,7 +3359,7 @@ msgstr "Monitor"
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "" msgstr ""
@ -3450,8 +3450,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Candidats de servidor NTP" msgstr "Candidats de servidor NTP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3499,7 +3499,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "Següent" msgstr "Següent"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "No" msgstr "No"
@ -3520,7 +3520,7 @@ msgstr ""
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3721,11 +3721,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Opció canviada" msgstr "Opció canviada"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Opció treta" msgstr "Opció treta"
@ -3864,7 +3864,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Visió de conjunt" msgstr "Visió de conjunt"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4107,7 +4107,7 @@ msgstr "Paquets"
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Si us plau entra el teu nom d'usuari i contrasenya." msgstr "Si us plau entra el teu nom d'usuari i contrasenya."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4542,19 +4542,19 @@ msgstr "Restaura còpia de seguretat"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "Mostra/amaga la contrasenya" msgstr "Mostra/amaga la contrasenya"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Reverteix" msgstr "Reverteix"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "" msgstr ""
@ -4658,7 +4658,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4669,7 +4669,7 @@ msgid "Save"
msgstr "Desa" msgstr "Desa"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Desa i aplica" msgstr "Desa i aplica"
@ -4691,11 +4691,11 @@ msgstr "Escaneja"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Tasques programades" msgstr "Tasques programades"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Secció afegida" msgstr "Secció afegida"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Secció treta" msgstr "Secció treta"
@ -4710,9 +4710,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4826,7 +4826,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "Senyal:" msgstr "Senyal:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Mida" msgstr "Mida"
@ -4939,7 +4939,7 @@ msgstr "Inici"
msgid "Start priority" msgid "Start priority"
msgstr "Prioritat d'inici" msgstr "Prioritat d'inici"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -5060,7 +5060,7 @@ msgstr "Protocol de commutador"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5167,7 +5167,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5340,7 +5340,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5445,8 +5445,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5669,7 +5669,7 @@ msgstr ""
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Canvis sense desar" msgstr "Canvis sense desar"
@ -5695,7 +5695,7 @@ msgstr "Tipus de protocol no suportat."
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5710,21 +5710,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "Puja un arxiu..." msgstr "Puja un arxiu..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -6087,7 +6087,7 @@ msgstr "Escriure les peticions DNS rebudes al registre del sistema"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "Escriure el registre del sistema al fitxer" msgstr "Escriure el registre del sistema al fitxer"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "Sí" msgstr "Sí"
@ -6310,7 +6310,7 @@ msgstr "cap enllaç"
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "cap" msgstr "cap"
@ -6418,7 +6418,7 @@ msgstr "desconegut"
msgid "unlimited" msgid "unlimited"
msgstr "il·limitat" msgstr "il·limitat"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -20,7 +20,7 @@ msgstr "%.1f dB"
msgid "%d Bit" msgid "%d Bit"
msgstr "%d bitů" msgstr "%d bitů"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "%d neplatné/á pole" msgstr "%d neplatné/á pole"
@ -56,11 +56,11 @@ msgid "-- Additional Field --"
msgstr "-- Doplňující pole --" msgstr "-- Doplňující pole --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -68,7 +68,7 @@ msgstr "-- Prosím vyberte --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- vlastní --" msgstr "-- vlastní --"
@ -241,7 +241,7 @@ msgstr ""
"<br/>Poznámka: Pokud byl soubor crontab před úpravami prázdný, je nutné " "<br/>Poznámka: Pokud byl soubor crontab před úpravami prázdný, je nutné "
"službu cron restartovat ručně." "službu cron restartovat ručně."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "Adresář se stejným názvem již existuje." msgstr "Adresář se stejným názvem již existuje."
@ -369,11 +369,11 @@ msgstr "Aktivní propůjčené DHCPv6 adresy (leases)"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -659,16 +659,16 @@ msgstr "Libovolná zóna"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "Aplikovat zálohu?" msgstr "Aplikovat zálohu?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "Provádění požadavku selhalo se stavem <code>%h</code>" msgstr "Provádění požadavku selhalo se stavem <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "Přesto aplikovat" msgstr "Přesto aplikovat"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "Aplikuji změny nastavení… %ds" msgstr "Aplikuji změny nastavení… %ds"
@ -899,8 +899,8 @@ msgstr "Číslo síťového mostu"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "Zapnout po startu" msgstr "Zapnout po startu"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "Procházet…" msgstr "Procházet…"
@ -932,8 +932,8 @@ msgstr "Mezipaměť"
msgid "Call failed" msgid "Call failed"
msgstr "Volání selhalo" msgstr "Volání selhalo"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -999,11 +999,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Řetěz" msgstr "Řetěz"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Změny" msgstr "Změny"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "Změny byly vráceny zpět." msgstr "Změny byly vráceny zpět."
@ -1159,16 +1159,16 @@ msgstr ""
"robustnosti při vyjednávání klíče, obzvláště v prostředích s velkým síťovým " "robustnosti při vyjednávání klíče, obzvláště v prostředích s velkým síťovým "
"provozem." "provozem."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Nastavení" msgstr "Nastavení"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "Změny nastavení byly provedeny." msgstr "Změny nastavení byly provedeny."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "Změny nastavení byly vráceny zpět!" msgstr "Změny nastavení byly vráceny zpět!"
@ -1215,7 +1215,7 @@ msgstr "Obsah byl uložen."
msgid "Continue" msgid "Continue"
msgstr "Pokračovat" msgstr "Pokračovat"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1432,11 +1432,11 @@ msgstr ""
"Další možnosti DHCP, například \"<code>6,192.168.2.1,192.168.2.2</code>\", " "Další možnosti DHCP, například \"<code>6,192.168.2.1,192.168.2.2</code>\", "
"které odkazuje na různé DNS servery pro klienty." "které odkazuje na různé DNS servery pro klienty."
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1448,7 +1448,7 @@ msgstr "Odstranit"
msgid "Delete key" msgid "Delete key"
msgstr "Smazat klíč" msgstr "Smazat klíč"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "Odstranění se nezdařilo: %s" msgstr "Odstranění se nezdařilo: %s"
@ -1465,7 +1465,7 @@ msgstr "Interval zprávy Delivery Traffic Indication"
msgid "Description" msgid "Description"
msgstr "Popis" msgstr "Popis"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "Odznačit" msgstr "Odznačit"
@ -1510,7 +1510,7 @@ msgstr "Zařízení není aktivní"
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "Zařízení se restartuje…" msgstr "Zařízení se restartuje…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "Zařízení není dostupné!" msgstr "Zařízení není dostupné!"
@ -1527,7 +1527,7 @@ msgstr "Diagnostika"
msgid "Dial number" msgid "Dial number"
msgstr "Vytáčené číslo" msgstr "Vytáčené číslo"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Adresář" msgstr "Adresář"
@ -1594,10 +1594,10 @@ msgstr "Odpojit"
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "Odpojení selhalo" msgstr "Odpojení selhalo"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1637,7 +1637,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "Nepřeposílat reverzní dotazy na místní sítě" msgstr "Nepřeposílat reverzní dotazy na místní sítě"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "Opravdu chcete smazat \"%s\"?" msgstr "Opravdu chcete smazat \"%s\"?"
@ -1649,7 +1649,7 @@ msgstr "Opravdu chcete smazat následující SSH klíč?"
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "Opravdu chcete smazat veškeré nastavení?" msgstr "Opravdu chcete smazat veškeré nastavení?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Opravdu chcete rekurzivně smazat adresář \"%s\"?" msgstr "Opravdu chcete rekurzivně smazat adresář \"%s\"?"
@ -1689,7 +1689,7 @@ msgstr "Stáhnout mtdblock"
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "Downstream SNR offset" msgstr "Downstream SNR offset"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "Přetažením změníte pořadí" msgstr "Přetažením změníte pořadí"
@ -1735,9 +1735,9 @@ msgstr "EA bitová délka"
msgid "EAP-Method" msgid "EAP-Method"
msgstr "Metoda EAP" msgstr "Metoda EAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -2017,7 +2017,7 @@ msgstr "Fast Transition protokol"
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "Nepodařilo se změnit systémové heslo." msgstr "Nepodařilo se změnit systémové heslo."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
#, fuzzy #, fuzzy
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -2028,15 +2028,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Nepodařilo se vykonat \"/etc/init.d/%s %s\" akce: %s" msgstr "Nepodařilo se vykonat \"/etc/init.d/%s %s\" akce: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "Soubor" msgstr "Soubor"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "Soubor není přístupný" msgstr "Soubor není přístupný"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "Název souboru" msgstr "Název souboru"
@ -2279,8 +2279,8 @@ msgstr "Globální možnosti sítě"
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "Přejít na nastavení hesla..." msgstr "Přejít na nastavení hesla..."
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2988,7 +2988,7 @@ msgstr "Ponechte prázdné pro automatickou detekci"
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "Ponecháte-li prázdné, použije stávající WAN adresu" msgstr "Ponecháte-li prázdné, použije stávající WAN adresu"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "Legenda:" msgstr "Legenda:"
@ -3104,7 +3104,7 @@ msgstr "Zátěž"
msgid "Load Average" msgid "Load Average"
msgstr "Průměrná zátěž" msgstr "Průměrná zátěž"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "Načítání obsahu adresáře…" msgstr "Načítání obsahu adresáře…"
@ -3437,7 +3437,7 @@ msgstr "Sledování"
msgid "More Characters" msgid "More Characters"
msgstr "Více znaků" msgstr "Více znaků"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "Více…" msgstr "Více…"
@ -3529,8 +3529,8 @@ msgstr "NT doména"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Kandidáti NTP serveru" msgstr "Kandidáti NTP serveru"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3578,7 +3578,7 @@ msgstr "Nový název rozhraní…"
msgid "Next »" msgid "Next »"
msgstr "Další »" msgstr "Další »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "Ne" msgstr "Ne"
@ -3599,7 +3599,7 @@ msgstr "Žádné NAT-T"
msgid "No data received" msgid "No data received"
msgstr "Nebyla přijata žádná data" msgstr "Nebyla přijata žádná data"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "V tomto adresáři nejsou žádné položky" msgstr "V tomto adresáři nejsou žádné položky"
@ -3801,11 +3801,11 @@ msgstr "OpenConnect (CISCO AnyConnect)"
msgid "Operating frequency" msgid "Operating frequency"
msgstr "Provozní frekvence" msgstr "Provozní frekvence"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Volba změněna" msgstr "Volba změněna"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Volba odstraněna" msgstr "Volba odstraněna"
@ -3960,7 +3960,7 @@ msgstr "Přepsat tabulku, používanou pro vnitřní cesty"
msgid "Overview" msgid "Overview"
msgstr "Přehled" msgstr "Přehled"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "Přepsat existující soubor \"%s\"?" msgstr "Přepsat existující soubor \"%s\"?"
@ -4203,7 +4203,7 @@ msgstr "paketů"
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Prosím vložte vaše uživatelské jméno a heslo." msgstr "Prosím vložte vaše uživatelské jméno a heslo."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "Vyberte soubor, který chcete nahrát." msgstr "Vyberte soubor, který chcete nahrát."
@ -4657,19 +4657,19 @@ msgstr "Obnovit ze zálohy"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "Odhalit/skrýt heslo" msgstr "Odhalit/skrýt heslo"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Vrátit zpět" msgstr "Vrátit zpět"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "Vrátit změny" msgstr "Vrátit změny"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "Požadavek na vrácení se nezdařil se stavem <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:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "Vracení konfigurace…" msgstr "Vracení konfigurace…"
@ -4772,7 +4772,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "Odkládací soubor/oddíl" msgstr "Odkládací soubor/oddíl"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4783,7 +4783,7 @@ msgid "Save"
msgstr "Uložit" msgstr "Uložit"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Uložit & použít" msgstr "Uložit & použít"
@ -4805,11 +4805,11 @@ msgstr "Skenovat"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Naplánované úlohy" msgstr "Naplánované úlohy"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Přidána sekce" msgstr "Přidána sekce"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Sekce odebrána" msgstr "Sekce odebrána"
@ -4827,9 +4827,9 @@ msgstr ""
"kontrola formátu firmware. Použijte, pouze pokud jste si jisti, že firmware " "kontrola formátu firmware. Použijte, pouze pokud jste si jisti, že firmware "
"je správný a určený pro vaše zařízení!" "je správný a určený pro vaše zařízení!"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "Vybrat soubor…" msgstr "Vybrat soubor…"
@ -4947,7 +4947,7 @@ msgstr "Útlum signálu (SATN)"
msgid "Signal:" msgid "Signal:"
msgstr "Signál:" msgstr "Signál:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Velikost" msgstr "Velikost"
@ -5072,7 +5072,7 @@ msgstr "Start"
msgid "Start priority" msgid "Start priority"
msgstr "Priorita spouštění" msgstr "Priorita spouštění"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "Provádění konfiguračních změn…" msgstr "Provádění konfiguračních změn…"
@ -5199,7 +5199,7 @@ msgstr "Směrovací protokol"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "Přepnout na notaci seznamu CIDR" msgstr "Přepnout na notaci seznamu CIDR"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "Symbolický odkaz" msgstr "Symbolický odkaz"
@ -5308,7 +5308,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "Konfigurační soubor nelze načíst z důvodu následující chyby:" msgstr "Konfigurační soubor nelze načíst z důvodu následující chyby:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5503,7 +5503,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "Žádné aktivní zápůjčky" msgstr "Žádné aktivní zápůjčky"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "Žádné změny k provedení" msgstr "Žádné změny k provedení"
@ -5623,8 +5623,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5846,7 +5846,7 @@ msgstr "Odpojit"
msgid "Unnamed key" msgid "Unnamed key"
msgstr "Nepojmenovaný klíč" msgstr "Nepojmenovaný klíč"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Neuložené změny" msgstr "Neuložené změny"
@ -5872,7 +5872,7 @@ msgstr "Nepodporovaný typ protokolu."
msgid "Up" msgid "Up"
msgstr "Nahoru" msgstr "Nahoru"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "Nahrát" msgstr "Nahrát"
@ -5889,21 +5889,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "Nahrát archiv..." msgstr "Nahrát archiv..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "Nahrát soubor" msgstr "Nahrát soubor"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "Nahrát soubor…" msgstr "Nahrát soubor…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "Požadavek na nahrání selhal: %s" msgstr "Požadavek na nahrání selhal: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "Nahrávání souboru…" msgstr "Nahrávání souboru…"
@ -6280,7 +6280,7 @@ msgstr "Zapisovat přijaté požadavky DNS do systemového logu"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "Zapisovat systémový protokol do souboru" msgstr "Zapisovat systémový protokol do souboru"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "Ano" msgstr "Ano"
@ -6502,7 +6502,7 @@ msgstr "žádné spojení"
msgid "non-empty value" msgid "non-empty value"
msgstr "neprázdná hodnota" msgstr "neprázdná hodnota"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "žádný" msgstr "žádný"
@ -6610,7 +6610,7 @@ msgstr "neznámý"
msgid "unlimited" msgid "unlimited"
msgstr "neomezený" msgstr "neomezený"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -23,7 +23,7 @@ msgstr "%.1f dB"
msgid "%d Bit" msgid "%d Bit"
msgstr "%d Bit" msgstr "%d Bit"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "%d ungültige Felder" msgstr "%d ungültige Felder"
@ -59,11 +59,11 @@ msgid "-- Additional Field --"
msgstr "-- Zusätzliches Feld --" msgstr "-- Zusätzliches Feld --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -71,7 +71,7 @@ msgstr "-- Bitte auswählen --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- benutzerdefiniert --" msgstr "-- benutzerdefiniert --"
@ -247,7 +247,7 @@ msgstr ""
"<br/>Hinweis: Der Cron-Dienst muss manuell neu gestartet werden wenn die " "<br/>Hinweis: Der Cron-Dienst muss manuell neu gestartet werden wenn die "
"Crontab-Datei vor der Bearbeitung leer war." "Crontab-Datei vor der Bearbeitung leer war."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "Es existiert bereits ein Verzeichnis mit dem gleichen Namen." msgstr "Es existiert bereits ein Verzeichnis mit dem gleichen Namen."
@ -372,11 +372,11 @@ msgstr "Aktive DHCPv6-Leases"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -668,18 +668,18 @@ msgstr "Beliebige Zone"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "Backup anwenden?" msgstr "Backup anwenden?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
"Anforderung zur Anwendung der Änderungen mit Status <code>%h</code> " "Anforderung zur Anwendung der Änderungen mit Status <code>%h</code> "
"fehlgeschlagen" "fehlgeschlagen"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "Ungeprüft übernehmen" msgstr "Ungeprüft übernehmen"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "Warte auf das Anwenden der Konfiguration… %ds" msgstr "Warte auf das Anwenden der Konfiguration… %ds"
@ -910,8 +910,8 @@ msgstr "Geräteindex der Brücke"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "Während des Bootvorgangs starten" msgstr "Während des Bootvorgangs starten"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "Durchsuchen…" msgstr "Durchsuchen…"
@ -944,8 +944,8 @@ msgstr "Im Cache"
msgid "Call failed" msgid "Call failed"
msgstr "Anruf fehlgeschlagen" msgstr "Anruf fehlgeschlagen"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -1011,11 +1011,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Kette (Chain)" msgstr "Kette (Chain)"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Änderungen" msgstr "Änderungen"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "Änderungen wurden verworfen." msgstr "Änderungen wurden verworfen."
@ -1171,16 +1171,16 @@ msgstr ""
"Kompatibilitätsprobleme verursachen und die Zuverlässigkeit von " "Kompatibilitätsprobleme verursachen und die Zuverlässigkeit von "
"Schlüsselerneuerungen in ausgelasteten Umgebungen verringern." "Schlüsselerneuerungen in ausgelasteten Umgebungen verringern."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Konfiguration" msgstr "Konfiguration"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "Die Konfiguration wurde angewendet." msgstr "Die Konfiguration wurde angewendet."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "Die Konfiguration wurde zurückgerollt!" msgstr "Die Konfiguration wurde zurückgerollt!"
@ -1227,7 +1227,7 @@ msgstr "Inhalte wurden gespeichert."
msgid "Continue" msgid "Continue"
msgstr "Fortfahren" msgstr "Fortfahren"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1446,11 +1446,11 @@ msgstr ""
"Definiert zusätzliche DHCP-Optionen, z.B. \"<code>6,192.168.2.1,192.168.2.2</" "Definiert zusätzliche DHCP-Optionen, z.B. \"<code>6,192.168.2.1,192.168.2.2</"
"code>\" um einen anderen DNS-Server an Clients zu verteilen." "code>\" um einen anderen DNS-Server an Clients zu verteilen."
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1462,7 +1462,7 @@ msgstr "Löschen"
msgid "Delete key" msgid "Delete key"
msgstr "Schlüssel löschen" msgstr "Schlüssel löschen"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "Löschauftrag fehlgeschlagen: %s" msgstr "Löschauftrag fehlgeschlagen: %s"
@ -1479,7 +1479,7 @@ msgstr "DTIM (Delivery Traffic Indication) Nachrichtenintervall"
msgid "Description" msgid "Description"
msgstr "Beschreibung" msgstr "Beschreibung"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "Abwählen" msgstr "Abwählen"
@ -1524,7 +1524,7 @@ msgstr "Netzwerkadapter ist nicht aktiv"
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "Netzwerkadapter startet neu…" msgstr "Netzwerkadapter startet neu…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "Das Gerät ist nicht erreichbar!" msgstr "Das Gerät ist nicht erreichbar!"
@ -1541,7 +1541,7 @@ msgstr "Diagnosen"
msgid "Dial number" msgid "Dial number"
msgstr "Einwahlnummer" msgstr "Einwahlnummer"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Verzeichnis" msgstr "Verzeichnis"
@ -1608,10 +1608,10 @@ msgstr "Trennen"
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "Verbindungstrennung fehlgeschlagen" msgstr "Verbindungstrennung fehlgeschlagen"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1654,7 +1654,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "Keine Rückwärtsauflösungen für lokale Netzwerke weiterleiten" msgstr "Keine Rückwärtsauflösungen für lokale Netzwerke weiterleiten"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "Soll \"%s\" wirklich gelöscht werden?" msgstr "Soll \"%s\" wirklich gelöscht werden?"
@ -1667,7 +1667,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "Möchten Sie wirklich alle Einstellungen löschen?" msgstr "Möchten Sie wirklich alle Einstellungen löschen?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Soll das Verzeichnis \"%s\" wirklich rekursiv gelöscht werden?" msgstr "Soll das Verzeichnis \"%s\" wirklich rekursiv gelöscht werden?"
@ -1707,7 +1707,7 @@ msgstr "Mtdblock-Datei herunterladen"
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "Downstream SNR-Offset" msgstr "Downstream SNR-Offset"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "Ziehen zum Umsortieren" msgstr "Ziehen zum Umsortieren"
@ -1754,9 +1754,9 @@ msgstr "EA-Bitlänge"
msgid "EAP-Method" msgid "EAP-Method"
msgstr "EAP-Methode" msgstr "EAP-Methode"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -2036,7 +2036,7 @@ msgstr "FT Protokoll"
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "Das Systempasswort konnte nicht geändert werden." msgstr "Das Systempasswort konnte nicht geändert werden."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
"Konnte nicht innerhalb von %d Sekunden bestätigen, warte auf Zurückrollen " "Konnte nicht innerhalb von %d Sekunden bestätigen, warte auf Zurückrollen "
@ -2046,15 +2046,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Fehler beim Ausführen der Aktion \"/etc/init.d/%s %s\": %s" msgstr "Fehler beim Ausführen der Aktion \"/etc/init.d/%s %s\": %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "Datei" msgstr "Datei"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "Datei nicht verfügbar" msgstr "Datei nicht verfügbar"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "Dateiname" msgstr "Dateiname"
@ -2300,8 +2300,8 @@ msgstr "Globale Netzwerkeinstellungen"
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "Zur Passwortkonfiguration..." msgstr "Zur Passwortkonfiguration..."
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -3012,7 +3012,7 @@ msgstr "Zur automatischen Erkennung leer lassen"
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "Leer lassen um die aktuelle WAN-Adresse zu verwenden" msgstr "Leer lassen um die aktuelle WAN-Adresse zu verwenden"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "Legende:" msgstr "Legende:"
@ -3127,7 +3127,7 @@ msgstr "Last"
msgid "Load Average" msgid "Load Average"
msgstr "Durchschnittslast" msgstr "Durchschnittslast"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "Lade Verzeichniseinträge…" msgstr "Lade Verzeichniseinträge…"
@ -3458,7 +3458,7 @@ msgstr "Monitor"
msgid "More Characters" msgid "More Characters"
msgstr "Mehr Zeichen" msgstr "Mehr Zeichen"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "Mehr…" msgstr "Mehr…"
@ -3549,8 +3549,8 @@ msgstr "NT-Domäne"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "NTP Server Kandidaten" msgstr "NTP Server Kandidaten"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3598,7 +3598,7 @@ msgstr "Name der neuen Schnittstelle…"
msgid "Next »" msgid "Next »"
msgstr "Weiter »" msgstr "Weiter »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "Nein" msgstr "Nein"
@ -3619,7 +3619,7 @@ msgstr "Kein NAT-T"
msgid "No data received" msgid "No data received"
msgstr "Keine Daten empfangen" msgstr "Keine Daten empfangen"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "Keine Einträge in diesem Verzeichnis" msgstr "Keine Einträge in diesem Verzeichnis"
@ -3822,11 +3822,11 @@ msgstr "OpenConnect (CISCO AnyConnect)"
msgid "Operating frequency" msgid "Operating frequency"
msgstr "Betriebsfrequenz" msgstr "Betriebsfrequenz"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Option geändert" msgstr "Option geändert"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Option entfernt" msgstr "Option entfernt"
@ -3981,7 +3981,7 @@ msgstr "Überschreibt die benutzte Tabelle für interne Routen"
msgid "Overview" msgid "Overview"
msgstr "Übersicht" msgstr "Übersicht"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "Existierende Datei \"%s\" überschreiben?" msgstr "Existierende Datei \"%s\" überschreiben?"
@ -4224,7 +4224,7 @@ msgstr "Pkte."
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Bitte Benutzernamen und Passwort eingeben." msgstr "Bitte Benutzernamen und Passwort eingeben."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "Bitte wählen Sie die hochzuladende Datei aus." msgstr "Bitte wählen Sie die hochzuladende Datei aus."
@ -4683,19 +4683,19 @@ msgstr "Sicherung wiederherstellen"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "Passwort zeigen/verstecken" msgstr "Passwort zeigen/verstecken"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Verwerfen" msgstr "Verwerfen"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "Änderungen verwerfen" msgstr "Änderungen verwerfen"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "Anforderung zum Verwerfen mit Status <code>%h</code> fehlgeschlagen" msgstr "Anforderung zum Verwerfen mit Status <code>%h</code> fehlgeschlagen"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "Verwerfe Konfigurationsänderungen…" msgstr "Verwerfe Konfigurationsänderungen…"
@ -4799,7 +4799,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "SWAP" msgstr "SWAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4810,7 +4810,7 @@ msgid "Save"
msgstr "Speichern" msgstr "Speichern"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Speichern & Anwenden" msgstr "Speichern & Anwenden"
@ -4832,11 +4832,11 @@ msgstr "Suche"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Geplante Aufgaben" msgstr "Geplante Aufgaben"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Sektion hinzugefügt" msgstr "Sektion hinzugefügt"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Sektion entfernt" msgstr "Sektion entfernt"
@ -4854,9 +4854,9 @@ msgstr ""
"wenn die Formatüberprüfung fehlschlägt. Diese Option nur benutzen wenn das " "wenn die Formatüberprüfung fehlschlägt. Diese Option nur benutzen wenn das "
"Abbild korrekt und für dieses Gerät bestimmt ist!" "Abbild korrekt und für dieses Gerät bestimmt ist!"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "Datei auswählen…" msgstr "Datei auswählen…"
@ -4975,7 +4975,7 @@ msgstr "Signaldämpfung (SATN)"
msgid "Signal:" msgid "Signal:"
msgstr "Signal:" msgstr "Signal:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Größe" msgstr "Größe"
@ -5103,7 +5103,7 @@ msgstr "Start"
msgid "Start priority" msgid "Start priority"
msgstr "Startpriorität" msgstr "Startpriorität"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "Starte Anwendung der Konfigurationsänderungen…" msgstr "Starte Anwendung der Konfigurationsänderungen…"
@ -5231,7 +5231,7 @@ msgstr "Wechsle Protokoll"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "Auf CIDR-Listen-Notation wechseln" msgstr "Auf CIDR-Listen-Notation wechseln"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "Symbolischer Link" msgstr "Symbolischer Link"
@ -5346,7 +5346,7 @@ msgstr ""
"Die Konfigurationsdatei konnte aufgrund der folgenden Fehler nicht geladen " "Die Konfigurationsdatei konnte aufgrund der folgenden Fehler nicht geladen "
"werden:" "werden:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5553,7 +5553,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "Es gibt keine aktiven Leases" msgstr "Es gibt keine aktiven Leases"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "Es gibt keine anzuwendenden Änderungen" msgstr "Es gibt keine anzuwendenden Änderungen"
@ -5674,8 +5674,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5899,7 +5899,7 @@ msgstr "Aushängen"
msgid "Unnamed key" msgid "Unnamed key"
msgstr "Unbenannter Schlüssel" msgstr "Unbenannter Schlüssel"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Ungespeicherte Änderungen" msgstr "Ungespeicherte Änderungen"
@ -5925,7 +5925,7 @@ msgstr "Nicht unterstützter Protokolltyp."
msgid "Up" msgid "Up"
msgstr "Hoch" msgstr "Hoch"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "Hochladen" msgstr "Hochladen"
@ -5942,21 +5942,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "Backup wiederherstellen..." msgstr "Backup wiederherstellen..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "Datei hochladen" msgstr "Datei hochladen"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "Datei hochladen…" msgstr "Datei hochladen…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "Upload-Anfrage fehlgeschlagen: %s" msgstr "Upload-Anfrage fehlgeschlagen: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "Datei wird hochgeladen…" msgstr "Datei wird hochgeladen…"
@ -6335,7 +6335,7 @@ msgstr "Empfangene DNS-Anfragen in das Systemprotokoll schreiben"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "Systemprotokoll in Datei schreiben" msgstr "Systemprotokoll in Datei schreiben"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "Ja" msgstr "Ja"
@ -6559,7 +6559,7 @@ msgstr "nicht verbunden"
msgid "non-empty value" msgid "non-empty value"
msgstr "nicht-leeren Wert" msgstr "nicht-leeren Wert"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "keine" msgstr "keine"
@ -6667,7 +6667,7 @@ msgstr "unbekannt"
msgid "unlimited" msgid "unlimited"
msgstr "unbegrenzt" msgstr "unbegrenzt"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -22,7 +22,7 @@ msgstr "%.1f dB"
msgid "%d Bit" msgid "%d Bit"
msgstr "%d Bit" msgstr "%d Bit"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "%d μη έγκυρο/α πεδίο/α" msgstr "%d μη έγκυρο/α πεδίο/α"
@ -58,11 +58,11 @@ msgid "-- Additional Field --"
msgstr "-- Επιπλέον Πεδίο --" msgstr "-- Επιπλέον Πεδίο --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -70,7 +70,7 @@ msgstr "-- Παρακαλώ επιλέξτε --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- προσαρμοσμένο --" msgstr "-- προσαρμοσμένο --"
@ -240,7 +240,7 @@ msgid ""
"was empty before editing." "was empty before editing."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "Ένας φάκελος με το ίδιο όνομα υπάρχει ήδη." msgstr "Ένας φάκελος με το ίδιο όνομα υπάρχει ήδη."
@ -366,11 +366,11 @@ msgstr ""
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -656,16 +656,16 @@ msgstr "Οιαδήποτε ζώνη"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -889,8 +889,8 @@ msgstr "Αριθμός μονάδας γέφυρας"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "Ανέβασμα κατά την εκκίνηση" msgstr "Ανέβασμα κατά την εκκίνηση"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
@ -921,8 +921,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -988,11 +988,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Αλυσίδα" msgstr "Αλυσίδα"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Αλλαγές" msgstr "Αλλαγές"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "" msgstr ""
@ -1139,16 +1139,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Διαμόρφωση" msgstr "Διαμόρφωση"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "" msgstr ""
@ -1195,7 +1195,7 @@ msgstr ""
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1407,11 +1407,11 @@ msgstr ""
"Ορίστε επιπλέον επιλογές DHCP, που διαφημίζουν διαφορετικούς εξυπηρετητές " "Ορίστε επιπλέον επιλογές DHCP, που διαφημίζουν διαφορετικούς εξυπηρετητές "
"DNS στους πελάτες, για παράδειγμα \"<code>6,192.168.2.1,192.168.2.2</code>\"." "DNS στους πελάτες, για παράδειγμα \"<code>6,192.168.2.1,192.168.2.2</code>\"."
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1423,7 +1423,7 @@ msgstr "Διαγραφή"
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1440,7 +1440,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "Περιγραφή" msgstr "Περιγραφή"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1485,7 +1485,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "" msgstr ""
@ -1502,7 +1502,7 @@ msgstr "Διαγνωστικά"
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Φάκελος" msgstr "Φάκελος"
@ -1569,10 +1569,10 @@ msgstr ""
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1614,7 +1614,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "" msgstr ""
@ -1626,7 +1626,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1666,7 +1666,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1713,9 +1713,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "Μέθοδος EAP" msgstr "Μέθοδος EAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1990,7 +1990,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -1998,15 +1998,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "Αρχείο" msgstr "Αρχείο"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "" msgstr ""
@ -2246,8 +2246,8 @@ msgstr ""
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2956,7 +2956,7 @@ msgstr "Αφήστε το κενό για να γίνει αυτόματη αν
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "Αφήστε το κενό για να γίνει χρήση της τρέχουσας διεύθυνσης WAN" msgstr "Αφήστε το κενό για να γίνει χρήση της τρέχουσας διεύθυνσης WAN"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "Υπόμνημα:" msgstr "Υπόμνημα:"
@ -3053,7 +3053,7 @@ msgstr "Φόρτος"
msgid "Load Average" msgid "Load Average"
msgstr "Μέσος όρος φόρτου" msgstr "Μέσος όρος φόρτου"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3378,7 +3378,7 @@ msgstr "Παρακολούθηση"
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "" msgstr ""
@ -3469,8 +3469,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3518,7 +3518,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "Επόμενο »" msgstr "Επόμενο »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -3539,7 +3539,7 @@ msgstr ""
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3740,11 +3740,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Η επιλογή άλλαξε" msgstr "Η επιλογή άλλαξε"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Η επιλογή αφαιρέθηκε" msgstr "Η επιλογή αφαιρέθηκε"
@ -3883,7 +3883,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Επισκόπηση" msgstr "Επισκόπηση"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4126,7 +4126,7 @@ msgstr "Πκτ."
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Παρακαλώ εισάγετε όνομα χρήστη και κωδικό πρόσβασης." msgstr "Παρακαλώ εισάγετε όνομα χρήστη και κωδικό πρόσβασης."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4562,19 +4562,19 @@ msgstr "Επαναφορά αντιγράφου ασφαλείας"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Αναίρεση" msgstr "Αναίρεση"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "" msgstr ""
@ -4679,7 +4679,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4690,7 +4690,7 @@ msgid "Save"
msgstr "Αποθήκευση" msgstr "Αποθήκευση"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Αποθήκευση & Εφαρμογή" msgstr "Αποθήκευση & Εφαρμογή"
@ -4712,11 +4712,11 @@ msgstr "Σάρωση"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Προγραμματισμένες Εργασίες" msgstr "Προγραμματισμένες Εργασίες"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "" msgstr ""
@ -4731,9 +4731,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4847,7 +4847,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "Σήμα:" msgstr "Σήμα:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Μέγεθος" msgstr "Μέγεθος"
@ -4960,7 +4960,7 @@ msgstr "Αρχή"
msgid "Start priority" msgid "Start priority"
msgstr "Προτεραιότητα εκκίνησης" msgstr "Προτεραιότητα εκκίνησης"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -5081,7 +5081,7 @@ msgstr ""
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5188,7 +5188,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5357,7 +5357,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5457,8 +5457,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5681,7 +5681,7 @@ msgstr ""
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Μη-αποθηκευμένες Αλλαγές" msgstr "Μη-αποθηκευμένες Αλλαγές"
@ -5707,7 +5707,7 @@ msgstr ""
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5722,21 +5722,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -6097,7 +6097,7 @@ msgstr "Καταγραφή των ληφθέντων DNS αιτήσεων στο
msgid "Write system log to file" msgid "Write system log to file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@ -6319,7 +6319,7 @@ msgstr ""
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "κανένα" msgstr "κανένα"
@ -6427,7 +6427,7 @@ msgstr ""
msgid "unlimited" msgid "unlimited"
msgstr "απεριόριστα" msgstr "απεριόριστα"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -22,7 +22,7 @@ msgstr ""
msgid "%d Bit" msgid "%d Bit"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgid "-- Additional Field --"
msgstr "-- Additional Field --" msgstr "-- Additional Field --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -70,7 +70,7 @@ msgstr "-- Please choose --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- custom --" msgstr "-- custom --"
@ -240,7 +240,7 @@ msgid ""
"was empty before editing." "was empty before editing."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "" msgstr ""
@ -364,11 +364,11 @@ msgstr ""
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -647,16 +647,16 @@ msgstr "Any zone"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -879,8 +879,8 @@ msgstr "Bridge unit number"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "Bring up on boot" msgstr "Bring up on boot"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
@ -911,8 +911,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -978,11 +978,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Chain" msgstr "Chain"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Changes" msgstr "Changes"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "" msgstr ""
@ -1128,16 +1128,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Configuration" msgstr "Configuration"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "" msgstr ""
@ -1184,7 +1184,7 @@ msgstr ""
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1397,11 +1397,11 @@ msgstr ""
"\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS " "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
"servers to clients." "servers to clients."
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1413,7 +1413,7 @@ msgstr "Delete"
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1430,7 +1430,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "Description" msgstr "Description"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1475,7 +1475,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "" msgstr ""
@ -1492,7 +1492,7 @@ msgstr "Diagnostics"
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Directory" msgstr "Directory"
@ -1557,10 +1557,10 @@ msgstr ""
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1598,7 +1598,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "" msgstr ""
@ -1610,7 +1610,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1650,7 +1650,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1694,9 +1694,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "EAP-Method" msgstr "EAP-Method"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1968,7 +1968,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -1976,15 +1976,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "" msgstr ""
@ -2222,8 +2222,8 @@ msgstr ""
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2926,7 +2926,7 @@ msgstr ""
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "" msgstr ""
@ -3023,7 +3023,7 @@ msgstr "Load"
msgid "Load Average" msgid "Load Average"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3347,7 +3347,7 @@ msgstr "Monitor"
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "" msgstr ""
@ -3438,8 +3438,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3487,7 +3487,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -3508,7 +3508,7 @@ msgstr ""
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3709,11 +3709,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "" msgstr ""
@ -3852,7 +3852,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Overview" msgstr "Overview"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4095,7 +4095,7 @@ msgstr "Pkts."
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Please enter your username and password." msgstr "Please enter your username and password."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4530,19 +4530,19 @@ msgstr "Restore backup"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Revert" msgstr "Revert"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "" msgstr ""
@ -4646,7 +4646,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4657,7 +4657,7 @@ msgid "Save"
msgstr "Save" msgstr "Save"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Save & Apply" msgstr "Save & Apply"
@ -4679,11 +4679,11 @@ msgstr "Scan"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Scheduled Tasks" msgstr "Scheduled Tasks"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "" msgstr ""
@ -4698,9 +4698,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4814,7 +4814,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Size" msgstr "Size"
@ -4927,7 +4927,7 @@ msgstr "Start"
msgid "Start priority" msgid "Start priority"
msgstr "Start priority" msgstr "Start priority"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -5048,7 +5048,7 @@ msgstr ""
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5153,7 +5153,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5322,7 +5322,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5420,8 +5420,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5643,7 +5643,7 @@ msgstr ""
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Unsaved Changes" msgstr "Unsaved Changes"
@ -5669,7 +5669,7 @@ msgstr ""
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5684,21 +5684,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -6061,7 +6061,7 @@ msgstr ""
msgid "Write system log to file" msgid "Write system log to file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@ -6280,7 +6280,7 @@ msgstr ""
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "none" msgstr "none"
@ -6388,7 +6388,7 @@ msgstr ""
msgid "unlimited" msgid "unlimited"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -23,7 +23,7 @@ msgstr "%.1f dB"
msgid "%d Bit" msgid "%d Bit"
msgstr "%d Bit" msgstr "%d Bit"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "%d campo(s) inválido(s)" msgstr "%d campo(s) inválido(s)"
@ -59,11 +59,11 @@ msgid "-- Additional Field --"
msgstr "-- Campo adicional --" msgstr "-- Campo adicional --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -71,7 +71,7 @@ msgstr "-- Por favor elija --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- Personalizado --" msgstr "-- Personalizado --"
@ -246,7 +246,7 @@ msgstr ""
"<br/>Nota: debe reiniciar manualmente el servicio cron si el archivo crontab " "<br/>Nota: debe reiniciar manualmente el servicio cron si el archivo crontab "
"estaba vacío antes de editar." "estaba vacío antes de editar."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "Ya existe un directorio con el mismo nombre." msgstr "Ya existe un directorio con el mismo nombre."
@ -372,11 +372,11 @@ msgstr "Clientes DHCPv6 activos"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -668,16 +668,16 @@ msgstr "Cualquier zona"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "¿Aplicar respaldo?" msgstr "¿Aplicar respaldo?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "Solicitud de aplicar fallida con estado <code>%h</code>" msgstr "Solicitud de aplicar fallida con estado <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "Aplicar sin restricción" msgstr "Aplicar sin restricción"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "Esperando a que se aplique la configuración… %ds" msgstr "Esperando a que se aplique la configuración… %ds"
@ -911,8 +911,8 @@ msgstr "Número de unidad del puente"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "Iniciar en el arranque" msgstr "Iniciar en el arranque"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "Explorar…" msgstr "Explorar…"
@ -944,8 +944,8 @@ msgstr "En caché"
msgid "Call failed" msgid "Call failed"
msgstr "Llamada fallida" msgstr "Llamada fallida"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -983,8 +983,8 @@ msgid ""
"Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See " "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
"`logread -f` during handshake for actual values" "`logread -f` during handshake for actual values"
msgstr "" msgstr ""
"Subcadena de restricción de certificado, p. Ej. /CN=wifi.mycompany.com<br/>" "Subcadena de restricción de certificado, p. Ej. /CN=wifi.mycompany.com<br/"
"Consulte `logread -f` durante el protocolo de enlace para conocer los " ">Consulte `logread -f` durante el protocolo de enlace para conocer los "
"valores reales" "valores reales"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1464 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1464
@ -993,8 +993,8 @@ msgid ""
"Certificate constraint(s) against DNS SAN values (if available)<br />or " "Certificate constraint(s) against DNS SAN values (if available)<br />or "
"Subject CN (exact match)" "Subject CN (exact match)"
msgstr "" msgstr ""
"Restricción(es) de certificado contra valores DNS SAN (si están disponibles)<" "Restricción(es) de certificado contra valores DNS SAN (si están "
"br />o Asunto CN (coincidencia exacta)" "disponibles)<br />o Asunto CN (coincidencia exacta)"
#: 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:1470
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1566 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1566
@ -1002,8 +1002,8 @@ msgid ""
"Certificate constraint(s) against DNS SAN values (if available)<br />or " "Certificate constraint(s) against DNS SAN values (if available)<br />or "
"Subject CN (suffix match)" "Subject CN (suffix match)"
msgstr "" msgstr ""
"Restricción(es) de certificado contra valores DNS SAN (si están disponibles)<" "Restricción(es) de certificado contra valores DNS SAN (si están "
"br />o Asunto CN (coincidencia de sufijo)" "disponibles)<br />o Asunto CN (coincidencia de sufijo)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1458 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1458
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1554 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1554
@ -1012,8 +1012,8 @@ msgid ""
"attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com" "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
msgstr "" msgstr ""
"Restricción(es) de certificado a través de valores de Nombre alternativo de " "Restricción(es) de certificado a través de valores de Nombre alternativo de "
"sujeto<br />(atributos admitidos: EMAIL, DNS, URI) - p. DNS: " "sujeto<br />(atributos admitidos: EMAIL, DNS, URI) - p. DNS: wifi.miempresa."
"wifi.miempresa.com" "com"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:51 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:51
#: 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:54
@ -1021,11 +1021,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Cadena" msgstr "Cadena"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Cambios" msgstr "Cambios"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "Se revirtieron los cambios." msgstr "Se revirtieron los cambios."
@ -1180,16 +1180,16 @@ msgstr ""
"interoperabilidad y reducir la robustez de la negociación de claves, " "interoperabilidad y reducir la robustez de la negociación de claves, "
"especialmente en entornos con una gran carga de tráfico." "especialmente en entornos con una gran carga de tráfico."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Configuración" msgstr "Configuración"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "Se ha aplicado la configuración." msgstr "Se ha aplicado la configuración."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "¡La configuración ha sido revertida!" msgstr "¡La configuración ha sido revertida!"
@ -1236,7 +1236,7 @@ msgstr "Los contenidos han sido guardados."
msgid "Continue" msgid "Continue"
msgstr "Continuar" msgstr "Continuar"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1455,11 +1455,11 @@ msgstr ""
"\"<code>6,192.168.2.1,192.168.2.2</code>\" que publica diferentes servidores " "\"<code>6,192.168.2.1,192.168.2.2</code>\" que publica diferentes servidores "
"DNS a los clientes." "DNS a los clientes."
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1471,7 +1471,7 @@ msgstr "Eliminar"
msgid "Delete key" msgid "Delete key"
msgstr "Eliminar clave" msgstr "Eliminar clave"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "Error al eliminar la solicitud: %s" msgstr "Error al eliminar la solicitud: %s"
@ -1488,7 +1488,7 @@ msgstr "Intervalo de mensaje de indicación de tráfico de entrega"
msgid "Description" msgid "Description"
msgstr "Descripción" msgstr "Descripción"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "Deseleccionar" msgstr "Deseleccionar"
@ -1533,7 +1533,7 @@ msgstr "El dispositivo no está activo"
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "El dispositivo se está reiniciando…" msgstr "El dispositivo se está reiniciando…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "Dispositivo inalcanzable!" msgstr "Dispositivo inalcanzable!"
@ -1550,7 +1550,7 @@ msgstr "Diagnósticos"
msgid "Dial number" msgid "Dial number"
msgstr "Marcar el número" msgstr "Marcar el número"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Directorio" msgstr "Directorio"
@ -1617,10 +1617,10 @@ msgstr "Desconectar"
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "Intento de desconexión fallido" msgstr "Intento de desconexión fallido"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1660,7 +1660,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "No reenviar búsquedas inversas para redes locales" msgstr "No reenviar búsquedas inversas para redes locales"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "¿Realmente quieres eliminar \"%s\" ?" msgstr "¿Realmente quieres eliminar \"%s\" ?"
@ -1672,7 +1672,7 @@ msgstr "¿Realmente quiere eliminar la siguiente clave SSH?"
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "¿Realmente quieres borrar todos las configuraciones?" msgstr "¿Realmente quieres borrar todos las configuraciones?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "¿Realmente desea eliminar recursivamente el directorio \"%s\" ?" msgstr "¿Realmente desea eliminar recursivamente el directorio \"%s\" ?"
@ -1712,7 +1712,7 @@ msgstr "Descargar mtdblock"
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "Desplazamiento SNR en sentido descendente" msgstr "Desplazamiento SNR en sentido descendente"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "Arrastrar para reordenar" msgstr "Arrastrar para reordenar"
@ -1758,9 +1758,9 @@ msgstr "Longitud de bits EA"
msgid "EAP-Method" msgid "EAP-Method"
msgstr "Método EAP" msgstr "Método EAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -2041,7 +2041,7 @@ msgstr "Protocolo FT"
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "Error al cambiar la contraseña del sistema." msgstr "Error al cambiar la contraseña del sistema."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
"Error al confirmar aplicar dentro de %ds. Esperando a que se reviertan los " "Error al confirmar aplicar dentro de %ds. Esperando a que se reviertan los "
@ -2051,15 +2051,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Error al ejecutar la acción \"/etc/init.d/%s%s\": %s" msgstr "Error al ejecutar la acción \"/etc/init.d/%s%s\": %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "Archivo" msgstr "Archivo"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "Archivo no accesible" msgstr "Archivo no accesible"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "Nombre del archivo" msgstr "Nombre del archivo"
@ -2304,8 +2304,8 @@ msgstr "Opciones globales de red"
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "Ir a la configuración de la contraseña..." msgstr "Ir a la configuración de la contraseña..."
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -3016,7 +3016,7 @@ msgstr "Deje vacío para autodetectar"
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "Deje vacío para usar la dirección WAN actual" msgstr "Deje vacío para usar la dirección WAN actual"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "Registro de cambios:" msgstr "Registro de cambios:"
@ -3128,7 +3128,7 @@ msgstr "Cargar"
msgid "Load Average" msgid "Load Average"
msgstr "Carga media" msgstr "Carga media"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "Cargando el contenido del directorio…" msgstr "Cargando el contenido del directorio…"
@ -3460,7 +3460,7 @@ msgstr "Monitor"
msgid "More Characters" msgid "More Characters"
msgstr "Más caracteres" msgstr "Más caracteres"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "Más…" msgstr "Más…"
@ -3551,8 +3551,8 @@ msgstr "Dominio NT"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Servidores NTP a consultar" msgstr "Servidores NTP a consultar"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3600,7 +3600,7 @@ msgstr "Nuevo nombre de interfaz…"
msgid "Next »" msgid "Next »"
msgstr "Siguiente »" msgstr "Siguiente »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "No" msgstr "No"
@ -3621,7 +3621,7 @@ msgstr "Sin NAT-T"
msgid "No data received" msgid "No data received"
msgstr "Sin datos recibidos" msgstr "Sin datos recibidos"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "No hay entradas en este directorio" msgstr "No hay entradas en este directorio"
@ -3824,11 +3824,11 @@ msgstr "OpenConnect (CISCO AnyConnect)"
msgid "Operating frequency" msgid "Operating frequency"
msgstr "Frecuencia de operación" msgstr "Frecuencia de operación"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Opción cambiada" msgstr "Opción cambiada"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Opción removida" msgstr "Opción removida"
@ -3982,7 +3982,7 @@ msgstr "Anular la tabla utilizada para rutas internas"
msgid "Overview" msgid "Overview"
msgstr "Vista general" msgstr "Vista general"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "Sobrescribir archivo \"%s\" existente?" msgstr "Sobrescribir archivo \"%s\" existente?"
@ -4225,7 +4225,7 @@ msgstr "Paq."
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Por favor, introduzca su nombre de usuario y contraseña." msgstr "Por favor, introduzca su nombre de usuario y contraseña."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "Por favor, seleccione el archivo que desea cargar." msgstr "Por favor, seleccione el archivo que desea cargar."
@ -4680,19 +4680,19 @@ msgstr "Restaurar copia de seguridad"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "Mostrar/ocultar contraseña" msgstr "Mostrar/ocultar contraseña"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Revertir" msgstr "Revertir"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "Revertir cambios" msgstr "Revertir cambios"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "Error al revertir la solicitud con el estado <code>%h</code>" msgstr "Error al revertir la solicitud con el estado <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "Revirtiendo configuración…" msgstr "Revirtiendo configuración…"
@ -4796,7 +4796,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "SWAP" msgstr "SWAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4807,7 +4807,7 @@ msgid "Save"
msgstr "Guardar" msgstr "Guardar"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Guardar y aplicar" msgstr "Guardar y aplicar"
@ -4829,11 +4829,11 @@ msgstr "Escanear"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Tareas programadas" msgstr "Tareas programadas"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Sección añadida" msgstr "Sección añadida"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Sección removida" msgstr "Sección removida"
@ -4851,9 +4851,9 @@ msgstr ""
"la verificación del formato de la imagen. ¡Úselo solo si está seguro de que " "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!" "el firmware es correcto y está diseñado para su dispositivo!"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "Seleccionar archivo…" msgstr "Seleccionar archivo…"
@ -4972,7 +4972,7 @@ msgstr "Atenuación de señal (SATN)"
msgid "Signal:" msgid "Signal:"
msgstr "Señal:" msgstr "Señal:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Tamaño" msgstr "Tamaño"
@ -5099,7 +5099,7 @@ msgstr "Iniciar"
msgid "Start priority" msgid "Start priority"
msgstr "Prioridad de inicio" msgstr "Prioridad de inicio"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "Iniciando aplicar configuración…" msgstr "Iniciando aplicar configuración…"
@ -5226,7 +5226,7 @@ msgstr "Intercambiar protocolo"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "Cambiar a la notación de lista CIDR" msgstr "Cambiar a la notación de lista CIDR"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "Enlace simbólico" msgstr "Enlace simbólico"
@ -5340,7 +5340,7 @@ msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
"El archivo de configuración no se pudo cargar debido al siguiente error:" "El archivo de configuración no se pudo cargar debido al siguiente error:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5538,7 +5538,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "No hay direcciones activas" msgstr "No hay direcciones activas"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "No hay cambios para aplicar" msgstr "No hay cambios para aplicar"
@ -5654,8 +5654,8 @@ msgid ""
msgstr "" msgstr ""
"Esta opción no se puede usar porque el paquete ca-bundle no está instalado." "Esta opción no se puede usar porque el paquete ca-bundle no está instalado."
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5878,7 +5878,7 @@ msgstr "Desmontar"
msgid "Unnamed key" msgid "Unnamed key"
msgstr "Clave sin nombre" msgstr "Clave sin nombre"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Cambios sin aplicar" msgstr "Cambios sin aplicar"
@ -5904,7 +5904,7 @@ msgstr "Tipo de protocolo no soportado."
msgid "Up" msgid "Up"
msgstr "Arriba" msgstr "Arriba"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "Subida" msgstr "Subida"
@ -5921,21 +5921,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "Subir archivo..." msgstr "Subir archivo..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "Subir archivo" msgstr "Subir archivo"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "Subir archivo…" msgstr "Subir archivo…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "Error al cargar la solicitud: %s" msgstr "Error al cargar la solicitud: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "Cargando archivo…" msgstr "Cargando archivo…"
@ -6312,7 +6312,7 @@ msgstr "Escribe las peticiones de DNS recibidas en el registro del sistema"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "Escribe el registro del sistema al archivo" msgstr "Escribe el registro del sistema al archivo"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "Si" msgstr "Si"
@ -6535,7 +6535,7 @@ msgstr "Sin enlace"
msgid "non-empty value" msgid "non-empty value"
msgstr "valor no vacío" msgstr "valor no vacío"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "ninguno" msgstr "ninguno"
@ -6643,7 +6643,7 @@ msgstr "Desconocido"
msgid "unlimited" msgid "unlimited"
msgstr "ilimitado" msgstr "ilimitado"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -23,7 +23,7 @@ msgstr "%.1f dB"
msgid "%d Bit" msgid "%d Bit"
msgstr "%d Bit" msgstr "%d Bit"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "%d champs invalides" msgstr "%d champs invalides"
@ -59,11 +59,11 @@ msgid "-- Additional Field --"
msgstr "-- Champ Supplémentaire --" msgstr "-- Champ Supplémentaire --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -71,7 +71,7 @@ msgstr "-- Choisir --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- personnalisé --" msgstr "-- personnalisé --"
@ -253,7 +253,7 @@ msgstr ""
"<br/>Note : il est nécessaire de redémarrer le service cron si le fichier " "<br/>Note : il est nécessaire de redémarrer le service cron si le fichier "
"crontab était vide au moment de l'éditer." "crontab était vide au moment de l'éditer."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "Un dossier avec le même nom existe déjà." msgstr "Un dossier avec le même nom existe déjà."
@ -382,11 +382,11 @@ msgstr "Bails DHCPv6 actifs"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-hoc" msgstr "Ad-hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -672,16 +672,16 @@ msgstr "N'importe quelle zone"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "Appliquer sans vérification" msgstr "Appliquer sans vérification"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -904,8 +904,8 @@ msgstr "Numéro d'unité du pont"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "L'activer au démarrage" msgstr "L'activer au démarrage"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "Feuilleter…" msgstr "Feuilleter…"
@ -936,8 +936,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -1003,11 +1003,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Chaîne" msgstr "Chaîne"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Changements" msgstr "Changements"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "Les modifications ont été annulées." msgstr "Les modifications ont été annulées."
@ -1156,16 +1156,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Configuration" msgstr "Configuration"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "" msgstr ""
@ -1212,7 +1212,7 @@ msgstr "Le contenu a été enregistré."
msgid "Continue" msgid "Continue"
msgstr "Continuer" msgstr "Continuer"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1425,11 +1425,11 @@ msgstr ""
"\"<code>6,192.168.2.1,192.168.2.2</code>\" qui publie différents serveurs " "\"<code>6,192.168.2.1,192.168.2.2</code>\" qui publie différents serveurs "
"DNS à ses clients." "DNS à ses clients."
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1441,7 +1441,7 @@ msgstr "Effacer"
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1458,7 +1458,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "Description" msgstr "Description"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "Désélectionner" msgstr "Désélectionner"
@ -1503,7 +1503,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "" msgstr ""
@ -1520,7 +1520,7 @@ msgstr "Diagnostics"
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Répertoire" msgstr "Répertoire"
@ -1587,10 +1587,10 @@ msgstr "Déconnecter"
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1633,7 +1633,7 @@ msgid "Do not forward reverse lookups for local networks"
msgstr "" msgstr ""
"Ne pas transmettre les requêtes de recherche inverse pour les réseaux locaux" "Ne pas transmettre les requêtes de recherche inverse pour les réseaux locaux"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "" msgstr ""
@ -1645,7 +1645,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1685,7 +1685,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1731,9 +1731,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "Méthode EAP" msgstr "Méthode EAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -2011,7 +2011,7 @@ msgstr "Protocole FT"
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -2019,15 +2019,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "Fichier" msgstr "Fichier"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "Fichier non accessible" msgstr "Fichier non accessible"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "Nom de fichier" msgstr "Nom de fichier"
@ -2267,8 +2267,8 @@ msgstr "Options de réseau mondial"
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "Aller à la configuration du mot de passe…" msgstr "Aller à la configuration du mot de passe…"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2976,7 +2976,7 @@ msgstr "Laisser vide pour l'auto-détection"
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "Laisser vide pour utiliser l'adresse WAN actuelle" msgstr "Laisser vide pour utiliser l'adresse WAN actuelle"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "Légende :" msgstr "Légende :"
@ -3076,7 +3076,7 @@ msgstr "Charge"
msgid "Load Average" msgid "Load Average"
msgstr "Charge moyenne" msgstr "Charge moyenne"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3408,7 +3408,7 @@ msgstr "Monitor"
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "Plus…" msgstr "Plus…"
@ -3499,8 +3499,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Serveurs NTP candidats" msgstr "Serveurs NTP candidats"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3548,7 +3548,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "Prochain »" msgstr "Prochain »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "Non" msgstr "Non"
@ -3569,7 +3569,7 @@ msgstr "Pas de NAT-T"
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3770,11 +3770,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Option modifiée" msgstr "Option modifiée"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Option retirée" msgstr "Option retirée"
@ -3915,7 +3915,7 @@ msgstr "Modifier la table utilisée pour les routes internes"
msgid "Overview" msgid "Overview"
msgstr "Vue d\\'ensemble" msgstr "Vue d\\'ensemble"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4158,7 +4158,7 @@ msgstr "Pqts."
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Saisissez votre nom d'utilisateur et mot de passe." msgstr "Saisissez votre nom d'utilisateur et mot de passe."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4593,19 +4593,19 @@ msgstr "Restaurer une sauvegarde"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "Montrer/cacher le mot de passe" msgstr "Montrer/cacher le mot de passe"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Annuler les modifications" msgstr "Annuler les modifications"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "Annuler les modifications" msgstr "Annuler les modifications"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "La demande d'annulation a échoué, statut <code>%h</code>" msgstr "La demande d'annulation a échoué, statut <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "Annulation de la configuration…" msgstr "Annulation de la configuration…"
@ -4710,7 +4710,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4721,7 +4721,7 @@ msgid "Save"
msgstr "Enregistrer" msgstr "Enregistrer"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Sauvegarder et Appliquer" msgstr "Sauvegarder et Appliquer"
@ -4743,11 +4743,11 @@ msgstr "Scan"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Tâches Régulières" msgstr "Tâches Régulières"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Section ajoutée" msgstr "Section ajoutée"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Section retirée" msgstr "Section retirée"
@ -4762,9 +4762,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4880,7 +4880,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "Signal :" msgstr "Signal :"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Taille" msgstr "Taille"
@ -4999,7 +4999,7 @@ msgstr "Démarrer"
msgid "Start priority" msgid "Start priority"
msgstr "Priorité de démarrage" msgstr "Priorité de démarrage"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -5124,7 +5124,7 @@ msgstr "Changer de protocole"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5234,7 +5234,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5424,7 +5424,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "Aucun bail actif" msgstr "Aucun bail actif"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "Il n'y a aucun changement à appliquer" msgstr "Il n'y a aucun changement à appliquer"
@ -5538,8 +5538,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5762,7 +5762,7 @@ msgstr ""
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Changements non appliqués" msgstr "Changements non appliqués"
@ -5788,7 +5788,7 @@ msgstr "Type de protocole non pris en charge."
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5803,21 +5803,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "Envoi de l'archive…" msgstr "Envoi de l'archive…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -6188,7 +6188,7 @@ msgstr "Écrire les requêtes DNS reçues dans syslog"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "Écrire les log systèmes dans un fichier" msgstr "Écrire les log systèmes dans un fichier"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "Oui" msgstr "Oui"
@ -6410,7 +6410,7 @@ msgstr "pas de lien"
msgid "non-empty value" msgid "non-empty value"
msgstr "valeur non vide" msgstr "valeur non vide"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "Aucun" msgstr "Aucun"
@ -6518,7 +6518,7 @@ msgstr "inconnu"
msgid "unlimited" msgid "unlimited"
msgstr "non limité" msgstr "non limité"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -21,7 +21,7 @@ msgstr ""
msgid "%d Bit" msgid "%d Bit"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "" msgstr ""
@ -57,11 +57,11 @@ msgid "-- Additional Field --"
msgstr "-- שדה נוסף --" msgstr "-- שדה נוסף --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -69,7 +69,7 @@ msgstr "-- נא לבחור --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- מותאם אישית --" msgstr "-- מותאם אישית --"
@ -232,7 +232,7 @@ msgid ""
"was empty before editing." "was empty before editing."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "" msgstr ""
@ -360,11 +360,11 @@ msgstr "הרשאות DHCPv6 פעילות"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "אד-הוק" msgstr "אד-הוק"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -649,16 +649,16 @@ msgstr "כל תחום"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -882,8 +882,8 @@ msgstr "מס' יח' גשר"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "הבא באיתחול" msgstr "הבא באיתחול"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
@ -914,8 +914,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -981,11 +981,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "שרשרת" msgstr "שרשרת"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "שינויים" msgstr "שינויים"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "" msgstr ""
@ -1123,16 +1123,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "הגדרות" msgstr "הגדרות"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "" msgstr ""
@ -1179,7 +1179,7 @@ msgstr ""
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1391,11 +1391,11 @@ msgstr ""
"הגדר אפשרויות DHCP נוספות, למשל \"<code>6,192.168.2.1,192.168.2.2</code>\" " "הגדר אפשרויות DHCP נוספות, למשל \"<code>6,192.168.2.1,192.168.2.2</code>\" "
"אשר מציגות שרתי DNS שונים ללקוח" "אשר מציגות שרתי DNS שונים ללקוח"
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1407,7 +1407,7 @@ msgstr "למחוק"
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1424,7 +1424,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "תיאור" msgstr "תיאור"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1469,7 +1469,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "" msgstr ""
@ -1486,7 +1486,7 @@ msgstr "אבחון"
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "" msgstr ""
@ -1551,10 +1551,10 @@ msgstr ""
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1588,7 +1588,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "" msgstr ""
@ -1600,7 +1600,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1638,7 +1638,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1681,9 +1681,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1955,7 +1955,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -1963,15 +1963,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "" msgstr ""
@ -2209,8 +2209,8 @@ msgstr ""
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2903,7 +2903,7 @@ msgstr ""
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "" msgstr ""
@ -3000,7 +3000,7 @@ msgstr "עומס"
msgid "Load Average" msgid "Load Average"
msgstr "עומס ממוצע" msgstr "עומס ממוצע"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3324,7 +3324,7 @@ msgstr ""
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "" msgstr ""
@ -3413,8 +3413,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3462,7 +3462,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -3483,7 +3483,7 @@ msgstr ""
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3684,11 +3684,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "" msgstr ""
@ -3827,7 +3827,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4070,7 +4070,7 @@ msgstr ""
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "אנא הזן את שם המשתמש והסיסמה שלך:" msgstr "אנא הזן את שם המשתמש והסיסמה שלך:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4503,19 +4503,19 @@ msgstr ""
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "" msgstr ""
@ -4617,7 +4617,7 @@ msgstr ""
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4628,7 +4628,7 @@ msgid "Save"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "" msgstr ""
@ -4650,11 +4650,11 @@ msgstr ""
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "" msgstr ""
@ -4669,9 +4669,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4785,7 +4785,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "" msgstr ""
@ -4900,7 +4900,7 @@ msgstr ""
msgid "Start priority" msgid "Start priority"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -5024,7 +5024,7 @@ msgstr ""
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5129,7 +5129,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5289,7 +5289,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5383,8 +5383,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5604,7 +5604,7 @@ msgstr ""
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "" msgstr ""
@ -5630,7 +5630,7 @@ msgstr ""
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5645,21 +5645,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -6020,7 +6020,7 @@ msgstr ""
msgid "Write system log to file" msgid "Write system log to file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@ -6234,7 +6234,7 @@ msgstr ""
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "ללא" msgstr "ללא"
@ -6342,7 +6342,7 @@ msgstr ""
msgid "unlimited" msgid "unlimited"
msgstr "ללא הגבלה" msgstr "ללא הגבלה"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -18,7 +18,7 @@ msgstr ""
msgid "%d Bit" msgid "%d Bit"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "%d अमान्य क्षेत्र" msgstr "%d अमान्य क्षेत्र"
@ -54,11 +54,11 @@ msgid "-- Additional Field --"
msgstr "अतिरिक्त अनुभाग" msgstr "अतिरिक्त अनुभाग"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -66,7 +66,7 @@ msgstr "कृपया चुने"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "--अमानक--" msgstr "--अमानक--"
@ -228,7 +228,7 @@ msgid ""
"was empty before editing." "was empty before editing."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "समान नाम वाली एक निर्देशिका पहले से मौजूद है।" msgstr "समान नाम वाली एक निर्देशिका पहले से मौजूद है।"
@ -352,11 +352,11 @@ msgstr "सक्रिय DHCPv6 पट्टों"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "तदर्थ" msgstr "तदर्थ"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -634,16 +634,16 @@ msgstr ""
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -863,8 +863,8 @@ msgstr ""
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
@ -895,8 +895,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -962,11 +962,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "" msgstr ""
@ -1104,16 +1104,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "" msgstr ""
@ -1160,7 +1160,7 @@ msgstr ""
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1368,11 +1368,11 @@ msgid ""
"servers to clients." "servers to clients."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1384,7 +1384,7 @@ msgstr ""
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1401,7 +1401,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1446,7 +1446,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "" msgstr ""
@ -1463,7 +1463,7 @@ msgstr ""
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "" msgstr ""
@ -1528,10 +1528,10 @@ msgstr ""
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1565,7 +1565,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "" msgstr ""
@ -1577,7 +1577,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1615,7 +1615,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1656,9 +1656,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1930,7 +1930,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -1938,15 +1938,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "" msgstr ""
@ -2184,8 +2184,8 @@ msgstr ""
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2878,7 +2878,7 @@ msgstr ""
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "" msgstr ""
@ -2975,7 +2975,7 @@ msgstr ""
msgid "Load Average" msgid "Load Average"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3299,7 +3299,7 @@ msgstr ""
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "" msgstr ""
@ -3388,8 +3388,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3437,7 +3437,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -3458,7 +3458,7 @@ msgstr ""
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3659,11 +3659,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "" msgstr ""
@ -3802,7 +3802,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4045,7 +4045,7 @@ msgstr ""
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4478,19 +4478,19 @@ msgstr ""
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "" msgstr ""
@ -4592,7 +4592,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4603,7 +4603,7 @@ msgid "Save"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "" msgstr ""
@ -4625,11 +4625,11 @@ msgstr ""
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "" msgstr ""
@ -4644,9 +4644,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4760,7 +4760,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "" msgstr ""
@ -4873,7 +4873,7 @@ msgstr ""
msgid "Start priority" msgid "Start priority"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -4994,7 +4994,7 @@ msgstr ""
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5099,7 +5099,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5259,7 +5259,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5353,8 +5353,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5573,7 +5573,7 @@ msgstr ""
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "" msgstr ""
@ -5599,7 +5599,7 @@ msgstr ""
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5614,21 +5614,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -5989,7 +5989,7 @@ msgstr ""
msgid "Write system log to file" msgid "Write system log to file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@ -6203,7 +6203,7 @@ msgstr ""
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "" msgstr ""
@ -6311,7 +6311,7 @@ msgstr ""
msgid "unlimited" msgid "unlimited"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -21,7 +21,7 @@ msgstr "%.1f dB"
msgid "%d Bit" msgid "%d Bit"
msgstr "%d bit" msgstr "%d bit"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "%d érvénytelen mező" msgstr "%d érvénytelen mező"
@ -57,11 +57,11 @@ msgid "-- Additional Field --"
msgstr "-- További mező --" msgstr "-- További mező --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -69,7 +69,7 @@ msgstr "-- Kérem válasszon --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- egyéni --" msgstr "-- egyéni --"
@ -244,7 +244,7 @@ msgstr ""
"<br/>Megjegyzés: újra kell indítania kézzel a cron szolgáltatást, ha a " "<br/>Megjegyzés: újra kell indítania kézzel a cron szolgáltatást, ha a "
"crontab fájl üres volt a szerkesztés előtt." "crontab fájl üres volt a szerkesztés előtt."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "Már létezik egy ilyen nevű könyvtár." msgstr "Már létezik egy ilyen nevű könyvtár."
@ -370,11 +370,11 @@ msgstr "Aktív DHCPv6 bérletek"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Eseti" msgstr "Eseti"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -665,16 +665,16 @@ msgstr "Bármely zóna"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "Alkalmazza a biztonsági mentést?" msgstr "Alkalmazza a biztonsági mentést?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "A kérés alkalmazása meghiúsult <code>%h</code> állapotkóddal" msgstr "A kérés alkalmazása meghiúsult <code>%h</code> állapotkóddal"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "Kijelöletlenek alkalmazása" msgstr "Kijelöletlenek alkalmazása"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "A beállítások változtatásainak alkalmazása… %d mp" msgstr "A beállítások változtatásainak alkalmazása… %d mp"
@ -906,8 +906,8 @@ msgstr "Hídegység száma"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "Felhozás rendszerindításkor" msgstr "Felhozás rendszerindításkor"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "Tallózás…" msgstr "Tallózás…"
@ -940,8 +940,8 @@ msgstr "Gyorsítótárazott"
msgid "Call failed" msgid "Call failed"
msgstr "Hívás sikertelen" msgstr "Hívás sikertelen"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -1007,11 +1007,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Lánc" msgstr "Lánc"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Változtatások" msgstr "Változtatások"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "A változtatások visszavonva." msgstr "A változtatások visszavonva."
@ -1169,16 +1169,16 @@ msgstr ""
"a kulcsegyeztetés robusztusságának csökkentését okozhatja, különösen az erős " "a kulcsegyeztetés robusztusságának csökkentését okozhatja, különösen az erős "
"forgalomterheléssel rendelkező környezetekben." "forgalomterheléssel rendelkező környezetekben."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Beállítás" msgstr "Beállítás"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "A beállítás változtatásai alkalmazva." msgstr "A beállítás változtatásai alkalmazva."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "A beállítás változtatásai vissza lettek állítva!" msgstr "A beállítás változtatásai vissza lettek állítva!"
@ -1225,7 +1225,7 @@ msgstr "A tartalom mentésre került."
msgid "Continue" msgid "Continue"
msgstr "Folytatás" msgstr "Folytatás"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1444,11 +1444,11 @@ msgstr ""
"„<code>6,192.168.2.1,192.168.2.2</code>”, amely különböző DNS-kiszolgálókat " "„<code>6,192.168.2.1,192.168.2.2</code>”, amely különböző DNS-kiszolgálókat "
"hirdet az ügyfelek részére." "hirdet az ügyfelek részére."
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1460,7 +1460,7 @@ msgstr "Törlés"
msgid "Delete key" msgid "Delete key"
msgstr "Kulcs törlése" msgstr "Kulcs törlése"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "Törlési kérés sikertelen: %s" msgstr "Törlési kérés sikertelen: %s"
@ -1477,7 +1477,7 @@ msgstr "Kézbesítési forgalom jelző üzenet időköze"
msgid "Description" msgid "Description"
msgstr "Leírás" msgstr "Leírás"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "Kijelölés megszüntetése" msgstr "Kijelölés megszüntetése"
@ -1522,7 +1522,7 @@ msgstr "Az eszköz nem aktív"
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "Az eszköz újraindul…" msgstr "Az eszköz újraindul…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "Az eszköz elérhetetlen!" msgstr "Az eszköz elérhetetlen!"
@ -1539,7 +1539,7 @@ msgstr "Diagnosztika"
msgid "Dial number" msgid "Dial number"
msgstr "Szám tárcsázása" msgstr "Szám tárcsázása"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Könyvtár" msgstr "Könyvtár"
@ -1606,10 +1606,10 @@ msgstr "Leválasztás"
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "Leválasztási kísérlet sikertelen" msgstr "Leválasztási kísérlet sikertelen"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1650,7 +1650,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "Ne továbbítson fordított keresési kéréseket a helyi hálózathoz" msgstr "Ne továbbítson fordított keresési kéréseket a helyi hálózathoz"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "Valóban törölni szeretné ezt: „%s”?" msgstr "Valóban törölni szeretné ezt: „%s”?"
@ -1662,7 +1662,7 @@ msgstr "Valóban törölni szeretné a következő SSH-kulcsot?"
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "Valóban törölni szeretné az összes beállítást?" msgstr "Valóban törölni szeretné az összes beállítást?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" 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?" msgstr "Valóban törölni szeretné rekurzívan a(z) „%s” könyvtárat?"
@ -1702,7 +1702,7 @@ msgstr "Az mtdblock letöltése"
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "Belső SNR eltolás" msgstr "Belső SNR eltolás"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "Húzza az átrendezéshez" msgstr "Húzza az átrendezéshez"
@ -1749,9 +1749,9 @@ msgstr "EA-bitek hossza"
msgid "EAP-Method" msgid "EAP-Method"
msgstr "EAP módszer" msgstr "EAP módszer"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -2029,7 +2029,7 @@ msgstr "FT protokoll"
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "Nem sikerült megváltoztatni a rendszer jelszavát." msgstr "Nem sikerült megváltoztatni a rendszer jelszavát."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
"Nem sikerült megerősíteni az alkalmazást %d másodpercen belül, várakozás a " "Nem sikerült megerősíteni az alkalmazást %d másodpercen belül, várakozás a "
@ -2039,15 +2039,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" 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" msgstr "Nem sikerült végrehajtani az „/etc/init.d/%s %s” műveletet: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "Fájl" msgstr "Fájl"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "A fájl nem érhető el" msgstr "A fájl nem érhető el"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "Fájlnév" msgstr "Fájlnév"
@ -2292,8 +2292,8 @@ msgstr "Globális hálózati beállítások"
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "Ugrás a jelszóbeállításhoz…" msgstr "Ugrás a jelszóbeállításhoz…"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -3010,7 +3010,7 @@ msgstr "Automatikus felismeréshez hagyja üresen"
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "Hagyja üresen a jelenlegi WAN-cím használatához" msgstr "Hagyja üresen a jelenlegi WAN-cím használatához"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "Jelmagyarázat:" msgstr "Jelmagyarázat:"
@ -3122,7 +3122,7 @@ msgstr "Terhelés"
msgid "Load Average" msgid "Load Average"
msgstr "Átlagos terhelés" msgstr "Átlagos terhelés"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "Könyvtártartalmak betöltése…" msgstr "Könyvtártartalmak betöltése…"
@ -3454,7 +3454,7 @@ msgstr "Megfigyelés"
msgid "More Characters" msgid "More Characters"
msgstr "Több karakter" msgstr "Több karakter"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "Több…" msgstr "Több…"
@ -3545,8 +3545,8 @@ msgstr "NT-tartomány"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "NTP-kiszolgáló jelöltek" msgstr "NTP-kiszolgáló jelöltek"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3594,7 +3594,7 @@ msgstr "Új csatolónév…"
msgid "Next »" msgid "Next »"
msgstr "Következő »" msgstr "Következő »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "Nem" msgstr "Nem"
@ -3615,7 +3615,7 @@ msgstr "Nincs NAT-T"
msgid "No data received" msgid "No data received"
msgstr "Nem érkezett adat" msgstr "Nem érkezett adat"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "Nincsenek bejegyzések ebben a könyvtárban" msgstr "Nincsenek bejegyzések ebben a könyvtárban"
@ -3818,11 +3818,11 @@ msgstr "OpenConnect (CISCO AnyConnect)"
msgid "Operating frequency" msgid "Operating frequency"
msgstr "Működési gyakoriság" msgstr "Működési gyakoriság"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Beállítás megváltoztatva" msgstr "Beállítás megváltoztatva"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Beállítás eltávolítva" msgstr "Beállítás eltávolítva"
@ -3977,7 +3977,7 @@ msgstr "A belső útvonalakhoz használt tábla felülbírálása"
msgid "Overview" msgid "Overview"
msgstr "Áttekintő" msgstr "Áttekintő"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "Felülírja a meglévő „%s” fájlt?" msgstr "Felülírja a meglévő „%s” fájlt?"
@ -4220,7 +4220,7 @@ msgstr "csom."
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Adja meg a felhasználónevét és a jelszavát." msgstr "Adja meg a felhasználónevét és a jelszavát."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "Válassza ki a feltöltendő fájlt." msgstr "Válassza ki a feltöltendő fájlt."
@ -4677,19 +4677,19 @@ msgstr "Biztonsági mentés visszaállítása"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "Jelszó felfedése/elrejtése" msgstr "Jelszó felfedése/elrejtése"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Visszavonás" msgstr "Visszavonás"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "Változtatások visszavonása" msgstr "Változtatások visszavonása"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "A kérés visszavonása meghiúsult <code>%h</code> állapotkóddal" msgstr "A kérés visszavonása meghiúsult <code>%h</code> állapotkóddal"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "Beállítás visszaállítása…" msgstr "Beállítás visszaállítása…"
@ -4793,7 +4793,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "SWAP" msgstr "SWAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4804,7 +4804,7 @@ msgid "Save"
msgstr "Mentés" msgstr "Mentés"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Mentés és alkalmazás" msgstr "Mentés és alkalmazás"
@ -4826,11 +4826,11 @@ msgstr "Keresés"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Ütemezett feladatok" msgstr "Ütemezett feladatok"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Szakasz hozzáadva" msgstr "Szakasz hozzáadva"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Szakasz eltávolítva" msgstr "Szakasz eltávolítva"
@ -4848,9 +4848,9 @@ msgstr ""
"akkor is ha a lemezképformátum ellenőrzése sikertelen. Csak akkor használja, " "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!" "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:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "Fájl kiválasztása…" msgstr "Fájl kiválasztása…"
@ -4969,7 +4969,7 @@ msgstr "Jel csillapítása (SATN)"
msgid "Signal:" msgid "Signal:"
msgstr "Jel:" msgstr "Jel:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Méret" msgstr "Méret"
@ -5097,7 +5097,7 @@ msgstr "Indítás"
msgid "Start priority" msgid "Start priority"
msgstr "Indítási prioritás" msgstr "Indítási prioritás"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "Beállítások alkalmazásának indítása…" msgstr "Beállítások alkalmazásának indítása…"
@ -5224,7 +5224,7 @@ msgstr "Protokoll váltása"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "Váltás CIDR lista jelölésre" msgstr "Váltás CIDR lista jelölésre"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "Szimbolikus hivatkozás" msgstr "Szimbolikus hivatkozás"
@ -5335,7 +5335,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "A beállítófájlt nem sikerült betölteni a következő hiba miatt:" msgstr "A beállítófájlt nem sikerült betölteni a következő hiba miatt:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5536,7 +5536,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "Nincsenek aktív bérletek" msgstr "Nincsenek aktív bérletek"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "Nincsenek alkalmazandó változtatások" msgstr "Nincsenek alkalmazandó változtatások"
@ -5654,8 +5654,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5878,7 +5878,7 @@ msgstr "Leválasztás"
msgid "Unnamed key" msgid "Unnamed key"
msgstr "Névtelen kulcs" msgstr "Névtelen kulcs"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Mentetlen változtatások" msgstr "Mentetlen változtatások"
@ -5904,7 +5904,7 @@ msgstr "Nem támogatott protokolltípus."
msgid "Up" msgid "Up"
msgstr "Fel" msgstr "Fel"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "Feltöltés" msgstr "Feltöltés"
@ -5921,21 +5921,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "Archívum feltöltése…" msgstr "Archívum feltöltése…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "Fájl feltöltése" msgstr "Fájl feltöltése"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "Fájl feltöltése…" msgstr "Fájl feltöltése…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "Feltöltési kérés sikertelen: %s" msgstr "Feltöltési kérés sikertelen: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "Fájl feltöltése…" msgstr "Fájl feltöltése…"
@ -6314,7 +6314,7 @@ msgstr "Fogadott DNS-kérések írása a rendszernaplóba"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "Rendszernapló írása fájlba" msgstr "Rendszernapló írása fájlba"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "Igen" msgstr "Igen"
@ -6539,7 +6539,7 @@ msgstr "nincs kapcsolat"
msgid "non-empty value" msgid "non-empty value"
msgstr "nem üres érték" msgstr "nem üres érték"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "nincs" msgstr "nincs"
@ -6647,7 +6647,7 @@ msgstr "ismeretlen"
msgid "unlimited" msgid "unlimited"
msgstr "korlátlan" msgstr "korlátlan"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -23,7 +23,7 @@ msgstr ""
msgid "%d Bit" msgid "%d Bit"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "" msgstr ""
@ -59,11 +59,11 @@ msgid "-- Additional Field --"
msgstr "-- Campo aggiuntivo --" msgstr "-- Campo aggiuntivo --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -71,7 +71,7 @@ msgstr "-- Per favore scegli --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- personalizzato --" msgstr "-- personalizzato --"
@ -246,7 +246,7 @@ msgstr ""
"<br/>Nota: devi riavviare manualmente il servizio cron se il file crontab " "<br/>Nota: devi riavviare manualmente il servizio cron se il file crontab "
"era vuoto prima delle modifiche." "era vuoto prima delle modifiche."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "" msgstr ""
@ -374,11 +374,11 @@ msgstr "Contratti attivi DHCPv6"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -662,16 +662,16 @@ msgstr "Qualsiasi Zona"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -894,8 +894,8 @@ msgstr "Numero Unità Ponte"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "Attivare all'avvio" msgstr "Attivare all'avvio"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
@ -926,8 +926,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -993,11 +993,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Catena" msgstr "Catena"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Modifiche" msgstr "Modifiche"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "" msgstr ""
@ -1145,16 +1145,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Configurazione" msgstr "Configurazione"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "" msgstr ""
@ -1201,7 +1201,7 @@ msgstr ""
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1414,11 +1414,11 @@ msgstr ""
"\"<code>6,192.168.2.1,192.168.2.2</code>\" fornisce differenti server DNS ai " "\"<code>6,192.168.2.1,192.168.2.2</code>\" fornisce differenti server DNS ai "
"client." "client."
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1430,7 +1430,7 @@ msgstr "Elimina"
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1447,7 +1447,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "Descrizione" msgstr "Descrizione"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1492,7 +1492,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "Dispositivo irraggiungibile" msgstr "Dispositivo irraggiungibile"
@ -1509,7 +1509,7 @@ msgstr "Diagnostica"
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Cartella" msgstr "Cartella"
@ -1576,10 +1576,10 @@ msgstr ""
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1618,7 +1618,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "Non proseguire con le ricerche inverse per le reti locali." msgstr "Non proseguire con le ricerche inverse per le reti locali."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "" msgstr ""
@ -1630,7 +1630,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1670,7 +1670,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1716,9 +1716,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "Metodo EAP" msgstr "Metodo EAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1992,7 +1992,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -2000,15 +2000,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "File" msgstr "File"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "" msgstr ""
@ -2248,8 +2248,8 @@ msgstr "Opzioni rete globale"
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "Vai alla configurazione della password..." msgstr "Vai alla configurazione della password..."
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2959,7 +2959,7 @@ msgstr "Lasciare vuoto per l'autorilevamento"
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "Lasciare vuoto per usare l'indirizzo WAN attuale" msgstr "Lasciare vuoto per usare l'indirizzo WAN attuale"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "Legenda:" msgstr "Legenda:"
@ -3058,7 +3058,7 @@ msgstr "Carico"
msgid "Load Average" msgid "Load Average"
msgstr "Carico Medio" msgstr "Carico Medio"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3388,7 +3388,7 @@ msgstr "Monitor"
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "" msgstr ""
@ -3479,8 +3479,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Candidati server NTP" msgstr "Candidati server NTP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3528,7 +3528,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "Prossimo »" msgstr "Prossimo »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -3549,7 +3549,7 @@ msgstr ""
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3750,11 +3750,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Opzione cambiata" msgstr "Opzione cambiata"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Opzione cancellata" msgstr "Opzione cancellata"
@ -3895,7 +3895,7 @@ msgstr "Sovrascrivi la tabella usata per le route interne"
msgid "Overview" msgid "Overview"
msgstr "Riassunto" msgstr "Riassunto"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4138,7 +4138,7 @@ msgstr ""
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Per favore inserisci il tuo username e la password." msgstr "Per favore inserisci il tuo username e la password."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4573,19 +4573,19 @@ msgstr "Ripristina backup"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "Rivela/nascondi password" msgstr "Rivela/nascondi password"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Ripristina" msgstr "Ripristina"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "" msgstr ""
@ -4689,7 +4689,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4700,7 +4700,7 @@ msgid "Save"
msgstr "Salva" msgstr "Salva"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Salva & applica" msgstr "Salva & applica"
@ -4722,11 +4722,11 @@ msgstr "Scan"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Operazioni programmate" msgstr "Operazioni programmate"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Sezione aggiunta" msgstr "Sezione aggiunta"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Sezione rimossa" msgstr "Sezione rimossa"
@ -4741,9 +4741,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4857,7 +4857,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Dimensione" msgstr "Dimensione"
@ -4978,7 +4978,7 @@ msgstr "Inizio"
msgid "Start priority" msgid "Start priority"
msgstr "Priorità di avvio" msgstr "Priorità di avvio"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -5103,7 +5103,7 @@ msgstr "Cambia protocollo"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5210,7 +5210,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5379,7 +5379,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5479,8 +5479,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5702,7 +5702,7 @@ msgstr "Smonta"
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Modifiche non salvate" msgstr "Modifiche non salvate"
@ -5728,7 +5728,7 @@ msgstr "Tipo protocollo non supportato."
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5743,21 +5743,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "Carica archivio..." msgstr "Carica archivio..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -6126,7 +6126,7 @@ msgstr "Scrittura delle richiesta DNS ricevute nel syslog"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "Scrivi registro di sistema su file" msgstr "Scrivi registro di sistema su file"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@ -6349,7 +6349,7 @@ msgstr "Nessun collegamento"
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "nessuna" msgstr "nessuna"
@ -6457,7 +6457,7 @@ msgstr "sconosciuto"
msgid "unlimited" msgid "unlimited"
msgstr "illimitato" msgstr "illimitato"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -23,7 +23,7 @@ msgstr "%.1f dB"
msgid "%d Bit" msgid "%d Bit"
msgstr "%d ビット" msgstr "%d ビット"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "無効な入力欄: %d 個" msgstr "無効な入力欄: %d 個"
@ -59,11 +59,11 @@ msgid "-- Additional Field --"
msgstr "-- 追加項目 --" msgstr "-- 追加項目 --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -71,7 +71,7 @@ msgstr "-- 選択してください --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- 手動設定 --" msgstr "-- 手動設定 --"
@ -244,7 +244,7 @@ msgstr ""
"<br />注意: 編集前の crontab ファイルが空の場合、手動で cron サービスの再起動" "<br />注意: 編集前の crontab ファイルが空の場合、手動で cron サービスの再起動"
"を行う必要があります。" "を行う必要があります。"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "同名のディレクトリが既に存在します。" msgstr "同名のディレクトリが既に存在します。"
@ -367,11 +367,11 @@ msgstr "アクティブなDHCPv6リース"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "アドホック" msgstr "アドホック"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -659,16 +659,16 @@ msgstr "全てのゾーン"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "バックアップの適用" msgstr "バックアップの適用"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "適用リクエストはステータス <code>%h</code> で失敗しました" msgstr "適用リクエストはステータス <code>%h</code> で失敗しました"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "チェック無しの適用" msgstr "チェック無しの適用"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "設定を適用中です… %d 秒" msgstr "設定を適用中です… %d 秒"
@ -898,8 +898,8 @@ msgstr "ブリッジ ユニット番号"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "デフォルトで起動する" msgstr "デフォルトで起動する"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "参照..." msgstr "参照..."
@ -930,8 +930,8 @@ msgstr "キャッシュ済"
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -997,11 +997,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "チェイン" msgstr "チェイン"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "変更" msgstr "変更"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "変更は取り消されました。" msgstr "変更は取り消されました。"
@ -1156,16 +1156,16 @@ msgstr ""
"この回避策は、相互運用性の問題や、特に高負荷のトラフィック環境下におけるキー " "この回避策は、相互運用性の問題や、特に高負荷のトラフィック環境下におけるキー "
"ネゴシエーションの信頼性低下の原因となることがあります。" "ネゴシエーションの信頼性低下の原因となることがあります。"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "設定" msgstr "設定"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "設定が適用されました。" msgstr "設定が適用されました。"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "設定はロールバックされました!" msgstr "設定はロールバックされました!"
@ -1212,7 +1212,7 @@ msgstr "内容が保存されました。"
msgid "Continue" msgid "Continue"
msgstr "続行" msgstr "続行"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1429,11 +1429,11 @@ msgstr ""
"追加のDHCPオプションを設定します。\"<code>6,192.168.2.1,192.168.2.2</" "追加のDHCPオプションを設定します。\"<code>6,192.168.2.1,192.168.2.2</"
"code>\" と設定することで、クライアントに指定のDNSサーバーを通知します。" "code>\" と設定することで、クライアントに指定のDNSサーバーを通知します。"
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1445,7 +1445,7 @@ msgstr "削除"
msgid "Delete key" msgid "Delete key"
msgstr "公開鍵を削除" msgstr "公開鍵を削除"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "削除リクエスト失敗: %s" msgstr "削除リクエスト失敗: %s"
@ -1462,7 +1462,7 @@ msgstr "Delivery Traffic Indication Message インターバル"
msgid "Description" msgid "Description"
msgstr "説明" msgstr "説明"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1507,7 +1507,7 @@ msgstr "デバイスがアクティブではありません"
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "デバイスを再起動中..." msgstr "デバイスを再起動中..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "デバイスに到達できません" msgstr "デバイスに到達できません"
@ -1524,7 +1524,7 @@ msgstr "診断機能"
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "ディレクトリ" msgstr "ディレクトリ"
@ -1591,10 +1591,10 @@ msgstr "切断"
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "切断の試行が失敗しました" msgstr "切断の試行が失敗しました"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1633,7 +1633,7 @@ msgstr "パブリック DNSサーバーが返答できなかったリクエス
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "ローカル ネットワークへの逆引きを転送しません" msgstr "ローカル ネットワークへの逆引きを転送しません"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "本当に \"%s\" を削除しますか?" msgstr "本当に \"%s\" を削除しますか?"
@ -1645,7 +1645,7 @@ msgstr "本当に以下の SSH 公開鍵を削除しますか?"
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "本当に全ての設定を消去しますか?" msgstr "本当に全ての設定を消去しますか?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "本当にディレクトリ \"%s\" を再帰的に削除しますか?" msgstr "本当にディレクトリ \"%s\" を再帰的に削除しますか?"
@ -1685,7 +1685,7 @@ msgstr "mtdblock のダウンロード"
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "ドラッグして並び替え" msgstr "ドラッグして並び替え"
@ -1731,9 +1731,9 @@ msgstr "EA ビット長"
msgid "EAP-Method" msgid "EAP-Method"
msgstr "EAP メソッド" msgstr "EAP メソッド"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -2013,7 +2013,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "システム パスワードの変更に失敗しました。" msgstr "システム パスワードの変更に失敗しました。"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "%d 秒以内の適用を確認できませんでした。ロールバック中です..." msgstr "%d 秒以内の適用を確認できませんでした。ロールバック中です..."
@ -2021,15 +2021,15 @@ msgstr "%d 秒以内の適用を確認できませんでした。ロールバッ
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "\"/etc/init.d/%s %s\" の実行に失敗しました: %s" msgstr "\"/etc/init.d/%s %s\" の実行に失敗しました: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "ファイル" msgstr "ファイル"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "ファイル名" msgstr "ファイル名"
@ -2272,8 +2272,8 @@ msgstr "グローバル ネットワークオプション"
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "パスワード設定へ移動..." msgstr "パスワード設定へ移動..."
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2982,7 +2982,7 @@ msgstr "空欄の場合、自動検知を行います"
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "空欄の場合、現在のWANアドレスを使用します" msgstr "空欄の場合、現在のWANアドレスを使用します"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "凡例:" msgstr "凡例:"
@ -3085,7 +3085,7 @@ msgstr "負荷"
msgid "Load Average" msgid "Load Average"
msgstr "システム平均負荷" msgstr "システム平均負荷"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "ディレクトリ内を読み込み中..." msgstr "ディレクトリ内を読み込み中..."
@ -3417,7 +3417,7 @@ msgstr "モニター"
msgid "More Characters" msgid "More Characters"
msgstr "文字数不足" msgstr "文字数不足"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "さらに表示…" msgstr "さらに表示…"
@ -3508,8 +3508,8 @@ msgstr "NT ドメイン"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "NTPサーバー候補" msgstr "NTPサーバー候補"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3557,7 +3557,7 @@ msgstr "新規インターフェース名"
msgid "Next »" msgid "Next »"
msgstr "次 »" msgstr "次 »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "いいえ" msgstr "いいえ"
@ -3578,7 +3578,7 @@ msgstr "NAT-Tを使用しない"
msgid "No data received" msgid "No data received"
msgstr "受信データ無し" msgstr "受信データ無し"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "ディレクトリ内にエントリーがありません" msgstr "ディレクトリ内にエントリーがありません"
@ -3781,11 +3781,11 @@ msgstr "OpenConnect (CISCO AnyConnect)"
msgid "Operating frequency" msgid "Operating frequency"
msgstr "動作周波数" msgstr "動作周波数"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "変更されるオプション" msgstr "変更されるオプション"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "削除されるオプション" msgstr "削除されるオプション"
@ -3934,7 +3934,7 @@ msgstr "内部ルートに使用されるテーブルを上書きします。"
msgid "Overview" msgid "Overview"
msgstr "概要" msgstr "概要"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "既存のファイル \"%s\" を上書きしますか?" msgstr "既存のファイル \"%s\" を上書きしますか?"
@ -4177,7 +4177,7 @@ msgstr "パケット"
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "ユーザー名とパスワードを入力してください。" msgstr "ユーザー名とパスワードを入力してください。"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "アップロードするファイルを選択してください。" msgstr "アップロードするファイルを選択してください。"
@ -4626,19 +4626,19 @@ msgstr "バックアップから復元する"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "パスワードを表示する/隠す" msgstr "パスワードを表示する/隠す"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "元に戻す" msgstr "元に戻す"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "変更の取り消し" msgstr "変更の取り消し"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "取り消しのリクエストはステータス <code>%h</code> で失敗しました" msgstr "取り消しのリクエストはステータス <code>%h</code> で失敗しました"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "設定を元に戻しています..." msgstr "設定を元に戻しています..."
@ -4742,7 +4742,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "スワップ" msgstr "スワップ"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4753,7 +4753,7 @@ msgid "Save"
msgstr "保存" msgstr "保存"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "保存 & 適用" msgstr "保存 & 適用"
@ -4775,11 +4775,11 @@ msgstr "スキャン"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "スケジュールタスク" msgstr "スケジュールタスク"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "追加されるセクション" msgstr "追加されるセクション"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "削除されるセクション" msgstr "削除されるセクション"
@ -4797,9 +4797,9 @@ msgstr ""
"を選択してください。ファームウェアが正しいこと、デバイスに適していることを確" "を選択してください。ファームウェアが正しいこと、デバイスに適していることを確"
"認できている場合にのみ使用してください!" "認できている場合にのみ使用してください!"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "ファイルを選択..." msgstr "ファイルを選択..."
@ -4916,7 +4916,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "信号:" msgstr "信号:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "サイズ" msgstr "サイズ"
@ -5039,7 +5039,7 @@ msgstr "開始"
msgid "Start priority" msgid "Start priority"
msgstr "優先順位" msgstr "優先順位"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "設定の適用を開始しています..." msgstr "設定の適用を開始しています..."
@ -5165,7 +5165,7 @@ msgstr "プロトコルの切り替え"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "CIDR リスト表記へ切替" msgstr "CIDR リスト表記へ切替"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "シンボリックリンク" msgstr "シンボリックリンク"
@ -5274,7 +5274,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "設定ファイルは以下のエラーにより読み込めませんでした:" msgstr "設定ファイルは以下のエラーにより読み込めませんでした:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5466,7 +5466,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "アクティブなリースはありません" msgstr "アクティブなリースはありません"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "適用する変更はありません" msgstr "適用する変更はありません"
@ -5578,8 +5578,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5801,7 +5801,7 @@ msgstr "アンマウント"
msgid "Unnamed key" msgid "Unnamed key"
msgstr "名称未設定の公開鍵" msgstr "名称未設定の公開鍵"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "保存されていない変更" msgstr "保存されていない変更"
@ -5827,7 +5827,7 @@ msgstr "サポートされていないプロトコルタイプ"
msgid "Up" msgid "Up"
msgstr "上へ" msgstr "上へ"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "アップロード" msgstr "アップロード"
@ -5844,21 +5844,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "アーカイブをアップロード..." msgstr "アーカイブをアップロード..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "ファイルのアップロード" msgstr "ファイルのアップロード"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "ファイルをアップロード…" msgstr "ファイルをアップロード…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "アップロード リクエスト失敗: %s" msgstr "アップロード リクエスト失敗: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "ファイルのアップロード..." msgstr "ファイルのアップロード..."
@ -6231,7 +6231,7 @@ msgstr "受信したDNSリクエストをsyslogへ記録します"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "システムログをファイルに書き込む" msgstr "システムログをファイルに書き込む"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "はい" msgstr "はい"
@ -6453,7 +6453,7 @@ msgstr "リンクなし"
msgid "non-empty value" msgid "non-empty value"
msgstr "空ではない値" msgstr "空ではない値"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "なし" msgstr "なし"
@ -6561,7 +6561,7 @@ msgstr "不明"
msgid "unlimited" msgid "unlimited"
msgstr "無期限" msgstr "無期限"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -23,7 +23,7 @@ msgstr ""
msgid "%d Bit" msgid "%d Bit"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "" msgstr ""
@ -59,11 +59,11 @@ msgid "-- Additional Field --"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -71,7 +71,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "" msgstr ""
@ -237,7 +237,7 @@ msgid ""
"was empty before editing." "was empty before editing."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "" msgstr ""
@ -360,11 +360,11 @@ msgstr "Active DHCPv6 임대 목록"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -642,16 +642,16 @@ msgstr ""
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -874,8 +874,8 @@ msgstr ""
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "부팅시 활성화" msgstr "부팅시 활성화"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
@ -906,8 +906,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -973,11 +973,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "변경 사항" msgstr "변경 사항"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "" msgstr ""
@ -1123,16 +1123,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "설정" msgstr "설정"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "" msgstr ""
@ -1179,7 +1179,7 @@ msgstr ""
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1392,11 +1392,11 @@ msgstr ""
"\"<code>6,192.168.2.1,192.168.2.2</code>\" 는 client 에게 다른 DNS 서버를 세" "\"<code>6,192.168.2.1,192.168.2.2</code>\" 는 client 에게 다른 DNS 서버를 세"
"팅하도록 권고할 수 있습니다." "팅하도록 권고할 수 있습니다."
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1408,7 +1408,7 @@ msgstr "삭제"
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1425,7 +1425,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "설명" msgstr "설명"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1470,7 +1470,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "" msgstr ""
@ -1487,7 +1487,7 @@ msgstr "진단"
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "" msgstr ""
@ -1554,10 +1554,10 @@ msgstr ""
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1594,7 +1594,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "" msgstr ""
@ -1606,7 +1606,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1644,7 +1644,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1689,9 +1689,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1963,7 +1963,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -1971,15 +1971,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "" msgstr ""
@ -2217,8 +2217,8 @@ msgstr ""
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "암호 설정 하기" msgstr "암호 설정 하기"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2912,7 +2912,7 @@ msgstr ""
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "" msgstr ""
@ -3011,7 +3011,7 @@ msgstr "부하"
msgid "Load Average" msgid "Load Average"
msgstr "부하 평균" msgstr "부하 평균"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3335,7 +3335,7 @@ msgstr ""
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "" msgstr ""
@ -3424,8 +3424,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "NTP 서버 목록" msgstr "NTP 서버 목록"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3473,7 +3473,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -3494,7 +3494,7 @@ msgstr ""
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3695,11 +3695,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "동작 주파수" msgstr "동작 주파수"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "변경된 option" msgstr "변경된 option"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "삭제된 option" msgstr "삭제된 option"
@ -3840,7 +3840,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "개요" msgstr "개요"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4083,7 +4083,7 @@ msgstr "Pkts."
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "사용자이름과 암호를 입력해 주세요." msgstr "사용자이름과 암호를 입력해 주세요."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4518,19 +4518,19 @@ msgstr "백업 복구"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "암호 보이기/숨기기" msgstr "암호 보이기/숨기기"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "변경 취소" msgstr "변경 취소"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "" msgstr ""
@ -4634,7 +4634,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4645,7 +4645,7 @@ msgid "Save"
msgstr "저장" msgstr "저장"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "저장 & 적용" msgstr "저장 & 적용"
@ -4667,11 +4667,11 @@ msgstr "Scan 하기"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "작업 관리" msgstr "작업 관리"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "추가된 section" msgstr "추가된 section"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "삭제된 section" msgstr "삭제된 section"
@ -4686,9 +4686,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4802,7 +4802,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Size" msgstr "Size"
@ -4915,7 +4915,7 @@ msgstr "시작"
msgid "Start priority" msgid "Start priority"
msgstr "시작 우선순위" msgstr "시작 우선순위"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -5039,7 +5039,7 @@ msgstr "프로토콜 변경"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5144,7 +5144,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5309,7 +5309,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5411,8 +5411,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5634,7 +5634,7 @@ msgstr ""
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "적용 안된 변경 사항" msgstr "적용 안된 변경 사항"
@ -5660,7 +5660,7 @@ msgstr ""
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5675,21 +5675,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "아카이브 업로드..." msgstr "아카이브 업로드..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -6055,7 +6055,7 @@ msgstr "받은 DNS 요청 내용을 systlog 에 기록합니다"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "System log 출력 파일 경로" msgstr "System log 출력 파일 경로"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@ -6275,7 +6275,7 @@ msgstr "link 없음"
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "" msgstr ""
@ -6383,7 +6383,7 @@ msgstr ""
msgid "unlimited" msgid "unlimited"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -19,7 +19,7 @@ msgstr ""
msgid "%d Bit" msgid "%d Bit"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "" msgstr ""
@ -55,11 +55,11 @@ msgid "-- Additional Field --"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -67,7 +67,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "" msgstr ""
@ -229,7 +229,7 @@ msgid ""
"was empty before editing." "was empty before editing."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "" msgstr ""
@ -350,11 +350,11 @@ msgstr ""
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -632,16 +632,16 @@ msgstr ""
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -861,8 +861,8 @@ msgstr ""
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
@ -893,8 +893,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -960,11 +960,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "" msgstr ""
@ -1102,16 +1102,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "कॉन्फिगरेशन" msgstr "कॉन्फिगरेशन"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "" msgstr ""
@ -1158,7 +1158,7 @@ msgstr ""
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1366,11 +1366,11 @@ msgid ""
"servers to clients." "servers to clients."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1382,7 +1382,7 @@ msgstr ""
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1399,7 +1399,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "वर्णन" msgstr "वर्णन"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1444,7 +1444,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "" msgstr ""
@ -1461,7 +1461,7 @@ msgstr ""
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "" msgstr ""
@ -1526,10 +1526,10 @@ msgstr ""
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1563,7 +1563,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "" msgstr ""
@ -1575,7 +1575,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1613,7 +1613,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1654,9 +1654,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1928,7 +1928,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -1936,15 +1936,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "" msgstr ""
@ -2182,8 +2182,8 @@ msgstr ""
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2876,7 +2876,7 @@ msgstr ""
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "" msgstr ""
@ -2973,7 +2973,7 @@ msgstr ""
msgid "Load Average" msgid "Load Average"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3297,7 +3297,7 @@ msgstr ""
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "" msgstr ""
@ -3386,8 +3386,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3435,7 +3435,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "नाही" msgstr "नाही"
@ -3456,7 +3456,7 @@ msgstr ""
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3657,11 +3657,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "" msgstr ""
@ -3800,7 +3800,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4043,7 +4043,7 @@ msgstr ""
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4476,19 +4476,19 @@ msgstr ""
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "" msgstr ""
@ -4590,7 +4590,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4601,7 +4601,7 @@ msgid "Save"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "" msgstr ""
@ -4623,11 +4623,11 @@ msgstr ""
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "" msgstr ""
@ -4642,9 +4642,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4758,7 +4758,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "" msgstr ""
@ -4871,7 +4871,7 @@ msgstr ""
msgid "Start priority" msgid "Start priority"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -4992,7 +4992,7 @@ msgstr ""
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5097,7 +5097,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5257,7 +5257,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5351,8 +5351,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5571,7 +5571,7 @@ msgstr ""
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "" msgstr ""
@ -5597,7 +5597,7 @@ msgstr ""
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5612,21 +5612,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -5987,7 +5987,7 @@ msgstr ""
msgid "Write system log to file" msgid "Write system log to file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "होय" msgstr "होय"
@ -6201,7 +6201,7 @@ msgstr ""
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "" msgstr ""
@ -6309,7 +6309,7 @@ msgstr ""
msgid "unlimited" msgid "unlimited"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -22,7 +22,7 @@ msgstr ""
msgid "%d Bit" msgid "%d Bit"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgid "-- Additional Field --"
msgstr "-- Gelanggang Tambahan --" msgstr "-- Gelanggang Tambahan --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -70,7 +70,7 @@ msgstr "-- Sila pilih --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- memperibadi --" msgstr "-- memperibadi --"
@ -233,7 +233,7 @@ msgid ""
"was empty before editing." "was empty before editing."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "" msgstr ""
@ -354,11 +354,11 @@ msgstr ""
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -636,16 +636,16 @@ msgstr ""
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -865,8 +865,8 @@ msgstr ""
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
@ -897,8 +897,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -964,11 +964,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Rantai" msgstr "Rantai"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Laman" msgstr "Laman"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "" msgstr ""
@ -1106,16 +1106,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Konfigurasi" msgstr "Konfigurasi"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "" msgstr ""
@ -1162,7 +1162,7 @@ msgstr ""
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1370,11 +1370,11 @@ msgid ""
"servers to clients." "servers to clients."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1386,7 +1386,7 @@ msgstr "Padam"
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1403,7 +1403,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "Keterangan" msgstr "Keterangan"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1448,7 +1448,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "" msgstr ""
@ -1465,7 +1465,7 @@ msgstr ""
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "" msgstr ""
@ -1530,10 +1530,10 @@ msgstr ""
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1572,7 +1572,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "" msgstr ""
@ -1584,7 +1584,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1622,7 +1622,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1664,9 +1664,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "EAP-Kaedah" msgstr "EAP-Kaedah"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1938,7 +1938,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -1946,15 +1946,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "" msgstr ""
@ -2192,8 +2192,8 @@ msgstr ""
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2897,7 +2897,7 @@ msgstr ""
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "" msgstr ""
@ -2994,7 +2994,7 @@ msgstr "Load"
msgid "Load Average" msgid "Load Average"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3318,7 +3318,7 @@ msgstr "Monitor"
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "" msgstr ""
@ -3409,8 +3409,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3458,7 +3458,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "Kemudian »" msgstr "Kemudian »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -3479,7 +3479,7 @@ msgstr ""
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3680,11 +3680,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "" msgstr ""
@ -3823,7 +3823,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Keseluruhan" msgstr "Keseluruhan"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4066,7 +4066,7 @@ msgstr "Pkts."
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Sila masukkan username dan kata laluan anda." msgstr "Sila masukkan username dan kata laluan anda."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4500,19 +4500,19 @@ msgstr "Kembalikan sandaran"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Kembali" msgstr "Kembali"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "" msgstr ""
@ -4616,7 +4616,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4627,7 +4627,7 @@ msgid "Save"
msgstr "Simpan" msgstr "Simpan"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Simpan & Melaksanakan" msgstr "Simpan & Melaksanakan"
@ -4649,11 +4649,11 @@ msgstr "Scan"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Tugas Jadual" msgstr "Tugas Jadual"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "" msgstr ""
@ -4668,9 +4668,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4784,7 +4784,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Saiz" msgstr "Saiz"
@ -4897,7 +4897,7 @@ msgstr "Mula"
msgid "Start priority" msgid "Start priority"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -5018,7 +5018,7 @@ msgstr ""
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5126,7 +5126,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5293,7 +5293,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5391,8 +5391,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5611,7 +5611,7 @@ msgstr ""
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Perubahan yang belum disimpan" msgstr "Perubahan yang belum disimpan"
@ -5637,7 +5637,7 @@ msgstr ""
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5652,21 +5652,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -6029,7 +6029,7 @@ msgstr ""
msgid "Write system log to file" msgid "Write system log to file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@ -6243,7 +6243,7 @@ msgstr ""
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "tidak ada" msgstr "tidak ada"
@ -6351,7 +6351,7 @@ msgstr ""
msgid "unlimited" msgid "unlimited"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -19,7 +19,7 @@ msgstr ""
msgid "%d Bit" msgid "%d Bit"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "" msgstr ""
@ -55,11 +55,11 @@ msgid "-- Additional Field --"
msgstr "-- Tilleggs Felt --" msgstr "-- Tilleggs Felt --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -67,7 +67,7 @@ msgstr "-- Vennligst velg --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- egendefinert --" msgstr "-- egendefinert --"
@ -237,7 +237,7 @@ msgid ""
"was empty before editing." "was empty before editing."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "" msgstr ""
@ -365,11 +365,11 @@ msgstr "Aktive DHCPv6 Leier"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc (Uavhengig)" msgstr "Ad-Hoc (Uavhengig)"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -647,16 +647,16 @@ msgstr "Alle soner"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -879,8 +879,8 @@ msgstr "Bro enhetsnummer"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "Slå på ved oppstart" msgstr "Slå på ved oppstart"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
@ -911,8 +911,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -978,11 +978,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Lenke" msgstr "Lenke"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Endringer" msgstr "Endringer"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "" msgstr ""
@ -1130,16 +1130,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Konfigurasjon" msgstr "Konfigurasjon"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "" msgstr ""
@ -1186,7 +1186,7 @@ msgstr ""
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1398,11 +1398,11 @@ msgstr ""
"Definer flere DHCP valg, f.eks \"<code>192.168.2.1,192.168.2.2</code>\" som " "Definer flere DHCP valg, f.eks \"<code>192.168.2.1,192.168.2.2</code>\" som "
"annonserer forskjellige DNS servere til klientene." "annonserer forskjellige DNS servere til klientene."
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1414,7 +1414,7 @@ msgstr "Fjern"
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1431,7 +1431,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "Beskrivelse" msgstr "Beskrivelse"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1476,7 +1476,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "" msgstr ""
@ -1493,7 +1493,7 @@ msgstr "Nettverksdiagnostikk"
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Katalog" msgstr "Katalog"
@ -1560,10 +1560,10 @@ msgstr ""
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1603,7 +1603,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "Ikke videresend reverserte oppslag for lokale nettverk" msgstr "Ikke videresend reverserte oppslag for lokale nettverk"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "" msgstr ""
@ -1615,7 +1615,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1655,7 +1655,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1701,9 +1701,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "EAP-metode" msgstr "EAP-metode"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1976,7 +1976,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -1984,15 +1984,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "Fil" msgstr "Fil"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "" msgstr ""
@ -2231,8 +2231,8 @@ msgstr ""
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "Gå til passord konfigurasjon..." msgstr "Gå til passord konfigurasjon..."
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2935,7 +2935,7 @@ msgstr "La stå tomt for automatisk oppdagelse"
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "La stå tomt for å bruke gjeldene WAN adresse" msgstr "La stå tomt for å bruke gjeldene WAN adresse"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "Forklaring:" msgstr "Forklaring:"
@ -3035,7 +3035,7 @@ msgstr "Belastning"
msgid "Load Average" msgid "Load Average"
msgstr "Belastning Gjennomsnitt" msgstr "Belastning Gjennomsnitt"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3364,7 +3364,7 @@ msgstr "Monitor"
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "" msgstr ""
@ -3455,8 +3455,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "NTP server kandidater" msgstr "NTP server kandidater"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3504,7 +3504,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "Neste »" msgstr "Neste »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -3525,7 +3525,7 @@ msgstr ""
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3726,11 +3726,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Innstilling endret" msgstr "Innstilling endret"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Innstilling fjernet" msgstr "Innstilling fjernet"
@ -3871,7 +3871,7 @@ msgstr "Overstyr tabellen som brukes for interne ruter"
msgid "Overview" msgid "Overview"
msgstr "Oversikt" msgstr "Oversikt"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4114,7 +4114,7 @@ msgstr "Pakker."
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Skriv inn ditt brukernavn og passord." msgstr "Skriv inn ditt brukernavn og passord."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4551,19 +4551,19 @@ msgstr "Gjenopprett sikkerhetskopi"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "Vis/Skjul passord" msgstr "Vis/Skjul passord"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Tilbakestill" msgstr "Tilbakestill"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "" msgstr ""
@ -4667,7 +4667,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4678,7 +4678,7 @@ msgid "Save"
msgstr "Lagre" msgstr "Lagre"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Lagre & Aktiver" msgstr "Lagre & Aktiver"
@ -4700,11 +4700,11 @@ msgstr "Skann"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Planlagte Oppgaver" msgstr "Planlagte Oppgaver"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Seksjon lagt til" msgstr "Seksjon lagt til"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Seksjon fjernet" msgstr "Seksjon fjernet"
@ -4719,9 +4719,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4837,7 +4837,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "Signal:" msgstr "Signal:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Størrelse" msgstr "Størrelse"
@ -4954,7 +4954,7 @@ msgstr "Start"
msgid "Start priority" msgid "Start priority"
msgstr "Start prioritet" msgstr "Start prioritet"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -5078,7 +5078,7 @@ msgstr "Svitsj protokoll"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5186,7 +5186,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5362,7 +5362,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5468,8 +5468,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5692,7 +5692,7 @@ msgstr ""
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Ulagrede Endringer" msgstr "Ulagrede Endringer"
@ -5718,7 +5718,7 @@ msgstr "Protokoll type er ikke støttet."
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5733,21 +5733,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "Last opp arkiv..." msgstr "Last opp arkiv..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -6117,7 +6117,7 @@ msgstr "Skriv mottatte DNS forespørsler til syslog"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@ -6339,7 +6339,7 @@ msgstr "ingen forbindelse"
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "ingen" msgstr "ingen"
@ -6447,7 +6447,7 @@ msgstr "ukjent"
msgid "unlimited" msgid "unlimited"
msgstr "ubegrenset" msgstr "ubegrenset"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -24,7 +24,7 @@ msgstr "%.1f dB"
msgid "%d Bit" msgid "%d Bit"
msgstr "%d Bit" msgstr "%d Bit"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "%d nieprawidłowe pole(pola)" msgstr "%d nieprawidłowe pole(pola)"
@ -60,11 +60,11 @@ msgid "-- Additional Field --"
msgstr "-- Dodatkowe pole --" msgstr "-- Dodatkowe pole --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -72,7 +72,7 @@ msgstr "-- Proszę wybrać --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- własne --" msgstr "-- własne --"
@ -243,7 +243,7 @@ msgstr ""
"<br/>Uwaga: musisz ręcznie zrestartować usługę cron, jeśli plik crontab był " "<br/>Uwaga: musisz ręcznie zrestartować usługę cron, jeśli plik crontab był "
"pusty przed edycją." "pusty przed edycją."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "Katalog o tej samej nazwie już istnieje." msgstr "Katalog o tej samej nazwie już istnieje."
@ -374,11 +374,11 @@ msgstr "Aktywne dzierżawy DHCPv6"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -666,16 +666,16 @@ msgstr "Dowolna strefa"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "Czy zastosować kopię zapasową?" msgstr "Czy zastosować kopię zapasową?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "Żądanie zatwierdzenia nie powiodło się ze statusem <code>%h</code>" msgstr "Żądanie zatwierdzenia nie powiodło się ze statusem <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "Zastosuj Zmiany" msgstr "Zastosuj Zmiany"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "Wprowadzanie zmian w konfiguracji… %ds" msgstr "Wprowadzanie zmian w konfiguracji… %ds"
@ -906,8 +906,8 @@ msgstr "Numer mostu (urządzenia)"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "Podnieś przy stracie" msgstr "Podnieś przy stracie"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "Przeglądaj…" msgstr "Przeglądaj…"
@ -939,8 +939,8 @@ msgstr "Podręczna"
msgid "Call failed" msgid "Call failed"
msgstr "Połączenie nieudane" msgstr "Połączenie nieudane"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -978,8 +978,8 @@ msgid ""
"Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See " "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
"`logread -f` during handshake for actual values" "`logread -f` during handshake for actual values"
msgstr "" msgstr ""
"Certyfikat ograniczenia podciągów - np. /CN=wifi.mycompany.com<br />Zobacz `" "Certyfikat ograniczenia podciągów - np. /CN=wifi.mycompany.com<br />Zobacz "
"logread -f` podczas uzgadniania wartości rzeczywistych" "`logread -f` podczas uzgadniania wartości rzeczywistych"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1464 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1464
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1560 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1560
@ -987,8 +987,8 @@ msgid ""
"Certificate constraint(s) against DNS SAN values (if available)<br />or " "Certificate constraint(s) against DNS SAN values (if available)<br />or "
"Subject CN (exact match)" "Subject CN (exact match)"
msgstr "" msgstr ""
"Ograniczenie(-a) certyfikatu w stosunku do wartości DNS SAN (jeśli dostępne)<" "Ograniczenie(-a) certyfikatu w stosunku do wartości DNS SAN (jeśli "
"br />lub Subject CN (dokładne dopasowanie)" "dostępne)<br />lub Subject CN (dokładne dopasowanie)"
#: 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:1470
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1566 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1566
@ -1005,8 +1005,8 @@ msgid ""
"Certificate constraint(s) via Subject Alternate Name values<br />(supported " "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
"attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com" "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
msgstr "" msgstr ""
"Ograniczenie(-a) certyfikatu przez Subject Alternate Name values<br />(" "Ograniczenie(-a) certyfikatu przez Subject Alternate Name values<br /"
"obsługiwane atrybuty: EMAIL, DNS, URI) - np. DNS:wifi.mycompany.com" ">(obsługiwane atrybuty: EMAIL, DNS, URI) - np. DNS:wifi.mycompany.com"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:51 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:51
#: 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:54
@ -1014,11 +1014,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Łańcuch" msgstr "Łańcuch"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Zmiany" msgstr "Zmiany"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "Zmiany zostały cofnięte." msgstr "Zmiany zostały cofnięte."
@ -1173,16 +1173,16 @@ msgstr ""
"odporność kluczowych negocjacji, szczególnie w środowiskach o dużym " "odporność kluczowych negocjacji, szczególnie w środowiskach o dużym "
"natężeniu ruchu." "natężeniu ruchu."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Konfiguracja" msgstr "Konfiguracja"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "Konfiguracja została zastosowana." msgstr "Konfiguracja została zastosowana."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "Konfiguracja została wycofana!" msgstr "Konfiguracja została wycofana!"
@ -1229,7 +1229,7 @@ msgstr "Zawartość została zapisana."
msgid "Continue" msgid "Continue"
msgstr "Kontynuuj" msgstr "Kontynuuj"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1447,11 +1447,11 @@ msgstr ""
"Zdefiniuj dodatkowe opcje DHCP, np. \"<code>6,192.168.2.1,192.168.2.2</code>" "Zdefiniuj dodatkowe opcje DHCP, np. \"<code>6,192.168.2.1,192.168.2.2</code>"
"\" rozgłasza domyślne serwery DNS klientom DHCP." "\" rozgłasza domyślne serwery DNS klientom DHCP."
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1463,7 +1463,7 @@ msgstr "Usuń"
msgid "Delete key" msgid "Delete key"
msgstr "Usuń klucz" msgstr "Usuń klucz"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "Zalecane kasowanie nieudane: %s" msgstr "Zalecane kasowanie nieudane: %s"
@ -1480,7 +1480,7 @@ msgstr "Interwał komunikatu o wskazaniu dostawy ruchu"
msgid "Description" msgid "Description"
msgstr "Opis" msgstr "Opis"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "Odznacz" msgstr "Odznacz"
@ -1525,7 +1525,7 @@ msgstr "Urządzenie nieaktywne"
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "Urządzenie jest restartowane…" msgstr "Urządzenie jest restartowane…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "Urządzenie nieosiągalne!" msgstr "Urządzenie nieosiągalne!"
@ -1542,7 +1542,7 @@ msgstr "Diagnostyka"
msgid "Dial number" msgid "Dial number"
msgstr "Numer do wybrania" msgstr "Numer do wybrania"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Katalog" msgstr "Katalog"
@ -1609,10 +1609,10 @@ msgstr "Rozłącz"
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "Próba rozłączenia nie powiodła się" msgstr "Próba rozłączenia nie powiodła się"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1652,7 +1652,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "Nie przekazuj wyszukiwań wstecznych (lookups) do sieci lokalnych" msgstr "Nie przekazuj wyszukiwań wstecznych (lookups) do sieci lokalnych"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "Czy jesteś pewien, że chcesz usunąć \"%s\" ?" msgstr "Czy jesteś pewien, że chcesz usunąć \"%s\" ?"
@ -1664,7 +1664,7 @@ msgstr "Czy na pewno chcesz usunąć następujący klucz SSH?"
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "Czy jesteś pewny, że naprawdę chcesz skasować wszystkie ustawienia?" msgstr "Czy jesteś pewny, że naprawdę chcesz skasować wszystkie ustawienia?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
"Czy jesteś pewien, że chcesz skasować katalog \"%s\" ze wszystkimi jego " "Czy jesteś pewien, że chcesz skasować katalog \"%s\" ze wszystkimi jego "
@ -1706,7 +1706,7 @@ msgstr "Pobierz mtdblock"
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "Kompensacja transmisji SNR" msgstr "Kompensacja transmisji SNR"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "Przeciągnij, aby zmienić kolejność" msgstr "Przeciągnij, aby zmienić kolejność"
@ -1753,9 +1753,9 @@ msgstr "Długość EA-bits"
msgid "EAP-Method" msgid "EAP-Method"
msgstr "Metoda protokołu rozszerzonego uwierzytelniania (EAP)" msgstr "Metoda protokołu rozszerzonego uwierzytelniania (EAP)"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -2036,7 +2036,7 @@ msgstr "Protokół FT"
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "Zmiana hasła systemowego nieudana." msgstr "Zmiana hasła systemowego nieudana."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "Nie udało się zatwierdzić w ciągu %ds, czekam na wycofanie…" msgstr "Nie udało się zatwierdzić w ciągu %ds, czekam na wycofanie…"
@ -2044,15 +2044,15 @@ msgstr "Nie udało się zatwierdzić w ciągu %ds, czekam na wycofanie…"
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Nie można wykonać \"/etc/init.d/%s %s\" akcja: %s" msgstr "Nie można wykonać \"/etc/init.d/%s %s\" akcja: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "Plik" msgstr "Plik"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "Plik niedostępny" msgstr "Plik niedostępny"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "Nazwa pliku" msgstr "Nazwa pliku"
@ -2295,8 +2295,8 @@ msgstr "Globalne opcje sieciowe"
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "Przejdź do konfiguracji hasła..." msgstr "Przejdź do konfiguracji hasła..."
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -3008,7 +3008,7 @@ msgstr "Pozostaw puste, aby automatycznie wykryć"
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "Pozostaw puste, aby użyć bieżącego adresu WAN" msgstr "Pozostaw puste, aby użyć bieżącego adresu WAN"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "Legenda:" msgstr "Legenda:"
@ -3119,7 +3119,7 @@ msgstr "Obciążenie"
msgid "Load Average" msgid "Load Average"
msgstr "Średnie obciążenie" msgstr "Średnie obciążenie"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "Ładowanie zawartości katalogu.…" msgstr "Ładowanie zawartości katalogu.…"
@ -3450,7 +3450,7 @@ msgstr "Monitor"
msgid "More Characters" msgid "More Characters"
msgstr "Użyj więcej znaków" msgstr "Użyj więcej znaków"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "Więcej…" msgstr "Więcej…"
@ -3541,8 +3541,8 @@ msgstr "Domena NT"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Lista serwerów NTP" msgstr "Lista serwerów NTP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3590,7 +3590,7 @@ msgstr "Nazwa nowego interfejsu…"
msgid "Next »" msgid "Next »"
msgstr "Następna »" msgstr "Następna »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "Nie" msgstr "Nie"
@ -3611,7 +3611,7 @@ msgstr "Bez NAT-T"
msgid "No data received" msgid "No data received"
msgstr "Nie otrzymano danych" msgstr "Nie otrzymano danych"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "Brak wpisów w tym katalogu" msgstr "Brak wpisów w tym katalogu"
@ -3814,11 +3814,11 @@ msgstr "OpenConnect (CISCO AnyConnect)"
msgid "Operating frequency" msgid "Operating frequency"
msgstr "Częstotliwość" msgstr "Częstotliwość"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Wartość zmieniona" msgstr "Wartość zmieniona"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Usunięto wartość" msgstr "Usunięto wartość"
@ -3971,7 +3971,7 @@ msgstr "Nadpisz tablicę routingu używaną dla wewnętrznych tras routowania"
msgid "Overview" msgid "Overview"
msgstr "Przegląd" msgstr "Przegląd"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "Nadpisać istniejący plik \"%s\" ?" msgstr "Nadpisać istniejący plik \"%s\" ?"
@ -4214,7 +4214,7 @@ msgstr "Pktw."
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Proszę wprowadź swój login i hasło." msgstr "Proszę wprowadź swój login i hasło."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "Wybierz plik do przesłania." msgstr "Wybierz plik do przesłania."
@ -4667,19 +4667,19 @@ msgstr "Przywróć kopię zapasową"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "Pokaż/Ukryj hasło" msgstr "Pokaż/Ukryj hasło"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Przywróć" msgstr "Przywróć"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "Przywróć zmiany" msgstr "Przywróć zmiany"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "Żądanie powrotu nie powiodło się ze statusem <code>%h</code>" msgstr "Żądanie powrotu nie powiodło się ze statusem <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "Przywracanie konfiguracji…" msgstr "Przywracanie konfiguracji…"
@ -4784,7 +4784,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "SWAP" msgstr "SWAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4795,7 +4795,7 @@ msgid "Save"
msgstr "Zapisz" msgstr "Zapisz"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Zapisz i Zastosuj" msgstr "Zapisz i Zastosuj"
@ -4817,11 +4817,11 @@ msgstr "Skanuj"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Zaplanowane zadania" msgstr "Zaplanowane zadania"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Dodano sekcję" msgstr "Dodano sekcję"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Usunięto sekcję" msgstr "Usunięto sekcję"
@ -4839,9 +4839,9 @@ msgstr ""
"formatu obrazu nie powiodło się. Używaj tylko wtedy, gdy masz pewność że " "formatu obrazu nie powiodło się. Używaj tylko wtedy, gdy masz pewność że "
"oprogramowanie jest poprawne i jest przeznaczone dla twojego urządzenia!" "oprogramowanie jest poprawne i jest przeznaczone dla twojego urządzenia!"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "Wybierz plik…" msgstr "Wybierz plik…"
@ -4959,7 +4959,7 @@ msgstr "Tłumienie sygnału (SATN)"
msgid "Signal:" msgid "Signal:"
msgstr "Sygnał:" msgstr "Sygnał:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Rozmiar" msgstr "Rozmiar"
@ -5085,7 +5085,7 @@ msgstr "Uruchom"
msgid "Start priority" msgid "Start priority"
msgstr "Priorytet uruchamiania" msgstr "Priorytet uruchamiania"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "Zatwierdzanie konfiguracji…" msgstr "Zatwierdzanie konfiguracji…"
@ -5211,7 +5211,7 @@ msgstr "Protokół przełącznika"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "Przejdź do notacji listy CIDR" msgstr "Przejdź do notacji listy CIDR"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "Dowiązanie symboliczne" msgstr "Dowiązanie symboliczne"
@ -5324,7 +5324,7 @@ msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
"Plik konfiguracyjny nie mógł zostać załadowany z powodu następującego błędu:" "Plik konfiguracyjny nie mógł zostać załadowany z powodu następującego błędu:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5519,7 +5519,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "Nie ma aktywnych dzierżaw" msgstr "Nie ma aktywnych dzierżaw"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "Nie ma żadnych zmian do zastosowania" msgstr "Nie ma żadnych zmian do zastosowania"
@ -5638,8 +5638,8 @@ msgid ""
msgstr "" msgstr ""
"Nie można użyć tej opcji, ponieważ pakiet ca-bundle nie jest zainstalowany." "Nie można użyć tej opcji, ponieważ pakiet ca-bundle nie jest zainstalowany."
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5861,7 +5861,7 @@ msgstr "Odmontuj"
msgid "Unnamed key" msgid "Unnamed key"
msgstr "Klucz beznazwy" msgstr "Klucz beznazwy"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Niezapisane zmiany" msgstr "Niezapisane zmiany"
@ -5887,7 +5887,7 @@ msgstr "Nieobsługiwany typ protokołu."
msgid "Up" msgid "Up"
msgstr "Góra" msgstr "Góra"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "Wyślij" msgstr "Wyślij"
@ -5902,21 +5902,21 @@ msgstr "Prześlij obraz zgodny z sysupgrade, aby zastąpić obecny firmware."
msgid "Upload archive..." msgid "Upload archive..."
msgstr "Załaduj archiwum..." msgstr "Załaduj archiwum..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "Prześlij plik" msgstr "Prześlij plik"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "Prześlij plik…" msgstr "Prześlij plik…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "Przesyłanie nie powiodło się: %s" msgstr "Przesyłanie nie powiodło się: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "Przesyłanie pliku…" msgstr "Przesyłanie pliku…"
@ -6149,8 +6149,8 @@ msgid ""
"Validate server certificate using built-in system CA bundle,<br />requires " "Validate server certificate using built-in system CA bundle,<br />requires "
"the \"ca-bundle\" package" "the \"ca-bundle\" package"
msgstr "" msgstr ""
"Weryfikacja certyfikatu serwera za pomocą wbudowanego systemu CA bundle,<br " "Weryfikacja certyfikatu serwera za pomocą wbudowanego systemu CA bundle,<br /"
"/>wymaga pakietu \"ca-bundle\"" ">wymaga pakietu \"ca-bundle\""
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
msgid "Vendor" msgid "Vendor"
@ -6298,7 +6298,7 @@ msgstr "Zapisz otrzymane żądania DNS do dziennika systemowego"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "Zapisz dziennik systemowy do pliku" msgstr "Zapisz dziennik systemowy do pliku"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "Tak" msgstr "Tak"
@ -6523,7 +6523,7 @@ msgstr "niepowiązane"
msgid "non-empty value" msgid "non-empty value"
msgstr "niepustą wartość" msgstr "niepustą wartość"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "brak" msgstr "brak"
@ -6631,7 +6631,7 @@ msgstr "nieznane"
msgid "unlimited" msgid "unlimited"
msgstr "nielimitowane" msgstr "nielimitowane"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -23,7 +23,7 @@ msgstr "%.1f dB"
msgid "%d Bit" msgid "%d Bit"
msgstr "%d Bit" msgstr "%d Bit"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "%d campo(s) inválido(s)" msgstr "%d campo(s) inválido(s)"
@ -59,11 +59,11 @@ msgid "-- Additional Field --"
msgstr "-- Campo Adicional --" msgstr "-- Campo Adicional --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -71,7 +71,7 @@ msgstr "-- Por favor, escolha --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- personalizado --" msgstr "-- personalizado --"
@ -254,7 +254,7 @@ msgstr ""
"<br/>Nota: se antes da edição o crontab estava vazio, é necessário reiniciar " "<br/>Nota: se antes da edição o crontab estava vazio, é necessário reiniciar "
"manualmente o serviço cron." "manualmente o serviço cron."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "Um diretório com o mesmo nome já existe." msgstr "Um diretório com o mesmo nome já existe."
@ -388,11 +388,11 @@ msgstr "Alocações DHCPv6 ativas"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -684,16 +684,16 @@ msgstr "Qualquer zona"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "Aplicar cópia de segurança?" msgstr "Aplicar cópia de segurança?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "Pedido para aplicar falhou com o estado <code>%h</code>" msgstr "Pedido para aplicar falhou com o estado <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "Aplicar sem verificação" msgstr "Aplicar sem verificação"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "Aplicando as mudanças de configuração... %ds" msgstr "Aplicando as mudanças de configuração... %ds"
@ -927,8 +927,8 @@ msgstr "Número da ponte"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "Levantar na iniciação" msgstr "Levantar na iniciação"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "Explorar…" msgstr "Explorar…"
@ -960,8 +960,8 @@ msgstr "Em cache"
msgid "Call failed" msgid "Call failed"
msgstr "A chamada falhou" msgstr "A chamada falhou"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -1027,11 +1027,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Corrente" msgstr "Corrente"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Alterações" msgstr "Alterações"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "As mudanças foram revertidas." msgstr "As mudanças foram revertidas."
@ -1188,16 +1188,16 @@ msgstr ""
"compatibilidade e reduzir a robustez da negociação de chaves, especialmente " "compatibilidade e reduzir a robustez da negociação de chaves, especialmente "
"em ambientes com muito tráfego." "em ambientes com muito tráfego."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Configuração" msgstr "Configuração"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "A configuração foi aplicada." msgstr "A configuração foi aplicada."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "A configuração foi revertida!" msgstr "A configuração foi revertida!"
@ -1244,7 +1244,7 @@ msgstr "O conteúdo foi salvo."
msgid "Continue" msgid "Continue"
msgstr "Continuar" msgstr "Continuar"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1465,11 +1465,11 @@ msgstr ""
"\"<code>6,192.168.2.1,192.168.2.2</code>\" que anuncia diferentes servidores " "\"<code>6,192.168.2.1,192.168.2.2</code>\" que anuncia diferentes servidores "
"DNS para os clientes." "DNS para os clientes."
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1481,7 +1481,7 @@ msgstr "Apagar"
msgid "Delete key" msgid "Delete key"
msgstr "Apagar chave" msgstr "Apagar chave"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "Solicitação para apagar falhou: %s" msgstr "Solicitação para apagar falhou: %s"
@ -1498,7 +1498,7 @@ msgstr "Intervalo da Mensagem Indicativa de Envio de Tráfego"
msgid "Description" msgid "Description"
msgstr "Descrição" msgstr "Descrição"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "Remover seleção" msgstr "Remover seleção"
@ -1543,7 +1543,7 @@ msgstr "O dispositivo não está ativo"
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "O dispositivo está reiniciando…" msgstr "O dispositivo está reiniciando…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "Dispositivo não alcançável!" msgstr "Dispositivo não alcançável!"
@ -1561,7 +1561,7 @@ msgstr "Diagnóstico"
msgid "Dial number" msgid "Dial number"
msgstr "Número de discagem" msgstr "Número de discagem"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Diretório" msgstr "Diretório"
@ -1629,10 +1629,10 @@ msgstr "Desconectar"
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "A tentativa de desconexão falhou" msgstr "A tentativa de desconexão falhou"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1674,7 +1674,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "Não encaminhe buscas por endereço reverso das redes local" msgstr "Não encaminhe buscas por endereço reverso das redes local"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "Você realmente deseja apagar \"%s\" ?" msgstr "Você realmente deseja apagar \"%s\" ?"
@ -1686,7 +1686,7 @@ msgstr "Você realmente deseja apagar a seguinte chave SSH?"
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "Você realmente deseja apagar todas as configurações?" msgstr "Você realmente deseja apagar todas as configurações?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Você realmente deseja apagar recursivamente o diretório \"%s\" ?" msgstr "Você realmente deseja apagar recursivamente o diretório \"%s\" ?"
@ -1729,7 +1729,7 @@ msgstr ""
"Deslocamento <abbr title=\"Razão entre Sinal e Ruído/Signal to Noise Ratio" "Deslocamento <abbr title=\"Razão entre Sinal e Ruído/Signal to Noise Ratio"
"\">SNR</abbr> do sinal recebido" "\">SNR</abbr> do sinal recebido"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "Arrastar para reordenar" msgstr "Arrastar para reordenar"
@ -1777,9 +1777,9 @@ msgstr "Comprimento dos bits EA"
msgid "EAP-Method" msgid "EAP-Method"
msgstr "Método EAP" msgstr "Método EAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -2067,7 +2067,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "Falha ao alterar a senha do sistema." msgstr "Falha ao alterar a senha do sistema."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
"A confirmação das mudanças na configuração não foram confirmadas em %d " "A confirmação das mudanças na configuração não foram confirmadas em %d "
@ -2077,15 +2077,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Falha ao executar a ação \"/etc/init.d/%s %s\": %s" msgstr "Falha ao executar a ação \"/etc/init.d/%s %s\": %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "Arquivo" msgstr "Arquivo"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "Arquivo não associado" msgstr "Arquivo não associado"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "Nome de arquivo" msgstr "Nome de arquivo"
@ -2332,8 +2332,8 @@ msgstr "Opção global de rede"
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "Ir para a configuração de senha..." msgstr "Ir para a configuração de senha..."
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -3058,7 +3058,7 @@ msgstr "Deixe vazio para detectar automaticamente"
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "Deixe vazio para usar o endereço WAN atual" msgstr "Deixe vazio para usar o endereço WAN atual"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "Legenda:" msgstr "Legenda:"
@ -3174,7 +3174,7 @@ msgstr "Carga"
msgid "Load Average" msgid "Load Average"
msgstr "Carga Média" msgstr "Carga Média"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "Carregando conteúdo do diretório…" msgstr "Carregando conteúdo do diretório…"
@ -3511,7 +3511,7 @@ msgstr "Monitor"
msgid "More Characters" msgid "More Characters"
msgstr "Mais Caracteres" msgstr "Mais Caracteres"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "Mais…" msgstr "Mais…"
@ -3602,8 +3602,8 @@ msgstr "Domínio NT"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Candidatos a servidor NTP" msgstr "Candidatos a servidor NTP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3651,7 +3651,7 @@ msgstr "Nome de nova interface…"
msgid "Next »" msgid "Next »"
msgstr "Próximo »" msgstr "Próximo »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "Não" msgstr "Não"
@ -3672,7 +3672,7 @@ msgstr "Sem NAT-T"
msgid "No data received" msgid "No data received"
msgstr "Nenhum dado recebido" msgstr "Nenhum dado recebido"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "Nenhuma entrada neste diretório" msgstr "Nenhuma entrada neste diretório"
@ -3878,11 +3878,11 @@ msgstr "OpenConnect (CISCO AnyConnect)"
msgid "Operating frequency" msgid "Operating frequency"
msgstr "Frequência de Operação" msgstr "Frequência de Operação"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Opção alterada" msgstr "Opção alterada"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Opção removida" msgstr "Opção removida"
@ -4039,7 +4039,7 @@ msgstr "Sobrescrever a tabela usada para as rotas internas"
msgid "Overview" msgid "Overview"
msgstr "Visão Geral" msgstr "Visão Geral"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "Sobrescrever o arquivo existente \"%s\" ?" msgstr "Sobrescrever o arquivo existente \"%s\" ?"
@ -4282,7 +4282,7 @@ msgstr "Pcts."
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Entre com o seu usuário e senha." msgstr "Entre com o seu usuário e senha."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "Por favor, selecione o arquivo para enviar." msgstr "Por favor, selecione o arquivo para enviar."
@ -4738,20 +4738,20 @@ msgstr "Restaurar cópia de segurança"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "Relevar/esconder senha" msgstr "Relevar/esconder senha"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Reverter" msgstr "Reverter"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "Reverter as mudanças" msgstr "Reverter as mudanças"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
"O pedido para reverter as configurações falhou com o estado <code>%h</code>" "O pedido para reverter as configurações falhou com o estado <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "Revertendo configurações…" msgstr "Revertendo configurações…"
@ -4856,7 +4856,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "SWAP" msgstr "SWAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4867,7 +4867,7 @@ msgid "Save"
msgstr "Salvar" msgstr "Salvar"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Salvar & Aplicar" msgstr "Salvar & Aplicar"
@ -4889,11 +4889,11 @@ msgstr "Procurar"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Tarefas Agendadas" msgstr "Tarefas Agendadas"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Seção adicionada" msgstr "Seção adicionada"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Seção removida" msgstr "Seção removida"
@ -4911,9 +4911,9 @@ msgstr ""
"do formato da imagem falhe. Use somente caso tenha certeza que o firmware " "do formato da imagem falhe. Use somente caso tenha certeza que o firmware "
"está correto e é compatível com o seu dispositivo!" "está correto e é compatível com o seu dispositivo!"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "Selecione o arquivo…" msgstr "Selecione o arquivo…"
@ -5036,7 +5036,7 @@ msgstr "Atenuação do Sinal (<abbr title=\"Signal Attenuation\">SATN</abbr>)"
msgid "Signal:" msgid "Signal:"
msgstr "Sinal:" msgstr "Sinal:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Tamanho" msgstr "Tamanho"
@ -5163,7 +5163,7 @@ msgstr "Iniciar"
msgid "Start priority" msgid "Start priority"
msgstr "Prioridade de iniciação" msgstr "Prioridade de iniciação"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "Iniciando a aplicação da configuração…" msgstr "Iniciando a aplicação da configuração…"
@ -5290,7 +5290,7 @@ msgstr "Trocar o protocolo"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "Alternar para a notação da lista CIDR" msgstr "Alternar para a notação da lista CIDR"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "Link simbólico" msgstr "Link simbólico"
@ -5401,7 +5401,7 @@ msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
"O arquivo de configuração não pode ser carregado devido ao seguinte erro:" "O arquivo de configuração não pode ser carregado devido ao seguinte erro:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5599,7 +5599,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "Não há concessões de IP ativas no momento" msgstr "Não há concessões de IP ativas no momento"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "Não há alterações a serem aplicadas" msgstr "Não há alterações a serem aplicadas"
@ -5716,8 +5716,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5942,7 +5942,7 @@ msgstr "Desmontar"
msgid "Unnamed key" msgid "Unnamed key"
msgstr "Chave sem nome" msgstr "Chave sem nome"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Alterações Não Salvas" msgstr "Alterações Não Salvas"
@ -5970,7 +5970,7 @@ msgstr "Tipo de protocolo não suportado."
msgid "Up" msgid "Up"
msgstr "Acima" msgstr "Acima"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "Envio" msgstr "Envio"
@ -5987,21 +5987,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "Enviar arquivo..." msgstr "Enviar arquivo..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "Enviar arquivo" msgstr "Enviar arquivo"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "Enviar arquivo…" msgstr "Enviar arquivo…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "A Solicitação de envio falhou: %s" msgstr "A Solicitação de envio falhou: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "Enviando o arquivo…" msgstr "Enviando o arquivo…"
@ -6380,7 +6380,7 @@ msgstr "Escreva as requisições DNS para o servidor de registro (syslog)"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "Escrever registro do sistema (log) no arquivo" msgstr "Escrever registro do sistema (log) no arquivo"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "Sim" msgstr "Sim"
@ -6607,7 +6607,7 @@ msgstr "sem link"
msgid "non-empty value" msgid "non-empty value"
msgstr "valor não vazio" msgstr "valor não vazio"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "nenhum" msgstr "nenhum"
@ -6715,7 +6715,7 @@ msgstr "desconhecido"
msgid "unlimited" msgid "unlimited"
msgstr "ilimitado" msgstr "ilimitado"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -23,7 +23,7 @@ msgstr "%.1f dB"
msgid "%d Bit" msgid "%d Bit"
msgstr "%d Bit" msgstr "%d Bit"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "%d campo(s) inválido(s)" msgstr "%d campo(s) inválido(s)"
@ -59,11 +59,11 @@ msgid "-- Additional Field --"
msgstr "-- Campo Adicional --" msgstr "-- Campo Adicional --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -71,7 +71,7 @@ msgstr "-- Por favor escolha --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- personalizado --" msgstr "-- personalizado --"
@ -251,7 +251,7 @@ msgstr ""
"<br/>Nota: você precisa reiniciar manualmente o serviço da cron se o " "<br/>Nota: você precisa reiniciar manualmente o serviço da cron se o "
"ficheiro crontab estava vazio antes da edição." "ficheiro crontab estava vazio antes da edição."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "Já existe um diretório com o mesmo nome." msgstr "Já existe um diretório com o mesmo nome."
@ -377,11 +377,11 @@ msgstr "Concessões DHCPv6 Ativas"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -672,16 +672,16 @@ msgstr "Qualquer zona"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "Aplicar backup?" msgstr "Aplicar backup?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "Pedido para aplicar falhou com o estado <code>%h</code>" msgstr "Pedido para aplicar falhou com o estado <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "Aplicar desmarcado" msgstr "Aplicar desmarcado"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "Aplicando alterações de configuração... %ds" msgstr "Aplicando alterações de configuração... %ds"
@ -914,8 +914,8 @@ msgstr "Número de unidade da bridge"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "Ativar com o arranque" msgstr "Ativar com o arranque"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "Navegar…" msgstr "Navegar…"
@ -947,8 +947,8 @@ msgstr "Em cache"
msgid "Call failed" msgid "Call failed"
msgstr "A chamada falhou" msgstr "A chamada falhou"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -986,9 +986,8 @@ msgid ""
"Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See " "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
"`logread -f` during handshake for actual values" "`logread -f` during handshake for actual values"
msgstr "" msgstr ""
"Subcadeia de restrição de certificado - por exemplo, " "Subcadeia de restrição de certificado - por exemplo, /CN=wifi.minhaempresa."
"/CN=wifi.minhaempresa.pt<br />Veja `logread -f` durante o handshake para " "pt<br />Veja `logread -f` durante o handshake para valores reais"
"valores reais"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1464 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1464
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1560 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1560
@ -996,8 +995,8 @@ msgid ""
"Certificate constraint(s) against DNS SAN values (if available)<br />or " "Certificate constraint(s) against DNS SAN values (if available)<br />or "
"Subject CN (exact match)" "Subject CN (exact match)"
msgstr "" msgstr ""
"Restrição/ões do certificado contra os valores SAN de DNS (se disponível)<br " "Restrição/ões do certificado contra os valores SAN de DNS (se "
"/>ou Assunto CN (correspondência exacta)" "disponível)<br />ou Assunto CN (correspondência exacta)"
#: 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:1470
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1566 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1566
@ -1005,8 +1004,8 @@ msgid ""
"Certificate constraint(s) against DNS SAN values (if available)<br />or " "Certificate constraint(s) against DNS SAN values (if available)<br />or "
"Subject CN (suffix match)" "Subject CN (suffix match)"
msgstr "" msgstr ""
"Restrição/ões do certificado contra os valores SAN de DNS (se disponível)<br " "Restrição/ões do certificado contra os valores SAN de DNS (se "
"/>ou Assunto CN (correspondência de sufixos)" "disponível)<br />ou Assunto CN (correspondência de sufixos)"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1458 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1458
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1554 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1554
@ -1014,8 +1013,9 @@ msgid ""
"Certificate constraint(s) via Subject Alternate Name values<br />(supported " "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
"attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com" "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
msgstr "" msgstr ""
"Restrição/ões de certificado por valores de Subject Alternate Name<br />(" "Restrição/ões de certificado por valores de Subject Alternate Name<br /"
"atributos suportados: EMAIL, DNS, URI) - por exemplo DNS:wifi.minhaempresa.pt" ">(atributos suportados: EMAIL, DNS, URI) - por exemplo DNS:wifi.minhaempresa."
"pt"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:51 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:51
#: 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:54
@ -1023,11 +1023,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Cadeia" msgstr "Cadeia"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Alterações" msgstr "Alterações"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "As alterações foram revertidas." msgstr "As alterações foram revertidas."
@ -1182,16 +1182,16 @@ msgstr ""
"a robustez da negociação de chaves, especialmente em ambientes com muito " "a robustez da negociação de chaves, especialmente em ambientes com muito "
"tráfego." "tráfego."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Configuração" msgstr "Configuração"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "A configuração foi aplicada." msgstr "A configuração foi aplicada."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "A configuração foi revertida!" msgstr "A configuração foi revertida!"
@ -1238,7 +1238,7 @@ msgstr "Os conteúdos foram gravados."
msgid "Continue" msgid "Continue"
msgstr "Continuar" msgstr "Continuar"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1457,11 +1457,11 @@ msgstr ""
"\"<code>6,192.168.2.1,192.168.2.2</code>\" informa os clientes de diferentes " "\"<code>6,192.168.2.1,192.168.2.2</code>\" informa os clientes de diferentes "
"servidores DNS." "servidores DNS."
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1473,7 +1473,7 @@ msgstr "Apagar"
msgid "Delete key" msgid "Delete key"
msgstr "Apagar chave" msgstr "Apagar chave"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "Pedido de apagar falhou: %s" msgstr "Pedido de apagar falhou: %s"
@ -1490,7 +1490,7 @@ msgstr "Intervalo da Mensagem Indicativa de Envio de Tráfego (DTIM)"
msgid "Description" msgid "Description"
msgstr "Descrição" msgstr "Descrição"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "Desmarcar" msgstr "Desmarcar"
@ -1535,7 +1535,7 @@ msgstr "O aparelho não está ativo"
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "O aparelho está a reiniciar…" msgstr "O aparelho está a reiniciar…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "Aparelho não alcançável!" msgstr "Aparelho não alcançável!"
@ -1552,7 +1552,7 @@ msgstr "Diagnósticos"
msgid "Dial number" msgid "Dial number"
msgstr "Número de discagem" msgstr "Número de discagem"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Diretório" msgstr "Diretório"
@ -1619,10 +1619,10 @@ msgstr "Desconectar"
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "A tentativa de desconexão falhou" msgstr "A tentativa de desconexão falhou"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1662,7 +1662,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "Não encaminhar lookups reversos para as redes locais" msgstr "Não encaminhar lookups reversos para as redes locais"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "Quer mesmo apagar \"%s\"?" msgstr "Quer mesmo apagar \"%s\"?"
@ -1674,7 +1674,7 @@ msgstr "Deseja mesmo apagar a seguinte chave SSH?"
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "Quer mesmo apagar todas as configurações?" msgstr "Quer mesmo apagar todas as configurações?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Deseja mesmo apagar recursivamente o diretório \"%s\"?" msgstr "Deseja mesmo apagar recursivamente o diretório \"%s\"?"
@ -1716,7 +1716,7 @@ msgstr ""
"Deslocamento <abbr title=\"Signal to Noise Ratio\">SNR</abbr> do sinal " "Deslocamento <abbr title=\"Signal to Noise Ratio\">SNR</abbr> do sinal "
"recebido" "recebido"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "Arraste para reordenar" msgstr "Arraste para reordenar"
@ -1762,9 +1762,9 @@ msgstr "Comprimento dos bits EA"
msgid "EAP-Method" msgid "EAP-Method"
msgstr "Método EAP" msgstr "Método EAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -2045,7 +2045,7 @@ msgstr "Protocolo FT"
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "Falha ao alterar a palavra-passe do sistema." msgstr "Falha ao alterar a palavra-passe do sistema."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
"Não foi possível confirmar a aplicação das configurações dentro de %ds, " "Não foi possível confirmar a aplicação das configurações dentro de %ds, "
@ -2055,15 +2055,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Falha ao executar \"/etc/init.d/%s %s\" ação: %s" msgstr "Falha ao executar \"/etc/init.d/%s %s\" ação: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "Ficheiro" msgstr "Ficheiro"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "Ficheiro não acessível" msgstr "Ficheiro não acessível"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "Nome do ficheiro" msgstr "Nome do ficheiro"
@ -2308,8 +2308,8 @@ msgstr "Opções de rede globais"
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "Ir para a configuração da palavra-passe…" msgstr "Ir para a configuração da palavra-passe…"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -3023,7 +3023,7 @@ msgstr "Deixar em branco para auto-detecção"
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "Deixar em branco para usar o endereço WAN actual" msgstr "Deixar em branco para usar o endereço WAN actual"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "Legenda:" msgstr "Legenda:"
@ -3137,7 +3137,7 @@ msgstr "Carregar"
msgid "Load Average" msgid "Load Average"
msgstr "Carga Média" msgstr "Carga Média"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "Carregando o conteúdo do diretório…" msgstr "Carregando o conteúdo do diretório…"
@ -3475,7 +3475,7 @@ msgstr "Monitor"
msgid "More Characters" msgid "More Characters"
msgstr "Mais Caracteres" msgstr "Mais Caracteres"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "Mais…" msgstr "Mais…"
@ -3566,8 +3566,8 @@ msgstr "Domínio NT"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Candidatos a servidor NTP" msgstr "Candidatos a servidor NTP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3615,7 +3615,7 @@ msgstr "Novo nome de interface…"
msgid "Next »" msgid "Next »"
msgstr "Seguinte »" msgstr "Seguinte »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "Não" msgstr "Não"
@ -3636,7 +3636,7 @@ msgstr "Sem NAT-T"
msgid "No data received" msgid "No data received"
msgstr "Nenhuns dados recebidos" msgstr "Nenhuns dados recebidos"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "Não há entradas neste diretório" msgstr "Não há entradas neste diretório"
@ -3842,11 +3842,11 @@ msgstr "OpenConnect (CISCO AnyConnect)"
msgid "Operating frequency" msgid "Operating frequency"
msgstr "Frequência de Operação" msgstr "Frequência de Operação"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Opção alterada" msgstr "Opção alterada"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Opção removida" msgstr "Opção removida"
@ -4003,7 +4003,7 @@ msgstr "Sobrescrever a tabela usada para as rotas internas"
msgid "Overview" msgid "Overview"
msgstr "Visão Geral" msgstr "Visão Geral"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "Sustituir o ficheiro existente \"%s\" ?" msgstr "Sustituir o ficheiro existente \"%s\" ?"
@ -4246,7 +4246,7 @@ msgstr "Pcts."
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Insira o seu username e password." msgstr "Insira o seu username e password."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "Por favor selecione o ficheiro para upload." msgstr "Por favor selecione o ficheiro para upload."
@ -4700,20 +4700,20 @@ msgstr "Restaurar backup"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "Revelar/esconder password" msgstr "Revelar/esconder password"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Reverter" msgstr "Reverter"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "Reverter as mudanças" msgstr "Reverter as mudanças"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
"O pedido para reverter as configurações falhou com o estado <code>%h</code>" "O pedido para reverter as configurações falhou com o estado <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "Revertendo configurações…" msgstr "Revertendo configurações…"
@ -4818,7 +4818,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "SWAP" msgstr "SWAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4829,7 +4829,7 @@ msgid "Save"
msgstr "Guardar" msgstr "Guardar"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Gravar & Aplicar" msgstr "Gravar & Aplicar"
@ -4851,11 +4851,11 @@ msgstr "Procurar"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Tarefas Agendadas" msgstr "Tarefas Agendadas"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Secção adicionada" msgstr "Secção adicionada"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Secção removida" msgstr "Secção removida"
@ -4873,9 +4873,9 @@ msgstr ""
"do formato da imagem falhar. Use somente se você estiver confiante que a " "do formato da imagem falhar. Use somente se você estiver confiante que a "
"firmware está correta e é destinada para seu aparelho!" "firmware está correta e é destinada para seu aparelho!"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "Selecione o ficheiro.…" msgstr "Selecione o ficheiro.…"
@ -4998,7 +4998,7 @@ msgstr "Atenuação do Sinal (<abbr title=\"Signal Attenuation\">SATN</abbr>)"
msgid "Signal:" msgid "Signal:"
msgstr "Sinal:" msgstr "Sinal:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Tamanho" msgstr "Tamanho"
@ -5125,7 +5125,7 @@ msgstr "Iniciar"
msgid "Start priority" msgid "Start priority"
msgstr "Prioridade de inicialização" msgstr "Prioridade de inicialização"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "Iniciando a aplicação da configuração…" msgstr "Iniciando a aplicação da configuração…"
@ -5252,7 +5252,7 @@ msgstr "Trocar o protocolo"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "Mudar para a notação CIDR de listas" msgstr "Mudar para a notação CIDR de listas"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "Ligação simbólica" msgstr "Ligação simbólica"
@ -5364,7 +5364,7 @@ msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
"O ficheiros de configuração não pode ser carregado devido ao seguinte erro:" "O ficheiros de configuração não pode ser carregado devido ao seguinte erro:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5561,7 +5561,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "Não há arrendamentos ativos" msgstr "Não há arrendamentos ativos"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "Não há alterações a serem aplicadas" msgstr "Não há alterações a serem aplicadas"
@ -5678,8 +5678,8 @@ msgid ""
msgstr "" msgstr ""
"Esta opção não pode ser usada porque o pacote ca-bundle não está instalado." "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:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5903,7 +5903,7 @@ msgstr "Desmontar"
msgid "Unnamed key" msgid "Unnamed key"
msgstr "Chave sem nome" msgstr "Chave sem nome"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Alterações não Guardadas" msgstr "Alterações não Guardadas"
@ -5931,7 +5931,7 @@ msgstr "Tipo de protocolo não suportado."
msgid "Up" msgid "Up"
msgstr "Acima" msgstr "Acima"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "Enviar" msgstr "Enviar"
@ -5948,21 +5948,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "Enviar arquivo..." msgstr "Enviar arquivo..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "Enviar ficheiro" msgstr "Enviar ficheiro"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "Enviar ficheiro…" msgstr "Enviar ficheiro…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "Pedido de envio falhou: %s" msgstr "Pedido de envio falhou: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "Enviando o ficheiro…" msgstr "Enviando o ficheiro…"
@ -6196,8 +6196,8 @@ msgid ""
"Validate server certificate using built-in system CA bundle,<br />requires " "Validate server certificate using built-in system CA bundle,<br />requires "
"the \"ca-bundle\" package" "the \"ca-bundle\" package"
msgstr "" msgstr ""
"Validar o certificado do servidor usando o pacote AC do sistema incorporado,<" "Validar o certificado do servidor usando o pacote AC do sistema incorporado,"
"br /> requer o pacote \"ca-bundle\"" "<br /> requer o pacote \"ca-bundle\""
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
msgid "Vendor" msgid "Vendor"
@ -6344,7 +6344,7 @@ msgstr "Escrever os pedidos de DNS para o syslog"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "Escrever registro do sistema (log) no ficheiro" msgstr "Escrever registro do sistema (log) no ficheiro"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "Sim" msgstr "Sim"
@ -6570,7 +6570,7 @@ msgstr "sem link"
msgid "non-empty value" msgid "non-empty value"
msgstr "valor não vazio" msgstr "valor não vazio"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "nenhum" msgstr "nenhum"
@ -6678,7 +6678,7 @@ msgstr "desconhecido"
msgid "unlimited" msgid "unlimited"
msgstr "ilimitado" msgstr "ilimitado"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -22,7 +22,7 @@ msgstr ""
msgid "%d Bit" msgid "%d Bit"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgid "-- Additional Field --"
msgstr "-- Camp suplimentar --" msgstr "-- Camp suplimentar --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -70,7 +70,7 @@ msgstr "-- Te rog sa alegi --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- particularizat --" msgstr "-- particularizat --"
@ -237,7 +237,7 @@ msgid ""
"was empty before editing." "was empty before editing."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "Un director cu acelaşi nume există deja." msgstr "Un director cu acelaşi nume există deja."
@ -362,11 +362,11 @@ msgstr "Lease-uri DHCPv6 active"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -646,16 +646,16 @@ msgstr "Orice Zona"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "Aplică backup-ul?" msgstr "Aplică backup-ul?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "Se aplică schimbările configurării… %ds" msgstr "Se aplică schimbările configurării… %ds"
@ -875,8 +875,8 @@ msgstr "Numarul unitatii in punte"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "Activeaza la pornire" msgstr "Activeaza la pornire"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
@ -907,8 +907,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -974,11 +974,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Lant" msgstr "Lant"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Modificari" msgstr "Modificari"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "" msgstr ""
@ -1125,16 +1125,16 @@ msgstr ""
"autentificare mai puțin robuste, în special în mediile cu încărcare a " "autentificare mai puțin robuste, în special în mediile cu încărcare a "
"traficului mare." "traficului mare."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Configurație" msgstr "Configurație"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "Noua configurație aplicată." msgstr "Noua configurație aplicată."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "Schimbările asupra configurării au fost anulate!" msgstr "Schimbările asupra configurării au fost anulate!"
@ -1181,7 +1181,7 @@ msgstr "Conţinutul a fost salvat."
msgid "Continue" msgid "Continue"
msgstr "Continuă" msgstr "Continuă"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1392,11 +1392,11 @@ msgid ""
"servers to clients." "servers to clients."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1408,7 +1408,7 @@ msgstr "Sterge"
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1425,7 +1425,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "Descriere" msgstr "Descriere"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1470,7 +1470,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "Dispozitivul repornește…" msgstr "Dispozitivul repornește…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "" msgstr ""
@ -1487,7 +1487,7 @@ msgstr "Diagnosticuri"
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Director" msgstr "Director"
@ -1554,10 +1554,10 @@ msgstr "Deconectează"
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "Încercarea deconectării a eșuat" msgstr "Încercarea deconectării a eșuat"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1591,7 +1591,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "Sigur doriți să ștergeți \"%s\" ?" msgstr "Sigur doriți să ștergeți \"%s\" ?"
@ -1603,7 +1603,7 @@ msgstr "Sigur doriți să ștergeți această cheie SSH?"
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "Sigur doriți să ștergeți toate setările?" msgstr "Sigur doriți să ștergeți toate setările?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1641,7 +1641,7 @@ msgstr "Descarcă mtdblock-ul"
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1682,9 +1682,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1956,7 +1956,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -1964,15 +1964,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "Fișier" msgstr "Fișier"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "Fișierul nu este accesibil" msgstr "Fișierul nu este accesibil"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "" msgstr ""
@ -2211,8 +2211,8 @@ msgstr ""
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2910,7 +2910,7 @@ msgstr ""
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "Legenda:" msgstr "Legenda:"
@ -3007,7 +3007,7 @@ msgstr "Incărcare"
msgid "Load Average" msgid "Load Average"
msgstr "Incărcarea medie" msgstr "Incărcarea medie"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3331,7 +3331,7 @@ msgstr ""
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "Mai mult…" msgstr "Mai mult…"
@ -3420,8 +3420,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3469,7 +3469,7 @@ msgstr "Nume nou interfață…"
msgid "Next »" msgid "Next »"
msgstr "Mai departe »" msgstr "Mai departe »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "Nu" msgstr "Nu"
@ -3490,7 +3490,7 @@ msgstr ""
msgid "No data received" msgid "No data received"
msgstr "Nu sunt date recepționate" msgstr "Nu sunt date recepționate"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3691,11 +3691,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "Frecvență de operare" msgstr "Frecvență de operare"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Optiunea schimbata" msgstr "Optiunea schimbata"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Optiunea eliminata" msgstr "Optiunea eliminata"
@ -3834,7 +3834,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Prezentare generală" msgstr "Prezentare generală"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4077,7 +4077,7 @@ msgstr "Packete."
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Introdu utilizatorul si parola." msgstr "Introdu utilizatorul si parola."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4512,19 +4512,19 @@ msgstr "Reface backup-ul"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "Arata / ascunde parola" msgstr "Arata / ascunde parola"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "Restabileste schimbările anterioare" msgstr "Restabileste schimbările anterioare"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "" msgstr ""
@ -4626,7 +4626,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4637,7 +4637,7 @@ msgid "Save"
msgstr "Salvează" msgstr "Salvează"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Salveaza si aplica" msgstr "Salveaza si aplica"
@ -4659,11 +4659,11 @@ msgstr "Scanează"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Operatiuni programate" msgstr "Operatiuni programate"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Sectiune adaugata" msgstr "Sectiune adaugata"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Sectiune eliminata" msgstr "Sectiune eliminata"
@ -4678,9 +4678,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "Selectează fișier…" msgstr "Selectează fișier…"
@ -4794,7 +4794,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "Semnal:" msgstr "Semnal:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Marime" msgstr "Marime"
@ -4907,7 +4907,7 @@ msgstr "Pornește"
msgid "Start priority" msgid "Start priority"
msgstr "Prioritatea pornirii" msgstr "Prioritatea pornirii"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -5028,7 +5028,7 @@ msgstr "Schimbă protocolul"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5133,7 +5133,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5293,7 +5293,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5389,8 +5389,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5609,7 +5609,7 @@ msgstr ""
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Modificari nesalvate" msgstr "Modificari nesalvate"
@ -5635,7 +5635,7 @@ msgstr "Tipul de protocol neacceptat."
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5650,21 +5650,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -6027,7 +6027,7 @@ msgstr "Scrie cererile DNS primite in syslog"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "Da" msgstr "Da"
@ -6241,7 +6241,7 @@ msgstr ""
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "" msgstr ""
@ -6349,7 +6349,7 @@ msgstr "necunoscut"
msgid "unlimited" msgid "unlimited"
msgstr "nelimitat" msgstr "nelimitat"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -25,7 +25,7 @@ msgstr "%.1f дБ"
msgid "%d Bit" msgid "%d Bit"
msgstr "%d бит" msgstr "%d бит"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "%d неверных полей" msgstr "%d неверных полей"
@ -61,11 +61,11 @@ msgid "-- Additional Field --"
msgstr "-- Дополнительно --" msgstr "-- Дополнительно --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -73,7 +73,7 @@ msgstr "-- Сделайте выбор --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- пользовательский --" msgstr "-- пользовательский --"
@ -247,7 +247,7 @@ msgstr ""
"<br />Внимание: вы должны вручную перезапустить службу cron, если этот файл " "<br />Внимание: вы должны вручную перезапустить службу cron, если этот файл "
"был пустым перед внесением ваших изменений." "был пустым перед внесением ваших изменений."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "Директория с таким же именем уже существует." msgstr "Директория с таким же именем уже существует."
@ -373,11 +373,11 @@ msgstr "Активные DHCPv6 аренды"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -670,16 +670,16 @@ msgstr "Любая зона"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "Восстановить резервную копию?" msgstr "Восстановить резервную копию?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "Ошибка <code>%h</code> запроса на применение" msgstr "Ошибка <code>%h</code> запроса на применение"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "Применить без проверки" msgstr "Применить без проверки"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "Ожидание применения конфигурации... %d сек" msgstr "Ожидание применения конфигурации... %d сек"
@ -915,8 +915,8 @@ msgstr "Номер моста"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "Запустить при загрузке" msgstr "Запустить при загрузке"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "Обзор…" msgstr "Обзор…"
@ -948,8 +948,8 @@ msgstr "Кешировано"
msgid "Call failed" msgid "Call failed"
msgstr "Ошибка вызова" msgstr "Ошибка вызова"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -987,8 +987,8 @@ msgid ""
"Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See " "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
"`logread -f` during handshake for actual values" "`logread -f` during handshake for actual values"
msgstr "" msgstr ""
"Подстрока ограничения сертификата (например, /CN=wifi.mycompany.com).<br />" "Подстрока ограничения сертификата (например, /CN=wifi.mycompany.com).<br /"
"См. вывод `logread -f` при рукопожатии (handshake) для получения актуальных " ">См. вывод `logread -f` при рукопожатии (handshake) для получения актуальных "
"значений" "значений"
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1464 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1464
@ -1015,8 +1015,8 @@ msgid ""
"Certificate constraint(s) via Subject Alternate Name values<br />(supported " "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
"attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com" "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
msgstr "" msgstr ""
"Ограничение(я) сертификата по значениям SAN (Subject Alternate Names),<br />" "Ограничение(я) сертификата по значениям SAN (Subject Alternate Names),<br /"
"например, DNS:wifi.mycompany.com (поддерживаемые атрибуты EMAIL, DNS, URI)" ">например, DNS:wifi.mycompany.com (поддерживаемые атрибуты EMAIL, DNS, URI)"
#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:51 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:51
#: 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:54
@ -1024,11 +1024,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Цепочка" msgstr "Цепочка"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Изменения" msgstr "Изменения"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "Изменения были возвращены назад." msgstr "Изменения были возвращены назад."
@ -1185,16 +1185,16 @@ msgstr ""
"Может вызвать проблемы совместимости и снижение надежности согласования " "Может вызвать проблемы совместимости и снижение надежности согласования "
"нового ключа, при наличии большого трафика." "нового ключа, при наличии большого трафика."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Конфигурация" msgstr "Конфигурация"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "Конфигурация применена." msgstr "Конфигурация применена."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "Конфигурация возвращена назад!" msgstr "Конфигурация возвращена назад!"
@ -1241,7 +1241,7 @@ msgstr "Содержимое сохранено."
msgid "Continue" msgid "Continue"
msgstr "Продолжить" msgstr "Продолжить"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1459,11 +1459,11 @@ msgstr ""
"\"<code>6,192.168.2.1,192.168.2.2</code>\", чтобы известить клиентов о DNS-" "\"<code>6,192.168.2.1,192.168.2.2</code>\", чтобы известить клиентов о DNS-"
"серверах." "серверах."
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1475,7 +1475,7 @@ msgstr "Удалить"
msgid "Delete key" msgid "Delete key"
msgstr "Удалить ключ" msgstr "Удалить ключ"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "Ошибка запроса на удаление: %s" msgstr "Ошибка запроса на удаление: %s"
@ -1492,7 +1492,7 @@ msgstr "Интервал сообщений, регламентирующий д
msgid "Description" msgid "Description"
msgstr "Описание" msgstr "Описание"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "Отменить выбор" msgstr "Отменить выбор"
@ -1537,7 +1537,7 @@ msgstr "Устройство не активно"
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "Устройство перезапускается…" msgstr "Устройство перезапускается…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "Устройство недоступно!" msgstr "Устройство недоступно!"
@ -1554,7 +1554,7 @@ msgstr "Диагностика"
msgid "Dial number" msgid "Dial number"
msgstr "Dial номер" msgstr "Dial номер"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Папка" msgstr "Папка"
@ -1621,10 +1621,10 @@ msgstr "Отключить"
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "Ошибка попытки отключения" msgstr "Ошибка попытки отключения"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1664,7 +1664,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "Не перенаправлять обратные DNS-запросы для локальных сетей" msgstr "Не перенаправлять обратные DNS-запросы для локальных сетей"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "Вы действительно хотите удалить «%s»?" msgstr "Вы действительно хотите удалить «%s»?"
@ -1676,7 +1676,7 @@ msgstr "Вы действительно хотите удалить следую
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "Вы действительно хотите стереть все настройки?" msgstr "Вы действительно хотите стереть все настройки?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Вы действительно хотите рекурсивно удалить директорию «%s»?" msgstr "Вы действительно хотите рекурсивно удалить директорию «%s»?"
@ -1716,7 +1716,7 @@ msgstr "Скачать MTD раздел"
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "SNR offset внутренней сети" msgstr "SNR offset внутренней сети"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "Перетащите, чтобы изменить порядок" msgstr "Перетащите, чтобы изменить порядок"
@ -1762,9 +1762,9 @@ msgstr "EA-bits длина"
msgid "EAP-Method" msgid "EAP-Method"
msgstr "Метод EAP" msgstr "Метод EAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -2044,7 +2044,7 @@ msgstr "FT протокол"
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "Не удалось изменить системный пароль." msgstr "Не удалось изменить системный пароль."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "Не удалось подтвердить применение в течении %d сек., ожидание отката…" msgstr "Не удалось подтвердить применение в течении %d сек., ожидание отката…"
@ -2052,15 +2052,15 @@ msgstr "Не удалось подтвердить применение в те
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Не удалось выполнить действие «/etc/init.d/%s %s»: %s" msgstr "Не удалось выполнить действие «/etc/init.d/%s %s»: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "Файл" msgstr "Файл"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "Файл не доступен" msgstr "Файл не доступен"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "Имя файла" msgstr "Имя файла"
@ -2303,8 +2303,8 @@ msgstr "Основные настройки сети"
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "Перейти к настройке пароля..." msgstr "Перейти к настройке пароля..."
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -3016,7 +3016,7 @@ msgstr "Оставьте поле пустым для автоопределен
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "Оставьте пустым для использования текущего адреса WAN" msgstr "Оставьте пустым для использования текущего адреса WAN"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "События:" msgstr "События:"
@ -3127,7 +3127,7 @@ msgstr "Загрузка"
msgid "Load Average" msgid "Load Average"
msgstr "Средняя загрузка" msgstr "Средняя загрузка"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "Загрузка содержимого директории…" msgstr "Загрузка содержимого директории…"
@ -3460,7 +3460,7 @@ msgstr "Монитор"
msgid "More Characters" msgid "More Characters"
msgstr "Слишком мало символов" msgstr "Слишком мало символов"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "Больше…" msgstr "Больше…"
@ -3551,8 +3551,8 @@ msgstr "NT домен"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Список NTP-серверов" msgstr "Список NTP-серверов"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3600,7 +3600,7 @@ msgstr "Новое имя интерфейса…"
msgid "Next »" msgid "Next »"
msgstr "Следующий »" msgstr "Следующий »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "Нет" msgstr "Нет"
@ -3621,7 +3621,7 @@ msgstr "Без NAT-T"
msgid "No data received" msgid "No data received"
msgstr "Данные не получены" msgstr "Данные не получены"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "Нет элементов в этом каталоге" msgstr "Нет элементов в этом каталоге"
@ -3824,11 +3824,11 @@ msgstr "OpenConnect (CISCO AnyConnect)"
msgid "Operating frequency" msgid "Operating frequency"
msgstr "Настройка частоты" msgstr "Настройка частоты"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Опция изменена" msgstr "Опция изменена"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Опция удалена" msgstr "Опция удалена"
@ -3983,7 +3983,7 @@ msgstr "Назначить таблицу внутренних маршруто
msgid "Overview" msgid "Overview"
msgstr "Обзор" msgstr "Обзор"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "Перезаписать существующий файл «%s»?" msgstr "Перезаписать существующий файл «%s»?"
@ -4226,7 +4226,7 @@ msgstr "пакетов"
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Введите логин и пароль." msgstr "Введите логин и пароль."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "Пожалуйста, выберите файл для загрузки." msgstr "Пожалуйста, выберите файл для загрузки."
@ -4681,19 +4681,19 @@ msgstr "Восстановить резервную копию"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "Показать/скрыть пароль" msgstr "Показать/скрыть пароль"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Вернуть" msgstr "Вернуть"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "Вернуть изменения" msgstr "Вернуть изменения"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "Ошибка <code>%h</code> отмены конфигурации" msgstr "Ошибка <code>%h</code> отмены конфигурации"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "Отмена конфигурации…" msgstr "Отмена конфигурации…"
@ -4797,7 +4797,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "Разделы подкачки (swap)" msgstr "Разделы подкачки (swap)"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4808,7 +4808,7 @@ msgid "Save"
msgstr "Сохранить" msgstr "Сохранить"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Сохранить и применить" msgstr "Сохранить и применить"
@ -4830,11 +4830,11 @@ msgstr "Поиск"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Запланированные задания" msgstr "Запланированные задания"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Строки добавлены" msgstr "Строки добавлены"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Строки удалены" msgstr "Строки удалены"
@ -4852,9 +4852,9 @@ msgstr ""
"формата завершается с ошибкой. Используйте эту опцию только если уверены, " "формата завершается с ошибкой. Используйте эту опцию только если уверены, "
"что файл образа корректный и предназначен именно для данного устройства!" "что файл образа корректный и предназначен именно для данного устройства!"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "Выбрать файл…" msgstr "Выбрать файл…"
@ -4971,7 +4971,7 @@ msgstr "Затухание сигнала (SATN)"
msgid "Signal:" msgid "Signal:"
msgstr "Сигнал:" msgstr "Сигнал:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Размер" msgstr "Размер"
@ -5098,7 +5098,7 @@ msgstr "Запустить"
msgid "Start priority" msgid "Start priority"
msgstr "Приоритет" msgstr "Приоритет"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "Применение конфигурации…" msgstr "Применение конфигурации…"
@ -5224,7 +5224,7 @@ msgstr "Изменить протокол"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "Переключить в формат CIDR" msgstr "Переключить в формат CIDR"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "Символическая ссылка" msgstr "Символическая ссылка"
@ -5334,7 +5334,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "Не удалось загрузить config файл из-за следующей ошибки:" msgstr "Не удалось загрузить config файл из-за следующей ошибки:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5527,7 +5527,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "Нет активных арендованных адресов" msgstr "Нет активных арендованных адресов"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "Нет изменений для применения" msgstr "Нет изменений для применения"
@ -5642,8 +5642,8 @@ msgid ""
msgstr "" msgstr ""
"Эта опция не может быть использована, так как пакет ca-bundle не установлен." "Эта опция не может быть использована, так как пакет ca-bundle не установлен."
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5866,7 +5866,7 @@ msgstr "Отмонтировать"
msgid "Unnamed key" msgid "Unnamed key"
msgstr "Ключ без имени" msgstr "Ключ без имени"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Не принятые изменения" msgstr "Не принятые изменения"
@ -5892,7 +5892,7 @@ msgstr "Не поддерживаемый тип протокола."
msgid "Up" msgid "Up"
msgstr "Вверх" msgstr "Вверх"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "Загрузить" msgstr "Загрузить"
@ -5908,21 +5908,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "Загрузка архива..." msgstr "Загрузка архива..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "Загрузка файла" msgstr "Загрузка файла"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "Загрузка файла…" msgstr "Загрузка файла…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "Ошибка запроса на загрузку: %d %s" msgstr "Ошибка запроса на загрузку: %d %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "Загрузка файла…" msgstr "Загрузка файла…"
@ -6305,7 +6305,7 @@ msgstr "Записывать полученные DNS-запросы в сист
msgid "Write system log to file" msgid "Write system log to file"
msgstr "Записывать системные события в файл" msgstr "Записывать системные события в файл"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "Да" msgstr "Да"
@ -6529,7 +6529,7 @@ msgstr "нет соединения"
msgid "non-empty value" msgid "non-empty value"
msgstr "не пустое значение" msgstr "не пустое значение"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "ничего" msgstr "ничего"
@ -6637,7 +6637,7 @@ msgstr "неизвестный"
msgid "unlimited" msgid "unlimited"
msgstr "неограниченный" msgstr "неограниченный"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -21,7 +21,7 @@ msgstr "%.1f dB"
msgid "%d Bit" msgid "%d Bit"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "%d neplatných políčok" msgstr "%d neplatných políčok"
@ -57,11 +57,11 @@ msgid "-- Additional Field --"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -69,7 +69,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "" msgstr ""
@ -231,7 +231,7 @@ msgid ""
"was empty before editing." "was empty before editing."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "" msgstr ""
@ -352,11 +352,11 @@ msgstr ""
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -634,16 +634,16 @@ msgstr ""
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -863,8 +863,8 @@ msgstr ""
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
@ -895,8 +895,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -962,11 +962,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "" msgstr ""
@ -1104,16 +1104,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "" msgstr ""
@ -1160,7 +1160,7 @@ msgstr ""
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1368,11 +1368,11 @@ msgid ""
"servers to clients." "servers to clients."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1384,7 +1384,7 @@ msgstr ""
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1401,7 +1401,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "Popis" msgstr "Popis"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1446,7 +1446,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "" msgstr ""
@ -1463,7 +1463,7 @@ msgstr ""
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "" msgstr ""
@ -1528,10 +1528,10 @@ msgstr ""
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1565,7 +1565,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "" msgstr ""
@ -1577,7 +1577,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1615,7 +1615,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1656,9 +1656,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1930,7 +1930,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -1938,15 +1938,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "" msgstr ""
@ -2184,8 +2184,8 @@ msgstr ""
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2878,7 +2878,7 @@ msgstr ""
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "" msgstr ""
@ -2975,7 +2975,7 @@ msgstr ""
msgid "Load Average" msgid "Load Average"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3299,7 +3299,7 @@ msgstr ""
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "" msgstr ""
@ -3388,8 +3388,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3437,7 +3437,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -3458,7 +3458,7 @@ msgstr ""
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3659,11 +3659,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "" msgstr ""
@ -3802,7 +3802,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4045,7 +4045,7 @@ msgstr ""
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4478,19 +4478,19 @@ msgstr ""
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "" msgstr ""
@ -4592,7 +4592,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4603,7 +4603,7 @@ msgid "Save"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "" msgstr ""
@ -4625,11 +4625,11 @@ msgstr ""
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "" msgstr ""
@ -4644,9 +4644,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4760,7 +4760,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "" msgstr ""
@ -4873,7 +4873,7 @@ msgstr ""
msgid "Start priority" msgid "Start priority"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -4994,7 +4994,7 @@ msgstr ""
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5099,7 +5099,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5259,7 +5259,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5353,8 +5353,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5573,7 +5573,7 @@ msgstr ""
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "" msgstr ""
@ -5599,7 +5599,7 @@ msgstr ""
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5614,21 +5614,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -5989,7 +5989,7 @@ msgstr ""
msgid "Write system log to file" msgid "Write system log to file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@ -6203,7 +6203,7 @@ msgstr ""
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "" msgstr ""
@ -6311,7 +6311,7 @@ msgstr ""
msgid "unlimited" msgid "unlimited"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -21,7 +21,7 @@ msgstr ""
msgid "%d Bit" msgid "%d Bit"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "" msgstr ""
@ -57,11 +57,11 @@ msgid "-- Additional Field --"
msgstr "-- Ytterligare fält --" msgstr "-- Ytterligare fält --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -69,7 +69,7 @@ msgstr "-- Vänligen välj --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- anpassad --" msgstr "-- anpassad --"
@ -236,7 +236,7 @@ msgstr ""
"<br/>Notera att: du måste starta om cron-tjänsten om crontab-filen var tom " "<br/>Notera att: du måste starta om cron-tjänsten om crontab-filen var tom "
"innan den ändrades." "innan den ändrades."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "" msgstr ""
@ -357,11 +357,11 @@ msgstr "Aktiva DHCPv6-kontrakt"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -642,16 +642,16 @@ msgstr "Någon zon"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -871,8 +871,8 @@ msgstr ""
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "Bläddra…" msgstr "Bläddra…"
@ -904,8 +904,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -971,11 +971,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Kedja" msgstr "Kedja"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Ändringar" msgstr "Ändringar"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "Ändringar har återställts." msgstr "Ändringar har återställts."
@ -1115,16 +1115,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Konfiguration" msgstr "Konfiguration"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "" msgstr ""
@ -1171,7 +1171,7 @@ msgstr "Innehåll har sparats."
msgid "Continue" msgid "Continue"
msgstr "Fortsätt" msgstr "Fortsätt"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1379,11 +1379,11 @@ msgid ""
"servers to clients." "servers to clients."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1395,7 +1395,7 @@ msgstr "Radera"
msgid "Delete key" msgid "Delete key"
msgstr "Radera nyckel" msgstr "Radera nyckel"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1412,7 +1412,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "Beskrivning" msgstr "Beskrivning"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1457,7 +1457,7 @@ msgstr "Enheten är ej aktiv"
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "Enheten startas om…" msgstr "Enheten startas om…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "Enheten kan inte nås!" msgstr "Enheten kan inte nås!"
@ -1474,7 +1474,7 @@ msgstr "Diagnostik"
msgid "Dial number" msgid "Dial number"
msgstr "Slå nummer" msgstr "Slå nummer"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Mapp" msgstr "Mapp"
@ -1541,10 +1541,10 @@ msgstr ""
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1580,7 +1580,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "Vill du verkligen radera \"%s\" ?" msgstr "Vill du verkligen radera \"%s\" ?"
@ -1592,7 +1592,7 @@ msgstr "Vill du verkligen ta bort följande SSH-nyckel?"
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "Vill du verkligen radera alla inställningar?" msgstr "Vill du verkligen radera alla inställningar?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1632,7 +1632,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1674,9 +1674,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "EAP-metod" msgstr "EAP-metod"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1948,7 +1948,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "Byte av systemlösenord misslyckades." msgstr "Byte av systemlösenord misslyckades."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -1956,15 +1956,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "Fil" msgstr "Fil"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "Filnamn" msgstr "Filnamn"
@ -2202,8 +2202,8 @@ msgstr "Globala nätverksalternativ"
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "Gå till lösenordskonfiguration..." msgstr "Gå till lösenordskonfiguration..."
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2896,7 +2896,7 @@ msgstr "Lämna tom för att upptäcka automatiskt"
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "Lämna tom för att använda den nuvarande WAN-adressen" msgstr "Lämna tom för att använda den nuvarande WAN-adressen"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "" msgstr ""
@ -2994,7 +2994,7 @@ msgstr "Belastning"
msgid "Load Average" msgid "Load Average"
msgstr "Snitt-belastning" msgstr "Snitt-belastning"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3318,7 +3318,7 @@ msgstr "Övervaka"
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "" msgstr ""
@ -3407,8 +3407,8 @@ msgstr "NT-domän"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "NTP-serverkandidater" msgstr "NTP-serverkandidater"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3456,7 +3456,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "Nästa »" msgstr "Nästa »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "Nej" msgstr "Nej"
@ -3477,7 +3477,7 @@ msgstr "Ingen NAT-T"
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3678,11 +3678,11 @@ msgstr "OpenConnect (CISCO AnyConnect)"
msgid "Operating frequency" msgid "Operating frequency"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Alternativet ändrades" msgstr "Alternativet ändrades"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Alternativet togs bort" msgstr "Alternativet togs bort"
@ -3821,7 +3821,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Översikt" msgstr "Översikt"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4064,7 +4064,7 @@ msgstr "Pkt."
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Vänligen ange ditt användarnamn och lösenord." msgstr "Vänligen ange ditt användarnamn och lösenord."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4499,19 +4499,19 @@ msgstr "Återställ säkerhetskopian"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "Visa/göm lösenord" msgstr "Visa/göm lösenord"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Återgå" msgstr "Återgå"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "" msgstr ""
@ -4613,7 +4613,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4624,7 +4624,7 @@ msgid "Save"
msgstr "Spara" msgstr "Spara"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Spara och Verkställ" msgstr "Spara och Verkställ"
@ -4646,11 +4646,11 @@ msgstr "Skanna"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Schemalagda uppgifter" msgstr "Schemalagda uppgifter"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Sektionen lades till" msgstr "Sektionen lades till"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Sektionen togs bort" msgstr "Sektionen togs bort"
@ -4665,9 +4665,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4781,7 +4781,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "Signal:" msgstr "Signal:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Storlek" msgstr "Storlek"
@ -4894,7 +4894,7 @@ msgstr "Starta"
msgid "Start priority" msgid "Start priority"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -5015,7 +5015,7 @@ msgstr "Byt protokoll"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5120,7 +5120,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5280,7 +5280,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5376,8 +5376,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5598,7 +5598,7 @@ msgstr "Avmontera"
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Osparade ändringar" msgstr "Osparade ändringar"
@ -5624,7 +5624,7 @@ msgstr "Protokolltypen stöds inte."
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5639,21 +5639,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "Ladda upp arkiv..." msgstr "Ladda upp arkiv..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -6015,7 +6015,7 @@ msgstr "Skriv mottagna DNS-förfrågningar till syslogg"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "Skriv systemlogg till fil" msgstr "Skriv systemlogg till fil"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "Ja" msgstr "Ja"
@ -6231,7 +6231,7 @@ msgstr "ingen länk"
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "ingen" msgstr "ingen"
@ -6339,7 +6339,7 @@ msgstr "okänd"
msgid "unlimited" msgid "unlimited"
msgstr "obegränsat" msgstr "obegränsat"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -10,7 +10,7 @@ msgstr ""
msgid "%d Bit" msgid "%d Bit"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "" msgstr ""
@ -46,11 +46,11 @@ msgid "-- Additional Field --"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -58,7 +58,7 @@ msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "" msgstr ""
@ -220,7 +220,7 @@ msgid ""
"was empty before editing." "was empty before editing."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "" msgstr ""
@ -341,11 +341,11 @@ msgstr ""
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -623,16 +623,16 @@ msgstr ""
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -852,8 +852,8 @@ msgstr ""
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
@ -884,8 +884,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -951,11 +951,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "" msgstr ""
@ -1093,16 +1093,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "" msgstr ""
@ -1149,7 +1149,7 @@ msgstr ""
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1357,11 +1357,11 @@ msgid ""
"servers to clients." "servers to clients."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1373,7 +1373,7 @@ msgstr ""
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1390,7 +1390,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1435,7 +1435,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "" msgstr ""
@ -1452,7 +1452,7 @@ msgstr ""
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "" msgstr ""
@ -1517,10 +1517,10 @@ msgstr ""
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1554,7 +1554,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "" msgstr ""
@ -1566,7 +1566,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1604,7 +1604,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1645,9 +1645,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1919,7 +1919,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -1927,15 +1927,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "" msgstr ""
@ -2173,8 +2173,8 @@ msgstr ""
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2867,7 +2867,7 @@ msgstr ""
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "" msgstr ""
@ -2964,7 +2964,7 @@ msgstr ""
msgid "Load Average" msgid "Load Average"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3288,7 +3288,7 @@ msgstr ""
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "" msgstr ""
@ -3377,8 +3377,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3426,7 +3426,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -3447,7 +3447,7 @@ msgstr ""
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3648,11 +3648,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "" msgstr ""
@ -3791,7 +3791,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4034,7 +4034,7 @@ msgstr ""
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4467,19 +4467,19 @@ msgstr ""
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "" msgstr ""
@ -4581,7 +4581,7 @@ msgstr ""
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4592,7 +4592,7 @@ msgid "Save"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "" msgstr ""
@ -4614,11 +4614,11 @@ msgstr ""
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "" msgstr ""
@ -4633,9 +4633,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4749,7 +4749,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "" msgstr ""
@ -4862,7 +4862,7 @@ msgstr ""
msgid "Start priority" msgid "Start priority"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -4983,7 +4983,7 @@ msgstr ""
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5088,7 +5088,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5248,7 +5248,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5342,8 +5342,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5562,7 +5562,7 @@ msgstr ""
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "" msgstr ""
@ -5588,7 +5588,7 @@ msgstr ""
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5603,21 +5603,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -5978,7 +5978,7 @@ msgstr ""
msgid "Write system log to file" msgid "Write system log to file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@ -6192,7 +6192,7 @@ msgstr ""
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "" msgstr ""
@ -6300,7 +6300,7 @@ msgstr ""
msgid "unlimited" msgid "unlimited"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -24,7 +24,7 @@ msgstr "%.1f dB"
msgid "%d Bit" msgid "%d Bit"
msgstr "%d Bit" msgstr "%d Bit"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "%d geçersiz alan(lar)" msgstr "%d geçersiz alan(lar)"
@ -60,11 +60,11 @@ msgid "-- Additional Field --"
msgstr "-- Ek Alan--" msgstr "-- Ek Alan--"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -72,7 +72,7 @@ msgstr "-- Lütfen seçiniz --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- özel --" msgstr "-- özel --"
@ -241,7 +241,7 @@ msgid ""
"was empty before editing." "was empty before editing."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "" msgstr ""
@ -366,11 +366,11 @@ msgstr "Aktif DHCPv6 Kiraları"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -653,16 +653,16 @@ msgstr ""
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -882,8 +882,8 @@ msgstr ""
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
@ -914,8 +914,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -981,11 +981,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Zincir" msgstr "Zincir"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Değişiklikler" msgstr "Değişiklikler"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "" msgstr ""
@ -1125,16 +1125,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "" msgstr ""
@ -1181,7 +1181,7 @@ msgstr ""
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1389,11 +1389,11 @@ msgid ""
"servers to clients." "servers to clients."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1405,7 +1405,7 @@ msgstr "Sil"
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1422,7 +1422,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "Açıklama" msgstr "Açıklama"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1467,7 +1467,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "Cihaz ulaşılamaz!" msgstr "Cihaz ulaşılamaz!"
@ -1484,7 +1484,7 @@ msgstr "Tanı"
msgid "Dial number" msgid "Dial number"
msgstr "Arama numarası" msgstr "Arama numarası"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Dizin" msgstr "Dizin"
@ -1551,10 +1551,10 @@ msgstr ""
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "Bağlantı kesme girişimi başarısız oldu" msgstr "Bağlantı kesme girişimi başarısız oldu"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1588,7 +1588,7 @@ msgstr ""
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "" msgstr ""
@ -1600,7 +1600,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1638,7 +1638,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1679,9 +1679,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1953,7 +1953,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -1961,15 +1961,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "" msgstr ""
@ -2207,8 +2207,8 @@ msgstr ""
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2901,7 +2901,7 @@ msgstr ""
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "" msgstr ""
@ -2998,7 +2998,7 @@ msgstr ""
msgid "Load Average" msgid "Load Average"
msgstr "Ortalama Yük" msgstr "Ortalama Yük"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3322,7 +3322,7 @@ msgstr ""
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "" msgstr ""
@ -3411,8 +3411,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3460,7 +3460,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -3481,7 +3481,7 @@ msgstr ""
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3682,11 +3682,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "" msgstr ""
@ -3825,7 +3825,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Genel Bakış" msgstr "Genel Bakış"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4068,7 +4068,7 @@ msgstr ""
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4501,19 +4501,19 @@ msgstr "Yedeklemeyi geri yükle"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Dönmek" msgstr "Dönmek"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "Değişiklikleri geri al" msgstr "Değişiklikleri geri al"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "" msgstr ""
@ -4616,7 +4616,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "TAKAS" msgstr "TAKAS"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4627,7 +4627,7 @@ msgid "Save"
msgstr "Kaydet" msgstr "Kaydet"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Kaydet & Uygula" msgstr "Kaydet & Uygula"
@ -4649,11 +4649,11 @@ msgstr "Tara"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Zamanlanmış Görevler" msgstr "Zamanlanmış Görevler"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Bölüm eklendi" msgstr "Bölüm eklendi"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Bölüm kaldırıldı" msgstr "Bölüm kaldırıldı"
@ -4668,9 +4668,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4784,7 +4784,7 @@ msgstr "Sinyal Zayıflama (SATN)"
msgid "Signal:" msgid "Signal:"
msgstr "Sinyal:" msgstr "Sinyal:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Boyut" msgstr "Boyut"
@ -4897,7 +4897,7 @@ msgstr "Başlat"
msgid "Start priority" msgid "Start priority"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "" msgstr ""
@ -5018,7 +5018,7 @@ msgstr ""
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5123,7 +5123,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5283,7 +5283,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5377,8 +5377,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5597,7 +5597,7 @@ msgstr ""
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "" msgstr ""
@ -5623,7 +5623,7 @@ msgstr ""
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5638,21 +5638,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -6013,7 +6013,7 @@ msgstr ""
msgid "Write system log to file" msgid "Write system log to file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@ -6229,7 +6229,7 @@ msgstr "bağlantı yok"
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "hiçbiri" msgstr "hiçbiri"
@ -6337,7 +6337,7 @@ msgstr "bilinmeyen"
msgid "unlimited" msgid "unlimited"
msgstr "sınırsız" msgstr "sınırsız"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -22,7 +22,7 @@ msgstr "%.1f дБ"
msgid "%d Bit" msgid "%d Bit"
msgstr "%d біт" msgstr "%d біт"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "%d неприпустимі поля" msgstr "%d неприпустимі поля"
@ -58,11 +58,11 @@ msgid "-- Additional Field --"
msgstr "-- Додаткові поля --" msgstr "-- Додаткові поля --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -70,7 +70,7 @@ msgstr "-- Оберіть --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- нетипово --" msgstr "-- нетипово --"
@ -256,7 +256,7 @@ msgstr ""
"<br/>Примітка: якщо перед редагуванням, файл crontab був порожній, вам " "<br/>Примітка: якщо перед редагуванням, файл crontab був порожній, вам "
"потрібно вручну перезапустити служби cron." "потрібно вручну перезапустити служби cron."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "Каталог з такою ж назвою вже існує." msgstr "Каталог з такою ж назвою вже існує."
@ -388,11 +388,11 @@ msgstr "Активні оренди DHCPv6"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -684,16 +684,16 @@ msgstr "Будь-яка зона"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "Застосувати резервну копію?" msgstr "Застосувати резервну копію?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "Сталася помилка запиту на застосування зі статусом <code>%h</code>" msgstr "Сталася помилка запиту на застосування зі статусом <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "Застосувати без перевірки" msgstr "Застосувати без перевірки"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "Очікування на застосування конфігурації… %d c" msgstr "Очікування на застосування конфігурації… %d c"
@ -924,8 +924,8 @@ msgstr "Номер моста"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "Піднімати при завантаженні" msgstr "Піднімати при завантаженні"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "Огляд…" msgstr "Огляд…"
@ -957,8 +957,8 @@ msgstr "Кешовано"
msgid "Call failed" msgid "Call failed"
msgstr "Не вдалося здійснити виклик" msgstr "Не вдалося здійснити виклик"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -1024,11 +1024,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "Ланцюжок" msgstr "Ланцюжок"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Зміни" msgstr "Зміни"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "Зміни було скасовано." msgstr "Зміни було скасовано."
@ -1182,16 +1182,16 @@ msgstr ""
"Може викликати проблеми сумісності та зниження стійкості узгодження ключа, " "Може викликати проблеми сумісності та зниження стійкості узгодження ключа, "
"особливо в середовищах з великою завантаженістю трафіку." "особливо в середовищах з великою завантаженістю трафіку."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Конфігурація" msgstr "Конфігурація"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "Зміни конфігурації застосовано." msgstr "Зміни конфігурації застосовано."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "Зміни конфігурації було скасовано!" msgstr "Зміни конфігурації було скасовано!"
@ -1238,7 +1238,7 @@ msgstr "Вміст збережено."
msgid "Continue" msgid "Continue"
msgstr "Продовжити" msgstr "Продовжити"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1460,11 +1460,11 @@ msgstr ""
"\"<code>6,192.168.2.1,192.168.2.2</code>\", щоб оголошувати різні DNS-" "\"<code>6,192.168.2.1,192.168.2.2</code>\", щоб оголошувати різні DNS-"
"сервери для клієнтів." "сервери для клієнтів."
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1476,7 +1476,7 @@ msgstr "Видалити"
msgid "Delete key" msgid "Delete key"
msgstr "Видалити ключ" msgstr "Видалити ключ"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "Помилка запиту на видалення: %s" msgstr "Помилка запиту на видалення: %s"
@ -1493,7 +1493,7 @@ msgstr "Інтервал повідомлень індикації доправ
msgid "Description" msgid "Description"
msgstr "Опис" msgstr "Опис"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "Скасувати вибір" msgstr "Скасувати вибір"
@ -1538,7 +1538,7 @@ msgstr "Пристрій не є активним"
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "Пристрій перезавантажується…" msgstr "Пристрій перезавантажується…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "Пристрій недосяжний!" msgstr "Пристрій недосяжний!"
@ -1555,7 +1555,7 @@ msgstr "Діагностика"
msgid "Dial number" msgid "Dial number"
msgstr "Набір номера" msgstr "Набір номера"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Каталог" msgstr "Каталог"
@ -1622,10 +1622,10 @@ msgstr "Від’єднати"
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "Спроба від'єднання не вдалася" msgstr "Спроба від'єднання не вдалася"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1668,7 +1668,7 @@ msgstr ""
"Не переспрямовувати зворотні <abbr title=\"Domain Name System — система " "Не переспрямовувати зворотні <abbr title=\"Domain Name System — система "
"доменних імен\">DNS</abbr>-запити для локальних мереж" "доменних імен\">DNS</abbr>-запити для локальних мереж"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "Справді видалити \"%s\"?" msgstr "Справді видалити \"%s\"?"
@ -1680,7 +1680,7 @@ msgstr "Справді видалити такий SSH ключ?"
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "Справді стерти всі налаштування?" msgstr "Справді стерти всі налаштування?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "Справді рекурсивно видалити каталог \"%s\"?" msgstr "Справді рекурсивно видалити каталог \"%s\"?"
@ -1721,7 +1721,7 @@ msgstr "Завантажити mtdblock"
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "Низхідний зсув SNR" msgstr "Низхідний зсув SNR"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "Перетягніть, щоб змінити порядок" msgstr "Перетягніть, щоб змінити порядок"
@ -1768,9 +1768,9 @@ msgstr "Довжина EA-бітів"
msgid "EAP-Method" msgid "EAP-Method"
msgstr "Метод EAP" msgstr "Метод EAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -2049,7 +2049,7 @@ msgstr "Протокол FT"
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "Не вдалося змінити системний пароль." msgstr "Не вдалося змінити системний пароль."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "Не вдалося підтвердити застосування на протязі %d с, очікуємо відкату…" msgstr "Не вдалося підтвердити застосування на протязі %d с, очікуємо відкату…"
@ -2057,15 +2057,15 @@ msgstr "Не вдалося підтвердити застосування на
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "Не вдалося виконати дію \"/etc/init.d/%s %s\": %s" msgstr "Не вдалося виконати дію \"/etc/init.d/%s %s\": %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "Файл" msgstr "Файл"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "Файл недоступний" msgstr "Файл недоступний"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "Ім'я файлу" msgstr "Ім'я файлу"
@ -2307,8 +2307,8 @@ msgstr "Глобальні параметри мережі"
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "Перейти до конфігурації пароля..." msgstr "Перейти до конфігурації пароля..."
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -3027,7 +3027,7 @@ msgstr "Залиште поле порожнім для автовизначен
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "Залиште порожнім, щоб використовувати поточну адресу WAN" msgstr "Залиште порожнім, щоб використовувати поточну адресу WAN"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "Легенда:" msgstr "Легенда:"
@ -3146,7 +3146,7 @@ msgstr "Навантаження"
msgid "Load Average" msgid "Load Average"
msgstr "Середнє навантаження" msgstr "Середнє навантаження"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "Завантаження вмісту каталогу…" msgstr "Завантаження вмісту каталогу…"
@ -3481,7 +3481,7 @@ msgstr "Диспетчер"
msgid "More Characters" msgid "More Characters"
msgstr "Більше символів" msgstr "Більше символів"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "Докладніше…" msgstr "Докладніше…"
@ -3572,8 +3572,8 @@ msgstr "Домен NT"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Сервери NTP кандидати для синхронізації" msgstr "Сервери NTP кандидати для синхронізації"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3621,7 +3621,7 @@ msgstr "Нова назва інтерфейсу…"
msgid "Next »" msgid "Next »"
msgstr "Наступний »" msgstr "Наступний »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "Немає" msgstr "Немає"
@ -3642,7 +3642,7 @@ msgstr "Немає NAT-T"
msgid "No data received" msgid "No data received"
msgstr "Жодних даних не отримано" msgstr "Жодних даних не отримано"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "У цьому каталозі немає записів" msgstr "У цьому каталозі немає записів"
@ -3843,11 +3843,11 @@ msgstr "OpenConnect (CISCO AnyConnect)"
msgid "Operating frequency" msgid "Operating frequency"
msgstr "Робоча частота" msgstr "Робоча частота"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Опція змінена" msgstr "Опція змінена"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Опція видалена" msgstr "Опція видалена"
@ -4004,7 +4004,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Огляд" msgstr "Огляд"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "Перезаписати існуючий файл \"%s\"?" msgstr "Перезаписати існуючий файл \"%s\"?"
@ -4249,7 +4249,7 @@ msgstr "пакетів"
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Введіть ім'я користувача і пароль." msgstr "Введіть ім'я користувача і пароль."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "Виберіть файл для відвантаження." msgstr "Виберіть файл для відвантаження."
@ -4702,19 +4702,19 @@ msgstr "Відновити з резервної копії"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "Показати/приховати пароль" msgstr "Показати/приховати пароль"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Скасувати" msgstr "Скасувати"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "Скасувати зміни" msgstr "Скасувати зміни"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "Помилка запиту на скасування зі статусом <code>%h</code>" msgstr "Помилка запиту на скасування зі статусом <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "Відкат конфігурації…" msgstr "Відкат конфігурації…"
@ -4818,7 +4818,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "SWAP" msgstr "SWAP"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4829,7 +4829,7 @@ msgid "Save"
msgstr "Зберегти" msgstr "Зберегти"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Зберегти і застосувати" msgstr "Зберегти і застосувати"
@ -4851,11 +4851,11 @@ msgstr "Сканувати"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Заплановані завдання" msgstr "Заплановані завдання"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Секцію додано" msgstr "Секцію додано"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Секцію видалено" msgstr "Секцію видалено"
@ -4873,9 +4873,9 @@ msgstr ""
"виберіть \"Примусове оновлення\". Використовуйте тільки якщо ви впевнені, що " "виберіть \"Примусове оновлення\". Використовуйте тільки якщо ви впевнені, що "
"мікропрограма є правильною і призначена для вашого пристрою!" "мікропрограма є правильною і призначена для вашого пристрою!"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "Виберіть файл…" msgstr "Виберіть файл…"
@ -4995,7 +4995,7 @@ msgstr "Затухання сигналу (SATN)"
msgid "Signal:" msgid "Signal:"
msgstr "Сигнал:" msgstr "Сигнал:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Розмір" msgstr "Розмір"
@ -5122,7 +5122,7 @@ msgstr "Запустити"
msgid "Start priority" msgid "Start priority"
msgstr "Стартовий пріоритет" msgstr "Стартовий пріоритет"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "Розпочато застосування конфігурації…" msgstr "Розпочато застосування конфігурації…"
@ -5249,7 +5249,7 @@ msgstr "Протокол комутатора"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "Перейти до позначення списку CIDR" msgstr "Перейти до позначення списку CIDR"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "Символічне посилання" msgstr "Символічне посилання"
@ -5360,7 +5360,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "Файл конфігурації не вдалося завантажити через таку помилку:" msgstr "Файл конфігурації не вдалося завантажити через таку помилку:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5556,7 +5556,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "Немає жодних активних оренд" msgstr "Немає жодних активних оренд"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "Немає жодних змін до застосування" msgstr "Немає жодних змін до застосування"
@ -5672,8 +5672,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5896,7 +5896,7 @@ msgstr "Демонтувати"
msgid "Unnamed key" msgid "Unnamed key"
msgstr "Безіменний ключ" msgstr "Безіменний ключ"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Незбережені зміни" msgstr "Незбережені зміни"
@ -5922,7 +5922,7 @@ msgstr "Непідтримуваний тип протоколу."
msgid "Up" msgid "Up"
msgstr "Вгору" msgstr "Вгору"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "Відвантажити" msgstr "Відвантажити"
@ -5939,21 +5939,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "Відвантажити архів…" msgstr "Відвантажити архів…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "Відвантажити файл" msgstr "Відвантажити файл"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "Відвантажити файл…" msgstr "Відвантажити файл…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "Не вдалося виконати запит на відвантаження: %s" msgstr "Не вдалося виконати запит на відвантаження: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "Відвантаження файлу…" msgstr "Відвантаження файлу…"
@ -6333,7 +6333,7 @@ msgstr "Записувати отримані DNS-запити до систем
msgid "Write system log to file" msgid "Write system log to file"
msgstr "Записувати cистемний журнал до файлу" msgstr "Записувати cистемний журнал до файлу"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "Так" msgstr "Так"
@ -6559,7 +6559,7 @@ msgstr "нема з'єднання"
msgid "non-empty value" msgid "non-empty value"
msgstr "непусте значення" msgstr "непусте значення"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "нема нічого" msgstr "нема нічого"
@ -6667,7 +6667,7 @@ msgstr "невідомий"
msgid "unlimited" msgid "unlimited"
msgstr "необмежений" msgstr "необмежений"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -23,7 +23,7 @@ msgstr ""
msgid "%d Bit" msgid "%d Bit"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "%d trường không hợp lệ" msgstr "%d trường không hợp lệ"
@ -59,11 +59,11 @@ msgid "-- Additional Field --"
msgstr "---Mục bổ sung---" msgstr "---Mục bổ sung---"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -71,7 +71,7 @@ msgstr "--Hãy chọn--"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "--tùy chỉnh--" msgstr "--tùy chỉnh--"
@ -245,7 +245,7 @@ msgstr ""
"<br/>Note: bạn cần tự khởi động lại dich vụ cron nếu file crontab rỗng trước " "<br/>Note: bạn cần tự khởi động lại dich vụ cron nếu file crontab rỗng trước "
"khi được chỉnh sửa." "khi được chỉnh sửa."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "thư mục có tên này đã tồn tại" msgstr "thư mục có tên này đã tồn tại"
@ -373,11 +373,11 @@ msgstr "Khởi động xin id từ DHCPv6"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -659,16 +659,16 @@ msgstr ""
msgid "Apply backup?" msgid "Apply backup?"
msgstr "Chấp nhận sao lưu?" msgstr "Chấp nhận sao lưu?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" 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>" 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:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "Áp dụng không kiểm tra" msgstr "Áp dụng không kiểm tra"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "Đợi cấu hình được áp dụng... %ds" msgstr "Đợi cấu hình được áp dụng... %ds"
@ -898,8 +898,8 @@ msgstr "Số cầu nối"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "Áp dụng khi khởi động" msgstr "Áp dụng khi khởi động"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "Duyệt..." msgstr "Duyệt..."
@ -930,8 +930,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "Liên lạc thất bại" msgstr "Liên lạc thất bại"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -997,11 +997,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "chuỗi" msgstr "chuỗi"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "Thay đổi" msgstr "Thay đổi"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "Những thay đổi đã được phục hồi" msgstr "Những thay đổi đã được phục hồi"
@ -1149,16 +1149,16 @@ msgstr ""
"khóa. Cách khắc phục này có thể gây ra các vấn đề về khả năng tương tác và " "khóa. Cách khắc phục này có thể gây ra các vấn đề về khả năng tương tác và "
"giảm độ mạnh của khóa, đặc biệt là trong các môi trường có lưu lượng tải lớn." "giảm độ mạnh của khóa, đặc biệt là trong các môi trường có lưu lượng tải lớn."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "Cấu hình" msgstr "Cấu hình"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "Cấu hình đã được áp dụng" msgstr "Cấu hình đã được áp dụng"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "Cấu hình đã được hoàn lại!" msgstr "Cấu hình đã được hoàn lại!"
@ -1205,7 +1205,7 @@ msgstr "Nội dung đã được lưu"
msgid "Continue" msgid "Continue"
msgstr "Tiếp tục" msgstr "Tiếp tục"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1420,11 +1420,11 @@ msgid ""
"servers to clients." "servers to clients."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1436,7 +1436,7 @@ msgstr "Xóa"
msgid "Delete key" msgid "Delete key"
msgstr "Xóa chìa khóa" msgstr "Xóa chìa khóa"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "Yêu cầu xóa thất bại: %s" msgstr "Yêu cầu xóa thất bại: %s"
@ -1453,7 +1453,7 @@ msgstr "Chu kỳ thông báo chỉ thị lưu thông"
msgid "Description" msgid "Description"
msgstr "Mô tả" msgstr "Mô tả"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "Bỏ chọn" msgstr "Bỏ chọn"
@ -1498,7 +1498,7 @@ msgstr "thiết bị chưa được kích hoạt"
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "Khởi động lại thiết bị ..." msgstr "Khởi động lại thiết bị ..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "Thiết bị không thể truy cập! " msgstr "Thiết bị không thể truy cập! "
@ -1515,7 +1515,7 @@ msgstr "Phân tích"
msgid "Dial number" msgid "Dial number"
msgstr "Quay số" msgstr "Quay số"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "Danh mục" msgstr "Danh mục"
@ -1582,10 +1582,10 @@ msgstr "Ngắt kết nối"
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "Kết nối thất bại" msgstr "Kết nối thất bại"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1624,7 +1624,7 @@ msgstr "Không chuyển tiếp yêu cầu mà máy chủ tên công cộng khôn
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "Không chuyển tiếp tra cứu ngược cho các mạng cục bộ" msgstr "Không chuyển tiếp tra cứu ngược cho các mạng cục bộ"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "Bạn thật sự muốn xóa \"%s\" ?" msgstr "Bạn thật sự muốn xóa \"%s\" ?"
@ -1636,7 +1636,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?" 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?" 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:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" 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\" ?" msgstr "Bạn thật sự muốn xóa toàn bộ thư mục \"%s\" ?"
@ -1676,7 +1676,7 @@ msgstr "Tải xuống mtdblock"
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "Kéo để tổ chức lại" msgstr "Kéo để tổ chức lại"
@ -1722,9 +1722,9 @@ msgstr "Độ dài EA-bits"
msgid "EAP-Method" msgid "EAP-Method"
msgstr "EAP-Method" msgstr "EAP-Method"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -2001,7 +2001,7 @@ msgstr "Giao thức FT"
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "Đổi mật khẩu hệ thống thất bại" msgstr "Đổi mật khẩu hệ thống thất bại"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" 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..." msgstr "Thất bại khi xác thực áp dụng %ds, đợi làm lại..."
@ -2009,15 +2009,15 @@ 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" 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" 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:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "Tệp tin" msgstr "Tệp tin"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "Tệp tin không thể truy cập" msgstr "Tệp tin không thể truy cập"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "Tên tệp" msgstr "Tên tệp"
@ -2260,8 +2260,8 @@ msgstr "Tùy chọn mạng toàn cầu"
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "Tới trang cài đặt mật khẩu..." msgstr "Tới trang cài đặt mật khẩu..."
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2972,7 +2972,7 @@ msgstr "Để trống để tự động phát hiện"
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "Để trống để sử dụng địa chỉ WAN hiện tại" msgstr "Để trống để sử dụng địa chỉ WAN hiện tại"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "" msgstr ""
@ -3081,7 +3081,7 @@ msgstr "Tải "
msgid "Load Average" msgid "Load Average"
msgstr "Tải trung bình" msgstr "Tải trung bình"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "Đang tải nội dung thư mục..." msgstr "Đang tải nội dung thư mục..."
@ -3410,7 +3410,7 @@ msgstr "Monitor"
msgid "More Characters" msgid "More Characters"
msgstr "Thêm đặc điểm" msgstr "Thêm đặc điểm"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "thêm ..." msgstr "thêm ..."
@ -3501,8 +3501,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3550,7 +3550,7 @@ msgstr "Tên giao diện mạng mới..."
msgid "Next »" msgid "Next »"
msgstr "Tiếp »" msgstr "Tiếp »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "Không" msgstr "Không"
@ -3571,7 +3571,7 @@ msgstr "Không NAT-T"
msgid "No data received" msgid "No data received"
msgstr "Không có data nhận được" msgstr "Không có data nhận được"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "Không có gì trong đường dẫn này" msgstr "Không có gì trong đường dẫn này"
@ -3774,11 +3774,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "Tần số hoạt động" msgstr "Tần số hoạt động"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "Thay đổi tùy chỉnh" msgstr "Thay đổi tùy chỉnh"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "Xóa tùy chỉnh" msgstr "Xóa tùy chỉnh"
@ -3932,7 +3932,7 @@ msgstr "Ghi đè bảng được sử dụng cho định tuyến nội bộ"
msgid "Overview" msgid "Overview"
msgstr "Tổng quan" msgstr "Tổng quan"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "Ghi đè tệp đã tồn tại \"%s\" ?" msgstr "Ghi đè tệp đã tồn tại \"%s\" ?"
@ -4175,7 +4175,7 @@ msgstr ""
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "Nhập tên và mật mã" msgstr "Nhập tên và mật mã"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4630,19 +4630,19 @@ msgstr "Phục hồi backup"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "Hiển thị/ẩn mật khẩu" msgstr "Hiển thị/ẩn mật khẩu"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "Hoàn nguyên" msgstr "Hoàn nguyên"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "Hoàn nguyên thay đổi" msgstr "Hoàn nguyên thay đổi"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" 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>" 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:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "Đang hoàn nguyên cấu hình .." msgstr "Đang hoàn nguyên cấu hình .."
@ -4746,7 +4746,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4757,7 +4757,7 @@ msgid "Save"
msgstr "Lưu" msgstr "Lưu"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Lưu & áp dụng " msgstr "Lưu & áp dụng "
@ -4779,11 +4779,11 @@ msgstr "quét"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "Nhiệm vụ theo lịch trình" msgstr "Nhiệm vụ theo lịch trình"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "Thêm mục" msgstr "Thêm mục"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "Xóa mục" msgstr "Xóa mục"
@ -4801,9 +4801,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 " "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" "này tương thích với thiết bị của bạn"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "Chọn tệp" msgstr "Chọn tệp"
@ -4920,7 +4920,7 @@ msgstr "Độ suy hao tín hiệu (SATN)"
msgid "Signal:" msgid "Signal:"
msgstr "Tín hiệu:" msgstr "Tín hiệu:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "Dung lượng " msgstr "Dung lượng "
@ -5043,7 +5043,7 @@ msgstr "Bắt đầu "
msgid "Start priority" msgid "Start priority"
msgstr "Bắt đầu ưu tiên" msgstr "Bắt đầu ưu tiên"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "Đang áp dụng cáu hình ..." msgstr "Đang áp dụng cáu hình ..."
@ -5170,7 +5170,7 @@ msgstr "Đổi giao thức"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "Chuyển sang ký hiệu danh sách CIDR" msgstr "Chuyển sang ký hiệu danh sách CIDR"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "Đường dẫn tham chiếu" msgstr "Đường dẫn tham chiếu"
@ -5277,7 +5277,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5466,7 +5466,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "Không có máy được cấp IP nào hoạt động" msgstr "Không có máy được cấp IP nào hoạt động"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "Không có thay đổi nào để áp dụng" msgstr "Không có thay đổi nào để áp dụng"
@ -5578,8 +5578,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5802,7 +5802,7 @@ msgstr "Hủy gắn kết"
msgid "Unnamed key" msgid "Unnamed key"
msgstr "Khóa không tên" msgstr "Khóa không tên"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "Thay đổi không lưu" msgstr "Thay đổi không lưu"
@ -5828,7 +5828,7 @@ msgstr "Giao thức này không được hỗ trợ"
msgid "Up" msgid "Up"
msgstr "Lên" msgstr "Lên"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "Tải lên" msgstr "Tải lên"
@ -5845,21 +5845,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "Tải dữ liệu lên ..." msgstr "Tải dữ liệu lên ..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "Tải tập tin lên" msgstr "Tải tập tin lên"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "Đang tải tin lên ..." msgstr "Đang tải tin lên ..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "Yêu cầu tải thất bại: %s" msgstr "Yêu cầu tải thất bại: %s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "Đang tải tin lên ..." msgstr "Đang tải tin lên ..."
@ -6234,7 +6234,7 @@ msgstr "Viết yêu cầu DNS nhận được vào nhật ký hệ thống"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "Viết nhật ký hệ thống vào một tệp" msgstr "Viết nhật ký hệ thống vào một tệp"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "Có" msgstr "Có"
@ -6459,7 +6459,7 @@ msgstr "Không có liên kết"
msgid "non-empty value" msgid "non-empty value"
msgstr "Giá trị không rỗng" msgstr "Giá trị không rỗng"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "không" msgstr "không"
@ -6567,7 +6567,7 @@ msgstr "Không xác định"
msgid "unlimited" msgid "unlimited"
msgstr "Không giới hạn" msgstr "Không giới hạn"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -23,7 +23,7 @@ msgstr "%.1f dB"
msgid "%d Bit" msgid "%d Bit"
msgstr "%d Bit" msgstr "%d Bit"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "%d 个无效字段" msgstr "%d 个无效字段"
@ -59,11 +59,11 @@ msgid "-- Additional Field --"
msgstr "-- 更多选项 --" msgstr "-- 更多选项 --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -71,7 +71,7 @@ msgstr "-- 请选择 --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- 自定义 --" msgstr "-- 自定义 --"
@ -242,7 +242,7 @@ msgid ""
msgstr "" msgstr ""
"<br/>注意:如果 crontab 文件在编辑前为空,则需要手动重新启动 cron 服务。" "<br/>注意:如果 crontab 文件在编辑前为空,则需要手动重新启动 cron 服务。"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "已存在同名的目录。" msgstr "已存在同名的目录。"
@ -365,11 +365,11 @@ msgstr "已分配的 DHCPv6 租约"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "点对点 Ad-Hoc" msgstr "点对点 Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -648,16 +648,16 @@ msgstr "任意区域"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "应用备份?" msgstr "应用备份?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "应用请求失败,状态 <code>%h</code>" msgstr "应用请求失败,状态 <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "强制应用" msgstr "强制应用"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "正在等待配置被应用… %ds" msgstr "正在等待配置被应用… %ds"
@ -879,8 +879,8 @@ msgstr "桥接号"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "开机自动运行" msgstr "开机自动运行"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "浏览…" msgstr "浏览…"
@ -911,8 +911,8 @@ msgstr "已缓存"
msgid "Call failed" msgid "Call failed"
msgstr "调用失败" msgstr "调用失败"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -978,11 +978,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "链" msgstr "链"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "更改数" msgstr "更改数"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "更改已恢复。" msgstr "更改已恢复。"
@ -1127,16 +1127,16 @@ msgstr ""
"杂度。此解决方法可能会导致互操作性问题,并降低密钥协商的可靠性,特别是在流量" "杂度。此解决方法可能会导致互操作性问题,并降低密钥协商的可靠性,特别是在流量"
"负载较重的环境中。" "负载较重的环境中。"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "配置" msgstr "配置"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "配置已应用。" msgstr "配置已应用。"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "配置已回滚!" msgstr "配置已回滚!"
@ -1183,7 +1183,7 @@ msgstr "内容已保存。"
msgid "Continue" msgid "Continue"
msgstr "继续" msgstr "继续"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1396,11 +1396,11 @@ msgstr ""
"设置 DHCP 的附加选项,例如设定 \"<code>6,192.168.2.1,192.168.2.2</code>\" 表" "设置 DHCP 的附加选项,例如设定 \"<code>6,192.168.2.1,192.168.2.2</code>\" 表"
"示通告不同的 DNS 服务器给客户端。" "示通告不同的 DNS 服务器给客户端。"
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1412,7 +1412,7 @@ msgstr "删除"
msgid "Delete key" msgid "Delete key"
msgstr "删除密钥" msgstr "删除密钥"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "删除请求失败:%s" msgstr "删除请求失败:%s"
@ -1429,7 +1429,7 @@ msgstr "发送流量指示消息间隔"
msgid "Description" msgid "Description"
msgstr "描述" msgstr "描述"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "取消" msgstr "取消"
@ -1474,7 +1474,7 @@ msgstr "设备未激活"
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "设备正在重启…" msgstr "设备正在重启…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "无法连接到设备!" msgstr "无法连接到设备!"
@ -1491,7 +1491,7 @@ msgstr "网络诊断"
msgid "Dial number" msgid "Dial number"
msgstr "拨号号码" msgstr "拨号号码"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "目录" msgstr "目录"
@ -1558,10 +1558,10 @@ msgstr "断开连接"
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "尝试断开连接失败" msgstr "尝试断开连接失败"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1598,7 +1598,7 @@ msgstr "不转发公共域名服务器无法回应的请求"
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "不转发本地网络的反向查询" msgstr "不转发本地网络的反向查询"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "您真的要删除“%s”吗" msgstr "您真的要删除“%s”吗"
@ -1610,7 +1610,7 @@ msgstr "您真的要删除以下 SSH 密钥吗?"
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "您真的要清除所有设置吗?" msgstr "您真的要清除所有设置吗?"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "您真的要删除目录“%s”吗" msgstr "您真的要删除目录“%s”吗"
@ -1649,7 +1649,7 @@ msgstr "下载 mtdblock"
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "下游 SNR 偏移" msgstr "下游 SNR 偏移"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "拖动以重排" msgstr "拖动以重排"
@ -1693,9 +1693,9 @@ msgstr "EA-位长"
msgid "EAP-Method" msgid "EAP-Method"
msgstr "EAP 类型" msgstr "EAP 类型"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1968,7 +1968,7 @@ msgstr "FT 协议"
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "更改系统密码失败。" msgstr "更改系统密码失败。"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "在 %d 秒内确认应用失败,等待回滚…" msgstr "在 %d 秒内确认应用失败,等待回滚…"
@ -1976,15 +1976,15 @@ msgstr "在 %d 秒内确认应用失败,等待回滚…"
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "执行“/etc/init.d/%s %s”失败%s" msgstr "执行“/etc/init.d/%s %s”失败%s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "文件" msgstr "文件"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "文件无法访问" msgstr "文件无法访问"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "文件名" msgstr "文件名"
@ -2224,8 +2224,8 @@ msgstr "全局网络选项"
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "跳转到密码配置页…" msgstr "跳转到密码配置页…"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2924,7 +2924,7 @@ msgstr "留空则自动探测"
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "留空则使用当前 WAN 地址" msgstr "留空则使用当前 WAN 地址"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "图例:" msgstr "图例:"
@ -3029,7 +3029,7 @@ msgstr "负载"
msgid "Load Average" msgid "Load Average"
msgstr "平均负载" msgstr "平均负载"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "正在载入目录内容…" msgstr "正在载入目录内容…"
@ -3353,7 +3353,7 @@ msgstr "监听"
msgid "More Characters" msgid "More Characters"
msgstr "需要更多字符" msgstr "需要更多字符"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "更多…" msgstr "更多…"
@ -3442,8 +3442,8 @@ msgstr "NT 域"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "候选 NTP 服务器" msgstr "候选 NTP 服务器"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3491,7 +3491,7 @@ msgstr "新接口名称…"
msgid "Next »" msgid "Next »"
msgstr "前进 »" msgstr "前进 »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "否" msgstr "否"
@ -3512,7 +3512,7 @@ msgstr "无 NAT-T"
msgid "No data received" msgid "No data received"
msgstr "没有接收到数据" msgstr "没有接收到数据"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "此目录中没有内容" msgstr "此目录中没有内容"
@ -3713,11 +3713,11 @@ msgstr "OpenConnect (CISCO AnyConnect)"
msgid "Operating frequency" msgid "Operating frequency"
msgstr "工作频率" msgstr "工作频率"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "选项已更改" msgstr "选项已更改"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "选项已移除" msgstr "选项已移除"
@ -3862,7 +3862,7 @@ msgstr "重设内部路由表"
msgid "Overview" msgid "Overview"
msgstr "概览" msgstr "概览"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "覆盖已存在的文件“%s”吗" msgstr "覆盖已存在的文件“%s”吗"
@ -4105,7 +4105,7 @@ msgstr "数据包"
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "请输入用户名和密码。" msgstr "请输入用户名和密码。"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "请选择要上传的文件。" msgstr "请选择要上传的文件。"
@ -4547,19 +4547,19 @@ msgstr "恢复配置"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "显示/隐藏 密码" msgstr "显示/隐藏 密码"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "恢复" msgstr "恢复"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "恢复更改" msgstr "恢复更改"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "恢复请求失败,状态 <code>%h</code>" msgstr "恢复请求失败,状态 <code>%h</code>"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "正在恢复配置…" msgstr "正在恢复配置…"
@ -4661,7 +4661,7 @@ msgstr "SSID"
msgid "SWAP" msgid "SWAP"
msgstr "交换分区" msgstr "交换分区"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4672,7 +4672,7 @@ msgid "Save"
msgstr "保存" msgstr "保存"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "保存并应用" msgstr "保存并应用"
@ -4694,11 +4694,11 @@ msgstr "扫描"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "计划任务" msgstr "计划任务"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "添加的节点" msgstr "添加的节点"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "移除的节点" msgstr "移除的节点"
@ -4715,9 +4715,9 @@ msgstr ""
"即使映像文件检查失败,也“强制升级”以烧录映像。仅在您确定固件正确且适用于您的" "即使映像文件检查失败,也“强制升级”以烧录映像。仅在您确定固件正确且适用于您的"
"设备时使用!" "设备时使用!"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "选择文件…" msgstr "选择文件…"
@ -4833,7 +4833,7 @@ msgstr "信号衰减SATN"
msgid "Signal:" msgid "Signal:"
msgstr "信号:" msgstr "信号:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "大小" msgstr "大小"
@ -4950,7 +4950,7 @@ msgstr "启动"
msgid "Start priority" msgid "Start priority"
msgstr "启动优先级" msgstr "启动优先级"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "开始应用配置…" msgstr "开始应用配置…"
@ -5073,7 +5073,7 @@ msgstr "切换协议"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "切换到 CIDR 列表记法" msgstr "切换到 CIDR 列表记法"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "符号链接" msgstr "符号链接"
@ -5180,7 +5180,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "由于以下错误,配置文件无法被加载:" msgstr "由于以下错误,配置文件无法被加载:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5357,7 +5357,7 @@ msgstr "不支持所上传的映像文件格式,请选择适合当前平台的
msgid "There are no active leases" msgid "There are no active leases"
msgstr "没有已分配的租约" msgstr "没有已分配的租约"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "没有待应用的更改" msgstr "没有待应用的更改"
@ -5459,8 +5459,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5681,7 +5681,7 @@ msgstr "卸载分区"
msgid "Unnamed key" msgid "Unnamed key"
msgstr "未命名的密钥" msgstr "未命名的密钥"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "未保存的配置" msgstr "未保存的配置"
@ -5707,7 +5707,7 @@ msgstr "不支持的协议类型。"
msgid "Up" msgid "Up"
msgstr "上移" msgstr "上移"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "上传" msgstr "上传"
@ -5722,21 +5722,21 @@ msgstr "从这里上传一个 sysupgrade 兼容镜像以更新正在运行的固
msgid "Upload archive..." msgid "Upload archive..."
msgstr "上传备份…" msgstr "上传备份…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "上传文件" msgstr "上传文件"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "上传文件…" msgstr "上传文件…"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "上传请求失败:%s" msgstr "上传请求失败:%s"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "正在上传文件…" msgstr "正在上传文件…"
@ -6109,7 +6109,7 @@ msgstr "将收到的 DNS 请求写入系统日志"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "将系统日志写入文件" msgstr "将系统日志写入文件"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "是" msgstr "是"
@ -6327,7 +6327,7 @@ msgstr "未连接"
msgid "non-empty value" msgid "non-empty value"
msgstr "非空值" msgstr "非空值"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "无" msgstr "无"
@ -6435,7 +6435,7 @@ msgstr "未知"
msgid "unlimited" msgid "unlimited"
msgstr "无限制" msgstr "无限制"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368

View file

@ -21,7 +21,7 @@ msgstr ""
msgid "%d Bit" msgid "%d Bit"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2287 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2321
msgid "%d invalid field(s)" msgid "%d invalid field(s)"
msgstr "" msgstr ""
@ -57,11 +57,11 @@ msgid "-- Additional Field --"
msgstr "-- 更多選項 --" msgstr "-- 更多選項 --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:258 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:258
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/form.js:1789 #: modules/luci-base/htdocs/luci-static/resources/form.js:1811
#: modules/luci-base/htdocs/luci-static/resources/ui.js:315 #: modules/luci-base/htdocs/luci-static/resources/ui.js:315
#: modules/luci-base/htdocs/luci-static/resources/ui.js:415 #: modules/luci-base/htdocs/luci-static/resources/ui.js:415
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1243 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1249
#: modules/luci-compat/luasrc/view/cbi/header.htm:5 #: modules/luci-compat/luasrc/view/cbi/header.htm:5
#: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88 #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
msgid "-- Please choose --" msgid "-- Please choose --"
@ -69,7 +69,7 @@ msgstr "-- 請選擇 --"
#: modules/luci-base/htdocs/luci-static/resources/cbi.js:259 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:259
#: modules/luci-base/htdocs/luci-static/resources/ui.js:416 #: modules/luci-base/htdocs/luci-static/resources/ui.js:416
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1244 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1250
#: modules/luci-compat/luasrc/view/cbi/header.htm:6 #: modules/luci-compat/luasrc/view/cbi/header.htm:6
msgid "-- custom --" msgid "-- custom --"
msgstr "-- 自訂 --" msgstr "-- 自訂 --"
@ -236,7 +236,7 @@ msgid ""
"was empty before editing." "was empty before editing."
msgstr "注意: 如果這個檔案在編輯之前是空的,您將需要重新啟動cron服務" msgstr "注意: 如果這個檔案在編輯之前是空的,您將需要重新啟動cron服務"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1695 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1729
msgid "A directory with the same name already exists." msgid "A directory with the same name already exists."
msgstr "" msgstr ""
@ -359,11 +359,11 @@ msgstr "已分配的DHCPv6租用"
msgid "Ad-Hoc" msgid "Ad-Hoc"
msgstr "Ad-Hoc" msgstr "Ad-Hoc"
#: modules/luci-base/htdocs/luci-static/resources/form.js:909 #: modules/luci-base/htdocs/luci-static/resources/form.js:931
#: modules/luci-base/htdocs/luci-static/resources/form.js:911 #: modules/luci-base/htdocs/luci-static/resources/form.js:933
#: modules/luci-base/htdocs/luci-static/resources/form.js:924 #: modules/luci-base/htdocs/luci-static/resources/form.js:946
#: modules/luci-base/htdocs/luci-static/resources/form.js:925 #: modules/luci-base/htdocs/luci-static/resources/form.js:947
#: modules/luci-base/htdocs/luci-static/resources/form.js:1548 #: modules/luci-base/htdocs/luci-static/resources/form.js:1570
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:25 #: 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:189
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
@ -641,16 +641,16 @@ msgstr "任意區域"
msgid "Apply backup?" msgid "Apply backup?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2756 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
msgid "Apply request failed with status <code>%h</code>" msgid "Apply request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2927 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2927
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2643 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2677
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2715 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2749
msgid "Applying configuration changes… %ds" msgid "Applying configuration changes… %ds"
msgstr "" msgstr ""
@ -872,8 +872,8 @@ msgstr "橋接單位號碼"
msgid "Bring up on boot" msgid "Bring up on boot"
msgstr "開機自動執行" msgstr "開機自動執行"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1783 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1817
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2368 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2402
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
@ -904,8 +904,8 @@ msgstr ""
msgid "Call failed" msgid "Call failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1875 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1909
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2377 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2411
#: modules/luci-compat/luasrc/view/cbi/delegator.htm:14 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
#: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:182
@ -971,11 +971,11 @@ msgstr ""
msgid "Chain" msgid "Chain"
msgstr "鏈" msgstr "鏈"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
msgid "Changes" msgid "Changes"
msgstr "待修改" msgstr "待修改"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2779 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2813
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "設定值已還原." msgstr "設定值已還原."
@ -1117,16 +1117,16 @@ msgid ""
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2531 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2565
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:416
msgid "Configuration" msgid "Configuration"
msgstr "設定" msgstr "設定"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2690 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
msgid "Configuration changes applied." msgid "Configuration changes applied."
msgstr "設定值已套用" msgstr "設定值已套用"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2629 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2663
msgid "Configuration changes have been rolled back!" msgid "Configuration changes have been rolled back!"
msgstr "設定值已復原" msgstr "設定值已復原"
@ -1173,7 +1173,7 @@ msgstr ""
msgid "Continue" msgid "Continue"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2665 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2699
msgid "" msgid ""
"Could not regain access to the device after applying the configuration " "Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
@ -1387,11 +1387,11 @@ msgstr ""
"定義額外的DHCP選項,例如\"<code>6,192.168.2.1,192.168.2.2</code>\"將會通告不同" "定義額外的DHCP選項,例如\"<code>6,192.168.2.1,192.168.2.2</code>\"將會通告不同"
"的DNS伺服器到客戶端." "的DNS伺服器到客戶端."
#: modules/luci-base/htdocs/luci-static/resources/form.js:973 #: modules/luci-base/htdocs/luci-static/resources/form.js:995
#: modules/luci-base/htdocs/luci-static/resources/form.js:1222 #: modules/luci-base/htdocs/luci-static/resources/form.js:1244
#: modules/luci-base/htdocs/luci-static/resources/form.js:1225 #: modules/luci-base/htdocs/luci-static/resources/form.js:1247
#: modules/luci-base/htdocs/luci-static/resources/form.js:1533 #: modules/luci-base/htdocs/luci-static/resources/form.js:1555
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1844 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1878
#: modules/luci-compat/luasrc/view/cbi/nsection.htm:11 #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:16 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
@ -1403,7 +1403,7 @@ msgstr "刪除"
msgid "Delete key" msgid "Delete key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1743 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1777
msgid "Delete request failed: %s" msgid "Delete request failed: %s"
msgstr "" msgstr ""
@ -1420,7 +1420,7 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "說明" msgstr "說明"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1840 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1874
msgid "Deselect" msgid "Deselect"
msgstr "" msgstr ""
@ -1465,7 +1465,7 @@ msgstr ""
msgid "Device is restarting…" msgid "Device is restarting…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2664 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2698
msgid "Device unreachable!" msgid "Device unreachable!"
msgstr "無法連線到設備!" msgstr "無法連線到設備!"
@ -1482,7 +1482,7 @@ msgstr "診斷"
msgid "Dial number" msgid "Dial number"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1644 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1678
msgid "Directory" msgid "Directory"
msgstr "目錄" msgstr "目錄"
@ -1548,10 +1548,10 @@ msgstr ""
msgid "Disconnection attempt failed" msgid "Disconnection attempt failed"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1384 #: modules/luci-base/htdocs/luci-static/resources/form.js:1406
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2081 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2115
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2548 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2582
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2635 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2669
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1749
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:326
msgid "Dismiss" msgid "Dismiss"
@ -1588,7 +1588,7 @@ msgstr "對不被公用名稱伺服器回應的請求不轉發"
msgid "Do not forward reverse lookups for local networks" msgid "Do not forward reverse lookups for local networks"
msgstr "對本地網域不轉發反解析鎖定" msgstr "對本地網域不轉發反解析鎖定"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1729 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1763
msgid "Do you really want to delete \"%s\" ?" msgid "Do you really want to delete \"%s\" ?"
msgstr "" msgstr ""
@ -1600,7 +1600,7 @@ msgstr ""
msgid "Do you really want to erase all settings?" msgid "Do you really want to erase all settings?"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1727 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1761
msgid "Do you really want to recursively delete the directory \"%s\" ?" msgid "Do you really want to recursively delete the directory \"%s\" ?"
msgstr "" msgstr ""
@ -1640,7 +1640,7 @@ msgstr ""
msgid "Downstream SNR offset" msgid "Downstream SNR offset"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1181 #: modules/luci-base/htdocs/luci-static/resources/form.js:1203
msgid "Drag to reorder" msgid "Drag to reorder"
msgstr "" msgstr ""
@ -1683,9 +1683,9 @@ msgstr ""
msgid "EAP-Method" msgid "EAP-Method"
msgstr "EAP協定驗證方式" msgstr "EAP協定驗證方式"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1200 #: modules/luci-base/htdocs/luci-static/resources/form.js:1222
#: modules/luci-base/htdocs/luci-static/resources/form.js:1203 #: modules/luci-base/htdocs/luci-static/resources/form.js:1225
#: modules/luci-base/htdocs/luci-static/resources/form.js:1459 #: modules/luci-base/htdocs/luci-static/resources/form.js:1481
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:334
@ -1958,7 +1958,7 @@ msgstr ""
msgid "Failed to change the system password." msgid "Failed to change the system password."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2623 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2657
msgid "Failed to confirm apply within %ds, waiting for rollback…" msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr "" msgstr ""
@ -1966,15 +1966,15 @@ msgstr ""
msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s" msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1651 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1685
msgid "File" msgid "File"
msgstr "檔案" msgstr "檔案"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1604 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1638
msgid "File not accessible" msgid "File not accessible"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1784 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1818
msgid "Filename" msgid "Filename"
msgstr "" msgstr ""
@ -2212,8 +2212,8 @@ msgstr "全域網路設定"
msgid "Go to password configuration..." msgid "Go to password configuration..."
msgstr "前往密碼設定頁" msgstr "前往密碼設定頁"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1124 #: modules/luci-base/htdocs/luci-static/resources/form.js:1146
#: modules/luci-base/htdocs/luci-static/resources/form.js:1626 #: modules/luci-base/htdocs/luci-static/resources/form.js:1648
#: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
msgid "Go to relevant configuration page" msgid "Go to relevant configuration page"
@ -2911,7 +2911,7 @@ msgstr "保持空白以便自動偵測"
msgid "Leave empty to use the current WAN address" msgid "Leave empty to use the current WAN address"
msgstr "保持空白以便採用現今的寬頻位址" msgstr "保持空白以便採用現今的寬頻位址"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2533 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2567
msgid "Legend:" msgid "Legend:"
msgstr "圖例:" msgstr "圖例:"
@ -3008,7 +3008,7 @@ msgstr "掛載"
msgid "Load Average" msgid "Load Average"
msgstr "平均掛載" msgstr "平均掛載"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1905 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1939
msgid "Loading directory contents…" msgid "Loading directory contents…"
msgstr "" msgstr ""
@ -3333,7 +3333,7 @@ msgstr "監視"
msgid "More Characters" msgid "More Characters"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1067 #: modules/luci-base/htdocs/luci-static/resources/form.js:1089
msgid "More…" msgid "More…"
msgstr "" msgstr ""
@ -3422,8 +3422,8 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "NTP伺服器備選" msgstr "NTP伺服器備選"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1104 #: modules/luci-base/htdocs/luci-static/resources/form.js:1126
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2354 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2388
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:596
#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:705
@ -3471,7 +3471,7 @@ msgstr ""
msgid "Next »" msgid "Next »"
msgstr "下一個 »" msgstr "下一個 »"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:108
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -3492,7 +3492,7 @@ msgstr ""
msgid "No data received" msgid "No data received"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1850 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1884
msgid "No entries in this directory" msgid "No entries in this directory"
msgstr "" msgstr ""
@ -3693,11 +3693,11 @@ msgstr ""
msgid "Operating frequency" msgid "Operating frequency"
msgstr "操作頻率" msgstr "操作頻率"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2540 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2574
msgid "Option changed" msgid "Option changed"
msgstr "選項已變更" msgstr "選項已變更"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2542 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2576
msgid "Option removed" msgid "Option removed"
msgstr "選項已移除" msgstr "選項已移除"
@ -3836,7 +3836,7 @@ msgstr "覆蓋之前內部使用的路由表"
msgid "Overview" msgid "Overview"
msgstr "預覽" msgstr "預覽"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1696 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1730
msgid "Overwrite existing file \"%s\" ?" msgid "Overwrite existing file \"%s\" ?"
msgstr "" msgstr ""
@ -4079,7 +4079,7 @@ msgstr "封包數."
msgid "Please enter your username and password." msgid "Please enter your username and password."
msgstr "請輸入您的用戶名稱和密碼" msgstr "請輸入您的用戶名稱和密碼"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2337 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2371
msgid "Please select the file to upload." msgid "Please select the file to upload."
msgstr "" msgstr ""
@ -4514,19 +4514,19 @@ msgstr "還原之前備份設定"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "明示/隱藏 密碼" msgstr "明示/隱藏 密碼"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2556 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2590
msgid "Revert" msgid "Revert"
msgstr "回溯" msgstr "回溯"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2639 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2673
msgid "Revert changes" msgid "Revert changes"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2788 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2822
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2768 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2802
msgid "Reverting configuration…" msgid "Reverting configuration…"
msgstr "正在還原設定值..." msgstr "正在還原設定值..."
@ -4628,7 +4628,7 @@ msgstr "基地台服務設定識別碼SSID"
msgid "SWAP" msgid "SWAP"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1388 #: modules/luci-base/htdocs/luci-static/resources/form.js:1410
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2942 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2942
#: modules/luci-compat/luasrc/view/cbi/error.htm:17 #: modules/luci-compat/luasrc/view/cbi/error.htm:17
#: modules/luci-compat/luasrc/view/cbi/footer.htm:26 #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
@ -4639,7 +4639,7 @@ msgid "Save"
msgstr "保存" msgstr "保存"
#: modules/luci-base/htdocs/luci-static/resources/luci.js:2926 #: modules/luci-base/htdocs/luci-static/resources/luci.js:2926
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2552 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2586
#: modules/luci-compat/luasrc/view/cbi/footer.htm:22 #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
msgid "Save & Apply" msgid "Save & Apply"
msgstr "保存並啟用" msgstr "保存並啟用"
@ -4661,11 +4661,11 @@ msgstr "掃描"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "排程任務" msgstr "排程任務"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2536 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2570
msgid "Section added" msgid "Section added"
msgstr "新增的區段" msgstr "新增的區段"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2538 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2572
msgid "Section removed" msgid "Section removed"
msgstr "區段移除" msgstr "區段移除"
@ -4680,9 +4680,9 @@ msgid ""
"your device!" "your device!"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1606 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1640
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1736 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1770
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1895 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1929
msgid "Select file…" msgid "Select file…"
msgstr "" msgstr ""
@ -4796,7 +4796,7 @@ msgstr ""
msgid "Signal:" msgid "Signal:"
msgstr "信號:" msgstr "信號:"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2355 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2389
#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:213
msgid "Size" msgid "Size"
msgstr "大小" msgstr "大小"
@ -4911,7 +4911,7 @@ msgstr "啟用"
msgid "Start priority" msgid "Start priority"
msgstr "啟用優先權順序" msgstr "啟用優先權順序"
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2733 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2767
msgid "Starting configuration apply…" msgid "Starting configuration apply…"
msgstr "開始套用設定值..." msgstr "開始套用設定值..."
@ -5034,7 +5034,7 @@ msgstr "切換協定"
msgid "Switch to CIDR list notation" msgid "Switch to CIDR list notation"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1637 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1671
msgid "Symbolic link" msgid "Symbolic link"
msgstr "" msgstr ""
@ -5141,7 +5141,7 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2630 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2664
msgid "" msgid ""
"The device could not be reached within %d seconds after applying the pending " "The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety " "changes, which caused the configuration to be rolled back for safety "
@ -5311,7 +5311,7 @@ msgstr ""
msgid "There are no active leases" msgid "There are no active leases"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2748 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2782
msgid "There are no changes to apply" msgid "There are no changes to apply"
msgstr "" msgstr ""
@ -5411,8 +5411,8 @@ msgid ""
"This option cannot be used because the ca-bundle package is not installed." "This option cannot be used because the ca-bundle package is not installed."
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:943 #: modules/luci-base/htdocs/luci-static/resources/form.js:965
#: modules/luci-base/htdocs/luci-static/resources/form.js:1074 #: modules/luci-base/htdocs/luci-static/resources/form.js:1096
#: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
#: modules/luci-compat/luasrc/view/cbi/tsection.htm:32 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
msgid "This section contains no values yet" msgid "This section contains no values yet"
@ -5633,7 +5633,7 @@ msgstr ""
msgid "Unnamed key" msgid "Unnamed key"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2495 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2529
msgid "Unsaved Changes" msgid "Unsaved Changes"
msgstr "尚未存檔的修改" msgstr "尚未存檔的修改"
@ -5659,7 +5659,7 @@ msgstr "不支援的協定型態"
msgid "Up" msgid "Up"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2429 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2463
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
@ -5674,21 +5674,21 @@ msgstr ""
msgid "Upload archive..." msgid "Upload archive..."
msgstr "上傳壓縮檔..." msgstr "上傳壓縮檔..."
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1789 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1823
msgid "Upload file" msgid "Upload file"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1764 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1798
msgid "Upload file…" msgid "Upload file…"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:1713 #: modules/luci-base/htdocs/luci-static/resources/ui.js:1747
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2417 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2451
msgid "Upload request failed: %s" msgid "Upload request failed: %s"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2336 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2370
#: modules/luci-base/htdocs/luci-static/resources/ui.js:2390 #: modules/luci-base/htdocs/luci-static/resources/ui.js:2424
msgid "Uploading file…" msgid "Uploading file…"
msgstr "" msgstr ""
@ -6054,7 +6054,7 @@ msgstr "寫入已接收的DNS請求到系統日誌中"
msgid "Write system log to file" msgid "Write system log to file"
msgstr "將系統日誌寫入檔案" msgstr "將系統日誌寫入檔案"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1763 #: modules/luci-base/htdocs/luci-static/resources/form.js:1785
#: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:109
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@ -6272,7 +6272,7 @@ msgstr "無連線"
msgid "non-empty value" msgid "non-empty value"
msgstr "" msgstr ""
#: modules/luci-base/htdocs/luci-static/resources/form.js:1455 #: modules/luci-base/htdocs/luci-static/resources/form.js:1477
msgid "none" msgid "none"
msgstr "無" msgstr "無"
@ -6380,7 +6380,7 @@ msgstr "未知"
msgid "unlimited" msgid "unlimited"
msgstr "無限" msgstr "無限"
#: modules/luci-base/htdocs/luci-static/resources/form.js:1658 #: modules/luci-base/htdocs/luci-static/resources/form.js:1680
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:137
#: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:368