diff options
Diffstat (limited to 'modules')
99 files changed, 18287 insertions, 16942 deletions
diff --git a/modules/luci-base/Makefile b/modules/luci-base/Makefile index 06ee7985eb..9bc8ec17a1 100644 --- a/modules/luci-base/Makefile +++ b/modules/luci-base/Makefile @@ -36,13 +36,14 @@ define Host/Configure endef define Host/Compile - $(MAKE) -C src/ clean po2lmo + $(MAKE) -C src/ clean po2lmo jsmin endef define Host/Install $(INSTALL_DIR) $(1)/bin $(INSTALL_DIR) $(1)/lib/lua/5.1 $(INSTALL_BIN) src/po2lmo $(1)/bin/po2lmo + $(INSTALL_BIN) src/jsmin $(1)/bin/jsmin $(INSTALL_BIN) $(HOST_BUILD_DIR)/bin/luasrcdiet $(1)/bin/luasrcdiet $(CP) $(HOST_BUILD_DIR)/luasrcdiet $(1)/lib/lua/5.1/ endef diff --git a/modules/luci-base/htdocs/luci-static/resources/cbi.js b/modules/luci-base/htdocs/luci-static/resources/cbi.js index 0230ae9fa0..61b83e8294 100644 --- a/modules/luci-base/htdocs/luci-static/resources/cbi.js +++ b/modules/luci-base/htdocs/luci-static/resources/cbi.js @@ -2,7 +2,7 @@ LuCI - Lua Configuration Interface Copyright 2008 Steven Barth <steven@midlink.org> - Copyright 2008-2012 Jo-Philipp Wich <jow@openwrt.org> + Copyright 2008-2018 Jo-Philipp Wich <jo@mein.io> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -12,41 +12,73 @@ */ var cbi_d = []; -var cbi_t = []; var cbi_strings = { path: {}, label: {} }; +function s8(bytes, off) { + var n = bytes[off]; + return (n > 0x7F) ? (n - 256) >>> 0 : n; +} + +function u16(bytes, off) { + return ((bytes[off + 1] << 8) + bytes[off]) >>> 0; +} + function sfh(s) { if (s === null || s.length === 0) return null; - var hash = (s.length >>> 0), - len = (s.length >>> 2), + var bytes = []; + + for (var i = 0; i < s.length; i++) { + var ch = s.charCodeAt(i); + + if (ch <= 0x7F) + bytes.push(ch); + else if (ch <= 0x7FF) + bytes.push(((ch >>> 6) & 0x1F) | 0xC0, + ( ch & 0x3F) | 0x80); + else if (ch <= 0xFFFF) + bytes.push(((ch >>> 12) & 0x0F) | 0xE0, + ((ch >>> 6) & 0x3F) | 0x80, + ( ch & 0x3F) | 0x80); + else if (code <= 0x10FFFF) + bytes.push(((ch >>> 18) & 0x07) | 0xF0, + ((ch >>> 12) & 0x3F) | 0x80, + ((ch >> 6) & 0x3F) | 0x80, + ( ch & 0x3F) | 0x80); + } + + if (!bytes.length) + return null; + + var hash = (bytes.length >>> 0), + len = (bytes.length >>> 2), off = 0, tmp; while (len--) { - hash += ((s.charCodeAt(off + 1) << 8) + s.charCodeAt(off)) >>> 0; - tmp = ((((s.charCodeAt(off + 3) << 8) + s.charCodeAt(off + 2)) << 11) ^ hash) >>> 0; + hash += u16(bytes, off); + tmp = ((u16(bytes, off + 2) << 11) ^ hash) >>> 0; hash = ((hash << 16) ^ tmp) >>> 0; hash += hash >>> 11; off += 4; } - switch ((s.length & 3) >>> 0) { + switch ((bytes.length & 3) >>> 0) { case 3: - hash += ((s.charCodeAt(off + 1) << 8) + s.charCodeAt(off)) >>> 0; + hash += u16(bytes, off); hash = (hash ^ (hash << 16)) >>> 0; - hash = (hash ^ (s.charCodeAt(off + 2) << 18)) >>> 0; - hash += hash >> 11; + hash = (hash ^ (s8(bytes, off + 2) << 18)) >>> 0; + hash += hash >>> 11; break; case 2: - hash += ((s.charCodeAt(off + 1) << 8) + s.charCodeAt(off)) >>> 0; + hash += u16(bytes, off); hash = (hash ^ (hash << 11)) >>> 0; hash += hash >>> 17; break; case 1: - hash += s.charCodeAt(off); + hash += s8(bytes, off); hash = (hash ^ (hash << 10)) >>> 0; hash += hash >>> 1; break; @@ -228,7 +260,7 @@ var CBIValidatorPrototype = { validate: function() { /* element is detached */ - if (!this.field.form) + if (!findParent(this.field, 'form')) return true; this.field.classList.remove('cbi-input-invalid'); @@ -569,7 +601,7 @@ var CBIValidatorPrototype = { return; var input = sibling.querySelector('[data-type]'), - values = input.getAttribute('data-is-list') ? input.value.match(/[^ \t]+/g) : [ input.value ]; + values = input ? (input.getAttribute('data-is-list') ? input.value.match(/[^ \t]+/g) : [ input.value ]) : null; if (values !== null && values.indexOf(ctx.value) !== -1) unique = false; @@ -694,13 +726,13 @@ function cbi_d_update() { parent.parentNode.style.display = (parent.options.length <= 1) ? 'none' : ''; } - if (entry && entry.parent) { - if (!cbi_t_update()) - cbi_tag_last(parent); - } + if (entry && entry.parent) + cbi_tag_last(parent); if (state) cbi_d_update(); + else if (parent) + parent.dispatchEvent(new CustomEvent('dependency-update', { bubbles: true })); } function cbi_init() { @@ -806,7 +838,9 @@ function cbi_combobox_init(id, values, def, man) { 'class': 'cbi-dropdown', 'display-items': 5, 'optional': obj.getAttribute('data-optional'), - 'placeholder': _('-- Please choose --') + 'placeholder': _('-- Please choose --'), + 'data-type': obj.getAttribute('data-type'), + 'data-optional': obj.getAttribute('data-optional') }, [ E('ul') ]); if (!(obj.value in values) && obj.value.length) { @@ -833,6 +867,7 @@ function cbi_combobox_init(id, values, def, man) { }) ])); + sb.value = obj.value; obj.parentNode.replaceChild(sb, obj); } @@ -1009,75 +1044,6 @@ function cbi_dynlist_init(dl, datatype, optional, choices) cbi_dynlist_init.prototype = CBIDynamicList; -function cbi_t_add(section, tab) { - var t = document.getElementById('tab.' + section + '.' + tab); - var c = document.getElementById('container.' + section + '.' + tab); - - if (t && c) { - cbi_t[section] = (cbi_t[section] || [ ]); - cbi_t[section][tab] = { 'tab': t, 'container': c, 'cid': c.id }; - } -} - -function cbi_t_switch(section, tab) { - if (cbi_t[section] && cbi_t[section][tab]) { - var o = cbi_t[section][tab]; - var h = document.getElementById('tab.' + section); - - for (var tid in cbi_t[section]) { - var o2 = cbi_t[section][tid]; - - if (o.tab.id != o2.tab.id) { - o2.tab.classList.remove('cbi-tab'); - o2.tab.classList.add('cbi-tab-disabled'); - o2.container.style.display = 'none'; - } - else { - if(h) - h.value = tab; - - o2.tab.classList.remove('cbi-tab-disabled'); - o2.tab.classList.add('cbi-tab'); - o2.container.style.display = 'block'; - } - } - } - - return false; -} - -function cbi_t_update() { - var hl_tabs = [ ]; - var updated = false; - - for (var sid in cbi_t) - for (var tid in cbi_t[sid]) { - var t = cbi_t[sid][tid].tab; - var c = cbi_t[sid][tid].container; - - if (!c.firstElementChild) { - t.style.display = 'none'; - } - else if (t.style.display == 'none') { - t.style.display = ''; - t.classList.add('cbi-tab-highlighted'); - hl_tabs.push(t); - } - - cbi_tag_last(c); - updated = true; - } - - if (hl_tabs.length > 0) - window.setTimeout(function() { - for (var i = 0; i < hl_tabs.length; i++) - hl_tabs[i].classList.remove('cbi-tab-highlighted'); - }, 750); - - return updated; -} - - function cbi_validate_form(form, errmsg) { /* if triggered by a section removal or addition, don't validate */ @@ -1114,38 +1080,30 @@ function cbi_validate_field(cbid, optional, type) try { var cbiValidator = new CBIValidator(field, type, optional); - - validatorFn = function() { - return cbiValidator.validate(); - }; + validatorFn = cbiValidator.validate.bind(cbiValidator); } catch(e) { validatorFn = null; }; if (validatorFn !== null) { - if (!field.form.cbi_validators) - field.form.cbi_validators = [ ]; + var form = findParent(field, 'form'); + + if (!form.cbi_validators) + form.cbi_validators = [ ]; - field.form.cbi_validators.push(validatorFn); + form.cbi_validators.push(validatorFn); field.addEventListener("blur", validatorFn); field.addEventListener("keyup", validatorFn); + field.addEventListener("cbi-dropdown-change", validatorFn); if (matchesElem(field, 'select')) { field.addEventListener("change", validatorFn); field.addEventListener("click", validatorFn); } - field.setAttribute("cbi_validate", validatorFn); - field.setAttribute("cbi_datatype", type); - field.setAttribute("cbi_optional", (!!optional).toString()); - validatorFn(); - - var fcbox = document.getElementById('cbi.combobox.' + field.id); - if (fcbox) - cbi_validate_field(fcbox, optional, type); } } @@ -1441,108 +1399,20 @@ if (window.NodeList && !NodeList.prototype.forEach) { }; } - -var dummyElem, domParser; - -function isElem(e) -{ - return (typeof(e) === 'object' && e !== null && 'nodeType' in e); -} - -function toElem(s) -{ - var elem; - - try { - domParser = domParser || new DOMParser(); - elem = domParser.parseFromString(s, 'text/html').body.firstChild; - } - catch(e) {} - - if (!elem) { - try { - dummyElem = dummyElem || document.createElement('div'); - dummyElem.innerHTML = s; - elem = dummyElem.firstChild; - } - catch (e) {} - } - - return elem || null; -} - -function matchesElem(node, selector) -{ - return ((node.matches && node.matches(selector)) || - (node.msMatchesSelector && node.msMatchesSelector(selector))); -} - -function findParent(node, selector) -{ - if (node.closest) - return node.closest(selector); - - while (node) - if (matchesElem(node, selector)) - return node; - else - node = node.parentNode; - - return null; +if (!window.requestAnimationFrame) { + window.requestAnimationFrame = function(f) { + window.setTimeout(function() { + f(new Date().getTime()) + }, 1000/30); + }; } -function E() -{ - var html = arguments[0], - attr = (arguments[1] instanceof Object && !Array.isArray(arguments[1])) ? arguments[1] : null, - data = attr ? arguments[2] : arguments[1], - elem; - - if (isElem(html)) - elem = html; - else if (html.charCodeAt(0) === 60) - elem = toElem(html); - else - elem = document.createElement(html); - - if (!elem) - return null; - - if (attr) - for (var key in attr) - if (attr.hasOwnProperty(key) && attr[key] !== null && attr[key] !== undefined) - switch (typeof(attr[key])) { - case 'function': - elem.addEventListener(key, attr[key]); - break; - - case 'object': - elem.setAttribute(key, JSON.stringify(attr[key])); - break; - - default: - elem.setAttribute(key, attr[key]); - } - if (typeof(data) === 'function') - data = data(elem); - - if (isElem(data)) { - elem.appendChild(data); - } - else if (Array.isArray(data)) { - for (var i = 0; i < data.length; i++) - if (isElem(data[i])) - elem.appendChild(data[i]); - else - elem.appendChild(document.createTextNode('' + data[i])); - } - else if (data !== null && data !== undefined) { - elem.innerHTML = '' + data; - } - - return elem; -} +function isElem(e) { return L.dom.elem(e) } +function toElem(s) { return L.dom.parse(s) } +function matchesElem(node, selector) { return L.dom.matches(node, selector) } +function findParent(node, selector) { return L.dom.parent(node, selector) } +function E() { return L.dom.create.apply(L.dom, arguments) } if (typeof(window.CustomEvent) !== 'function') { function CustomEvent(event, params) { @@ -1561,11 +1431,10 @@ CBIDropdown = { var st = window.getComputedStyle(sb, null), ul = sb.querySelector('ul'), li = ul.querySelectorAll('li'), + fl = findParent(sb, '.cbi-value-field'), sel = ul.querySelector('[selected]'), rect = sb.getBoundingClientRect(), - h = sb.clientHeight - parseFloat(st.paddingTop) - parseFloat(st.paddingBottom), - mh = this.dropdown_items * h, - eh = Math.min(mh, li.length * h); + items = Math.min(this.dropdown_items, li.length); document.querySelectorAll('.cbi-dropdown[open]').forEach(function(s) { s.dispatchEvent(new CustomEvent('cbi-dropdown-close', {})); @@ -1573,22 +1442,54 @@ CBIDropdown = { sb.setAttribute('open', ''); + var pv = ul.cloneNode(true); + pv.classList.add('preview'); + + if (fl) + fl.classList.add('cbi-dropdown-open'); + if ('ontouchstart' in window) { - var scroll = document.documentElement.scrollTop, - vpWidth = Math.max(document.documentElement.clientWidth, window.innerWidth || 0), - vpHeight = Math.max(document.documentElement.clientHeight, window.innerHeight || 0); + var vpWidth = Math.max(document.documentElement.clientWidth, window.innerWidth || 0), + vpHeight = Math.max(document.documentElement.clientHeight, window.innerHeight || 0), + scrollFrom = window.pageYOffset, + scrollTo = scrollFrom + rect.top - vpHeight * 0.5, + start = null; - ul.style.top = h + 'px'; + ul.style.top = sb.offsetHeight + 'px'; ul.style.left = -rect.left + 'px'; ul.style.right = (rect.right - vpWidth) + 'px'; + ul.style.maxHeight = (vpHeight * 0.5) + 'px'; + ul.style.WebkitOverflowScrolling = 'touch'; + + var scrollStep = function(timestamp) { + if (!start) { + start = timestamp; + ul.scrollTop = sel ? Math.max(sel.offsetTop - sel.offsetHeight, 0) : 0; + } - window.scrollTo(0, (scroll + rect.top - vpHeight * 0.6)); + var duration = Math.max(timestamp - start, 1); + if (duration < 100) { + document.body.scrollTop = scrollFrom + (scrollTo - scrollFrom) * (duration / 100); + window.requestAnimationFrame(scrollStep); + } + else { + document.body.scrollTop = scrollTo; + } + }; + + window.requestAnimationFrame(scrollStep); } else { - ul.style.maxHeight = mh + 'px'; - ul.scrollTop = sel ? Math.max(sel.offsetTop - sel.offsetHeight, 0) : 0; + ul.style.maxHeight = '1px'; ul.style.top = ul.style.bottom = ''; - ul.style[((rect.top + rect.height + eh) > window.innerHeight) ? 'bottom' : 'top'] = rect.height + 'px'; + + window.requestAnimationFrame(function() { + var height = items * li[Math.max(0, li.length - 2)].offsetHeight; + + ul.scrollTop = sel ? Math.max(sel.offsetTop - sel.offsetHeight, 0) : 0; + ul.style[((rect.top + rect.height + height) > window.innerHeight) ? 'bottom' : 'top'] = rect.height + 'px'; + ul.style.maxHeight = height + 'px'; + }); } ul.querySelectorAll('[selected] input[type="checkbox"]').forEach(function(c) { @@ -1597,10 +1498,6 @@ CBIDropdown = { ul.classList.add('dropdown'); - var pv = ul.cloneNode(true); - pv.classList.remove('dropdown'); - pv.classList.add('preview'); - sb.insertBefore(pv, ul.nextElementSibling); li.forEach(function(l) { @@ -1618,7 +1515,8 @@ CBIDropdown = { var pv = sb.querySelector('ul.preview'), ul = sb.querySelector('ul.dropdown'), - li = ul.querySelectorAll('li'); + li = ul.querySelectorAll('li'), + fl = findParent(sb, '.cbi-value-field'); li.forEach(function(l) { l.removeAttribute('tabindex'); }); sb.lastElementChild.removeAttribute('tabindex'); @@ -1628,6 +1526,10 @@ CBIDropdown = { sb.style.width = sb.style.height = ''; ul.classList.remove('dropdown'); + ul.style.top = ul.style.bottom = ul.style.maxHeight = ''; + + if (fl) + fl.classList.remove('cbi-dropdown-open'); if (!no_focus) this.setFocus(sb, sb); @@ -1727,6 +1629,7 @@ CBIDropdown = { saveValues: function(sb, ul) { var sel = ul.querySelectorAll('li[selected]'), div = sb.lastElementChild, + strval = '', values = []; while (div.lastElementChild) @@ -1736,17 +1639,21 @@ CBIDropdown = { if (s.hasAttribute('placeholder')) return; + var v = { + text: s.innerText, + value: s.hasAttribute('data-value') ? s.getAttribute('data-value') : s.innerText, + element: s + }; + div.appendChild(E('input', { type: 'hidden', name: s.hasAttribute('name') ? s.getAttribute('name') : (sb.getAttribute('name') || ''), - value: s.hasAttribute('data-value') ? s.getAttribute('data-value') : s.innerText + value: v.value })); - values.push({ - text: s.innerText, - value: s.hasAttribute('data-value') ? s.getAttribute('data-value') : s.innerText, - element: s - }); + values.push(v); + + strval += strval.length ? ' ' + v.value : v.value; }); var detail = { @@ -1754,11 +1661,13 @@ CBIDropdown = { element: sb }; - if (this.mult) + if (this.multi) detail.values = values; else detail.value = values.length ? values[0] : null; + sb.value = strval; + sb.dispatchEvent(new CustomEvent('cbi-dropdown-change', { bubbles: true, detail: detail @@ -1815,14 +1724,13 @@ CBIDropdown = { createItems: function(sb, value) { var sbox = this, - val = (value || '').trim().split(/\s+/), + val = (value || '').trim(), ul = sb.querySelector('ul'); if (!sbox.multi) - val.length = Math.min(val.length, 1); - - if (val.length === 1 && val[0].length === 0) - val.length = 0; + val = val.length ? [ val ] : []; + else + val = val.length ? val.split(/\s+/) : []; val.forEach(function(item) { var new_item = null; @@ -1879,6 +1787,8 @@ CBIDropdown = { var li = findParent(ev.target, 'li'); if (li && li.parentNode.classList.contains('dropdown')) this.toggleItem(sb, li); + else if (li && li.parentNode.classList.contains('preview')) + this.closeDropdown(sb); } ev.preventDefault(); @@ -2202,67 +2112,26 @@ function cbi_update_table(table, data, placeholder) { }); } -var tooltipDiv = null, tooltipTimeout = null; - -function showTooltip(ev) { - if (!matchesElem(ev.target, '[data-tooltip]')) - return; - - if (tooltipTimeout !== null) { - window.clearTimeout(tooltipTimeout); - tooltipTimeout = null; - } - - var rect = ev.target.getBoundingClientRect(), - x = rect.left + window.pageXOffset, - y = rect.top + rect.height + window.pageYOffset; - - tooltipDiv.className = 'cbi-tooltip'; - tooltipDiv.innerHTML = '▲ '; - tooltipDiv.firstChild.data += ev.target.getAttribute('data-tooltip'); - - if (ev.target.hasAttribute('data-tooltip-style')) - tooltipDiv.classList.add(ev.target.getAttribute('data-tooltip-style')); - - if ((y + tooltipDiv.offsetHeight) > (window.innerHeight + window.pageYOffset)) { - y -= (tooltipDiv.offsetHeight + ev.target.offsetHeight); - tooltipDiv.firstChild.data = '▼ ' + tooltipDiv.firstChild.data.substr(2); - } - - tooltipDiv.style.top = y + 'px'; - tooltipDiv.style.left = x + 'px'; - tooltipDiv.style.opacity = 1; +function showModal(title, children) +{ + return L.showModal(title, children); } -function hideTooltip(ev) { - if (ev.target === tooltipDiv || ev.relatedTarget === tooltipDiv) - return; - - if (tooltipTimeout !== null) { - window.clearTimeout(tooltipTimeout); - tooltipTimeout = null; - } - - tooltipDiv.style.opacity = 0; - tooltipTimeout = window.setTimeout(function() { tooltipDiv.removeAttribute('style'); }, 250); +function hideModal() +{ + return L.hideModal(); } -document.addEventListener('DOMContentLoaded', function() { - tooltipDiv = document.body.appendChild(E('div', { 'class': 'cbi-tooltip' })); - - document.addEventListener('mouseover', showTooltip, true); - document.addEventListener('mouseout', hideTooltip, true); - document.addEventListener('focus', showTooltip, true); - document.addEventListener('blur', hideTooltip, true); +document.addEventListener('DOMContentLoaded', function() { document.addEventListener('validation-failure', function(ev) { if (ev.target === document.activeElement) - showTooltip(ev); + L.showTooltip(ev); }); document.addEventListener('validation-success', function(ev) { if (ev.target === document.activeElement) - hideTooltip(ev); + L.hideTooltip(ev); }); document.querySelectorAll('.table').forEach(cbi_update_table); diff --git a/modules/luci-base/htdocs/luci-static/resources/luci.js b/modules/luci-base/htdocs/luci-static/resources/luci.js new file mode 100644 index 0000000000..4cb8bf4e5d --- /dev/null +++ b/modules/luci-base/htdocs/luci-static/resources/luci.js @@ -0,0 +1,511 @@ +(function(window, document, undefined) { + var modalDiv = null, + tooltipDiv = null, + tooltipTimeout = null, + dummyElem = null, + domParser = null; + + LuCI.prototype = { + /* URL construction helpers */ + path: function(prefix, parts) { + var url = [ prefix || '' ]; + + for (var i = 0; i < parts.length; i++) + if (/^(?:[a-zA-Z0-9_.%,;-]+\/)*[a-zA-Z0-9_.%,;-]+$/.test(parts[i])) + url.push('/', parts[i]); + + if (url.length === 1) + url.push('/'); + + return url.join(''); + }, + + url: function() { + return this.path(this.env.scriptname, arguments); + }, + + resource: function() { + return this.path(this.env.resource, arguments); + }, + + location: function() { + return this.path(this.env.scriptname, this.env.requestpath); + }, + + + /* HTTP resource fetching */ + get: function(url, args, cb) { + return this.poll(0, url, args, cb, false); + }, + + post: function(url, args, cb) { + return this.poll(0, url, args, cb, true); + }, + + poll: function(interval, url, args, cb, post) { + var data = post ? { token: this.env.token } : null; + + if (!/^(?:\/|\S+:\/\/)/.test(url)) + url = this.url(url); + + if (typeof(args) === 'object' && args !== null) { + data = data || {}; + + for (var key in args) + if (args.hasOwnProperty(key)) + switch (typeof(args[key])) { + case 'string': + case 'number': + case 'boolean': + data[key] = args[key]; + break; + + case 'object': + data[key] = JSON.stringify(args[key]); + break; + } + } + + if (interval > 0) + return XHR.poll(interval, url, data, cb, post); + else if (post) + return XHR.post(url, data, cb); + else + return XHR.get(url, data, cb); + }, + + stop: function(entry) { XHR.stop(entry) }, + halt: function() { XHR.halt() }, + run: function() { XHR.run() }, + + + /* Modal dialog */ + showModal: function(title, children) { + var dlg = modalDiv.firstElementChild; + + dlg.setAttribute('class', 'modal'); + + this.dom.content(dlg, this.dom.create('h4', {}, title)); + this.dom.append(dlg, children); + + document.body.classList.add('modal-overlay-active'); + + return dlg; + }, + + hideModal: function() { + document.body.classList.remove('modal-overlay-active'); + }, + + + /* Tooltip */ + showTooltip: function(ev) { + var target = findParent(ev.target, '[data-tooltip]'); + + if (!target) + return; + + if (tooltipTimeout !== null) { + window.clearTimeout(tooltipTimeout); + tooltipTimeout = null; + } + + var rect = target.getBoundingClientRect(), + x = rect.left + window.pageXOffset, + y = rect.top + rect.height + window.pageYOffset; + + tooltipDiv.className = 'cbi-tooltip'; + tooltipDiv.innerHTML = '▲ '; + tooltipDiv.firstChild.data += target.getAttribute('data-tooltip'); + + if (target.hasAttribute('data-tooltip-style')) + tooltipDiv.classList.add(target.getAttribute('data-tooltip-style')); + + if ((y + tooltipDiv.offsetHeight) > (window.innerHeight + window.pageYOffset)) { + y -= (tooltipDiv.offsetHeight + target.offsetHeight); + tooltipDiv.firstChild.data = '▼ ' + tooltipDiv.firstChild.data.substr(2); + } + + tooltipDiv.style.top = y + 'px'; + tooltipDiv.style.left = x + 'px'; + tooltipDiv.style.opacity = 1; + + tooltipDiv.dispatchEvent(new CustomEvent('tooltip-open', { + bubbles: true, + detail: { target: target } + })); + }, + + hideTooltip: function(ev) { + if (ev.target === tooltipDiv || ev.relatedTarget === tooltipDiv || + tooltipDiv.contains(ev.target) || tooltipDiv.contains(ev.relatedTarget)) + return; + + if (tooltipTimeout !== null) { + window.clearTimeout(tooltipTimeout); + tooltipTimeout = null; + } + + tooltipDiv.style.opacity = 0; + tooltipTimeout = window.setTimeout(function() { tooltipDiv.removeAttribute('style'); }, 250); + + tooltipDiv.dispatchEvent(new CustomEvent('tooltip-close', { bubbles: true })); + }, + + + /* Widget helper */ + itemlist: function(node, items, separators) { + var children = []; + + if (!Array.isArray(separators)) + separators = [ separators || E('br') ]; + + for (var i = 0; i < items.length; i += 2) { + if (items[i+1] !== null && items[i+1] !== undefined) { + var sep = separators[(i/2) % separators.length], + cld = []; + + children.push(E('span', { class: 'nowrap' }, [ + items[i] ? E('strong', items[i] + ': ') : '', + items[i+1] + ])); + + if ((i+2) < items.length) + children.push(this.dom.elem(sep) ? sep.cloneNode(true) : sep); + } + } + + this.dom.content(node, children); + + return node; + } + }; + + /* Tabs */ + LuCI.prototype.tabs = { + init: function() { + var groups = [], prevGroup = null, currGroup = null; + + document.querySelectorAll('[data-tab]').forEach(function(tab) { + var parent = tab.parentNode; + + if (!parent.hasAttribute('data-tab-group')) + parent.setAttribute('data-tab-group', groups.length); + + currGroup = +parent.getAttribute('data-tab-group'); + + if (currGroup !== prevGroup) { + prevGroup = currGroup; + + if (!groups[currGroup]) + groups[currGroup] = []; + } + + groups[currGroup].push(tab); + }); + + for (var i = 0; i < groups.length; i++) + this.initTabGroup(groups[i]); + + document.addEventListener('dependency-update', this.updateTabs.bind(this)); + + this.updateTabs(); + + if (!groups.length) + this.setActiveTabId(-1, -1); + }, + + initTabGroup: function(panes) { + if (!Array.isArray(panes) || panes.length === 0) + return; + + var menu = E('ul', { 'class': 'cbi-tabmenu' }), + group = panes[0].parentNode, + groupId = +group.getAttribute('data-tab-group'), + selected = null; + + for (var i = 0, pane; pane = panes[i]; i++) { + var name = pane.getAttribute('data-tab'), + title = pane.getAttribute('data-tab-title'), + active = pane.getAttribute('data-tab-active') === 'true'; + + menu.appendChild(E('li', { + 'class': active ? 'cbi-tab' : 'cbi-tab-disabled', + 'data-tab': name + }, E('a', { + 'href': '#', + 'click': this.switchTab.bind(this) + }, title))); + + if (active) + selected = i; + } + + group.parentNode.insertBefore(menu, group); + + if (selected === null) { + selected = this.getActiveTabId(groupId); + + if (selected < 0 || selected >= panes.length) + selected = 0; + + menu.childNodes[selected].classList.add('cbi-tab'); + menu.childNodes[selected].classList.remove('cbi-tab-disabled'); + panes[selected].setAttribute('data-tab-active', 'true'); + + this.setActiveTabId(groupId, selected); + } + }, + + getActiveTabState: function() { + var page = document.body.getAttribute('data-page'); + + try { + var val = JSON.parse(window.sessionStorage.getItem('tab')); + if (val.page === page && Array.isArray(val.groups)) + return val; + } + catch(e) {} + + window.sessionStorage.removeItem('tab'); + return { page: page, groups: [] }; + }, + + getActiveTabId: function(groupId) { + return +this.getActiveTabState().groups[groupId] || 0; + }, + + setActiveTabId: function(groupId, tabIndex) { + try { + var state = this.getActiveTabState(); + state.groups[groupId] = tabIndex; + + window.sessionStorage.setItem('tab', JSON.stringify(state)); + } + catch (e) { return false; } + + return true; + }, + + updateTabs: function(ev) { + document.querySelectorAll('[data-tab-title]').forEach(function(pane) { + var menu = pane.parentNode.previousElementSibling, + tab = menu.querySelector('[data-tab="%s"]'.format(pane.getAttribute('data-tab'))), + n_errors = pane.querySelectorAll('.cbi-input-invalid').length; + + if (!pane.firstElementChild) { + tab.style.display = 'none'; + tab.classList.remove('flash'); + } + else if (tab.style.display === 'none') { + tab.style.display = ''; + requestAnimationFrame(function() { tab.classList.add('flash') }); + } + + if (n_errors) { + tab.setAttribute('data-errors', n_errors); + tab.setAttribute('data-tooltip', _('%d invalid field(s)').format(n_errors)); + tab.setAttribute('data-tooltip-style', 'error'); + } + else { + tab.removeAttribute('data-errors'); + tab.removeAttribute('data-tooltip'); + } + }); + }, + + switchTab: function(ev) { + var tab = ev.target.parentNode, + name = tab.getAttribute('data-tab'), + menu = tab.parentNode, + group = menu.nextElementSibling, + groupId = +group.getAttribute('data-tab-group'), + index = 0; + + ev.preventDefault(); + + if (!tab.classList.contains('cbi-tab-disabled')) + return; + + menu.querySelectorAll('[data-tab]').forEach(function(tab) { + tab.classList.remove('cbi-tab'); + tab.classList.remove('cbi-tab-disabled'); + tab.classList.add( + tab.getAttribute('data-tab') === name ? 'cbi-tab' : 'cbi-tab-disabled'); + }); + + group.childNodes.forEach(function(pane) { + if (L.dom.matches(pane, '[data-tab]')) { + if (pane.getAttribute('data-tab') === name) { + pane.setAttribute('data-tab-active', 'true'); + L.tabs.setActiveTabId(groupId, index); + } + else { + pane.setAttribute('data-tab-active', 'false'); + } + + index++; + } + }); + } + }; + + /* DOM manipulation */ + LuCI.prototype.dom = { + elem: function(e) { + return (typeof(e) === 'object' && e !== null && 'nodeType' in e); + }, + + parse: function(s) { + var elem; + + try { + domParser = domParser || new DOMParser(); + elem = domParser.parseFromString(s, 'text/html').body.firstChild; + } + catch(e) {} + + if (!elem) { + try { + dummyElem = dummyElem || document.createElement('div'); + dummyElem.innerHTML = s; + elem = dummyElem.firstChild; + } + catch (e) {} + } + + return elem || null; + }, + + matches: function(node, selector) { + var m = this.elem(node) ? node.matches || node.msMatchesSelector : null; + return m ? m.call(node, selector) : false; + }, + + parent: function(node, selector) { + if (this.elem(node) && node.closest) + return node.closest(selector); + + while (this.elem(node)) + if (this.matches(node, selector)) + return node; + else + node = node.parentNode; + + return null; + }, + + append: function(node, children) { + if (!this.elem(node)) + return null; + + if (Array.isArray(children)) { + for (var i = 0; i < children.length; i++) + if (this.elem(children[i])) + node.appendChild(children[i]); + else if (children !== null && children !== undefined) + node.appendChild(document.createTextNode('' + children[i])); + + return node.lastChild; + } + else if (typeof(children) === 'function') { + return this.append(node, children(node)); + } + else if (this.elem(children)) { + return node.appendChild(children); + } + else if (children !== null && children !== undefined) { + node.innerHTML = '' + children; + return node.lastChild; + } + + return null; + }, + + content: function(node, children) { + if (!this.elem(node)) + return null; + + while (node.firstChild) + node.removeChild(node.firstChild); + + return this.append(node, children); + }, + + attr: function(node, key, val) { + if (!this.elem(node)) + return null; + + var attr = null; + + if (typeof(key) === 'object' && key !== null) + attr = key; + else if (typeof(key) === 'string') + attr = {}, attr[key] = val; + + for (key in attr) { + if (!attr.hasOwnProperty(key) || attr[key] === null || attr[key] === undefined) + continue; + + switch (typeof(attr[key])) { + case 'function': + node.addEventListener(key, attr[key]); + break; + + case 'object': + node.setAttribute(key, JSON.stringify(attr[key])); + break; + + default: + node.setAttribute(key, attr[key]); + } + } + }, + + create: function() { + var html = arguments[0], + attr = (arguments[1] instanceof Object && !Array.isArray(arguments[1])) ? arguments[1] : null, + data = attr ? arguments[2] : arguments[1], + elem; + + if (this.elem(html)) + elem = html; + else if (html.charCodeAt(0) === 60) + elem = this.parse(html); + else + elem = document.createElement(html); + + if (!elem) + return null; + + this.attr(elem, attr); + this.append(elem, data); + + return elem; + } + }; + + /* Setup */ + LuCI.prototype.setupDOM = function(ev) { + this.tabs.init(); + }; + + function LuCI(env) { + this.env = env; + + modalDiv = document.body.appendChild( + this.dom.create('div', { id: 'modal_overlay' }, + this.dom.create('div', { class: 'modal', role: 'dialog', 'aria-modal': true }))); + + tooltipDiv = document.body.appendChild(this.dom.create('div', { class: 'cbi-tooltip' })); + + document.addEventListener('mouseover', this.showTooltip.bind(this), true); + document.addEventListener('mouseout', this.hideTooltip.bind(this), true); + document.addEventListener('focus', this.showTooltip.bind(this), true); + document.addEventListener('blur', this.hideTooltip.bind(this), true); + + document.addEventListener('DOMContentLoaded', this.setupDOM.bind(this)); + } + + window.LuCI = LuCI; +})(window, document); diff --git a/modules/luci-base/htdocs/luci-static/resources/xhr.js b/modules/luci-base/htdocs/luci-static/resources/xhr.js index 25a90e7254..8292fcdb6c 100644 --- a/modules/luci-base/htdocs/luci-static/resources/xhr.js +++ b/modules/luci-base/htdocs/luci-static/resources/xhr.js @@ -1,24 +1,65 @@ /* * xhr.js - XMLHttpRequest helper class - * (c) 2008-2010 Jo-Philipp Wich + * (c) 2008-2018 Jo-Philipp Wich <jo@mein.io> */ -XHR = function() -{ - this.reinit = function() - { - if (window.XMLHttpRequest) { - this._xmlHttp = new XMLHttpRequest(); +XHR.prototype = { + _encode: function(obj) { + obj = obj ? obj : { }; + obj['_'] = Math.random(); + + if (typeof obj == 'object') { + var code = ''; + var self = this; + + for (var k in obj) + code += (code ? '&' : '') + + k + '=' + encodeURIComponent(obj[k]); + + return code; } - else if (window.ActiveXObject) { - this._xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); + + return obj; + }, + + _response: function(callback, ts) { + if (this._xmlHttp.readyState !== 4) + return; + + var status = this._xmlHttp.status, + login = this._xmlHttp.getResponseHeader("X-LuCI-Login-Required"), + type = this._xmlHttp.getResponseHeader("Content-Type"), + json = null; + + if (status === 403 && login === 'yes') { + XHR.halt(); + + showModal(_('Session expired'), [ + E('div', { class: 'alert-message warning' }, + _('A new login is required since the authentication session expired.')), + E('div', { class: 'right' }, + E('div', { + class: 'btn primary', + click: function() { + var loc = window.location; + window.location = loc.protocol + '//' + loc.host + loc.pathname + loc.search; + } + }, _('To login…'))) + ]); } - else { - alert("xhr.js: XMLHttpRequest is not supported by this browser!"); + else if (type && type.toLowerCase().match(/^application\/json\b/)) { + try { + json = JSON.parse(this._xmlHttp.responseText); + } + catch(e) { + json = null; + } } - } - this.busy = function() { + callback(this._xmlHttp, json, Date.now() - ts); + }, + + busy: function() { if (!this._xmlHttp) return false; @@ -32,20 +73,18 @@ XHR = function() default: return false; } - } + }, - this.abort = function() { + abort: function() { if (this.busy()) this._xmlHttp.abort(); - } + }, - this.get = function(url,data,callback,timeout) - { - this.reinit(); + get: function(url, data, callback, timeout) { + this._xmlHttp = new XMLHttpRequest(); - var ts = Date.now(); - var xhr = this._xmlHttp; - var code = this._encode(data); + var xhr = this._xmlHttp, + code = this._encode(data); url = location.protocol + '//' + location.host + url; @@ -60,83 +99,51 @@ XHR = function() if (!isNaN(timeout)) xhr.timeout = timeout; - xhr.onreadystatechange = function() - { - if (xhr.readyState == 4) { - var json = null; - if (xhr.getResponseHeader("Content-Type") == "application/json") { - try { json = JSON.parse(xhr.responseText); } - catch(e) { json = null; } - } - - callback(xhr, json, Date.now() - ts); - } - } - + xhr.onreadystatechange = this._response.bind(this, callback, Date.now()); xhr.send(null); - } - - this.post = function(url,data,callback,timeout) - { - this.reinit(); + }, - var ts = Date.now(); - var xhr = this._xmlHttp; - var code = this._encode(data); + post: function(url, data, callback, timeout) { + this._xmlHttp = new XMLHttpRequest(); - xhr.onreadystatechange = function() - { - if (xhr.readyState == 4) { - var json = null; - if (xhr.getResponseHeader("Content-Type") == "application/json") { - try { json = JSON.parse(xhr.responseText); } - catch(e) { json = null; } - } - - callback(xhr, json, Date.now() - ts); - } - } + var xhr = this._xmlHttp, + code = this._encode(data); xhr.open('POST', url, true); if (!isNaN(timeout)) xhr.timeout = timeout; + xhr.onreadystatechange = this._response.bind(this, callback, Date.now()); xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); xhr.send(code); - } + }, - this.cancel = function() - { - this._xmlHttp.onreadystatechange = function(){}; + cancel: function() { + this._xmlHttp.onreadystatechange = function() {}; this._xmlHttp.abort(); - } + }, - this.send_form = function(form,callback,extra_values) - { + send_form: function(form, callback, extra_values) { var code = ''; - for (var i = 0; i < form.elements.length; i++) - { + for (var i = 0; i < form.elements.length; i++) { var e = form.elements[i]; - if (e.options) - { + if (e.options) { code += (code ? '&' : '') + form.elements[i].name + '=' + encodeURIComponent( e.options[e.selectedIndex].value ); } - else if (e.length) - { + else if (e.length) { for (var j = 0; j < e.length; j++) if (e[j].name) { code += (code ? '&' : '') + e[j].name + '=' + encodeURIComponent(e[j].value); } } - else - { + else { code += (code ? '&' : '') + e.name + '=' + encodeURIComponent(e.value); } @@ -147,46 +154,25 @@ XHR = function() code += (code ? '&' : '') + key + '=' + encodeURIComponent(extra_values[key]); - return( - (form.method == 'get') - ? this.get(form.getAttribute('action'), code, callback) - : this.post(form.getAttribute('action'), code, callback) - ); - } - - this._encode = function(obj) - { - obj = obj ? obj : { }; - obj['_'] = Math.random(); - - if (typeof obj == 'object') - { - var code = ''; - var self = this; - - for (var k in obj) - code += (code ? '&' : '') + - k + '=' + encodeURIComponent(obj[k]); - - return code; - } - - return obj; + return (form.method == 'get' + ? this.get(form.getAttribute('action'), code, callback) + : this.post(form.getAttribute('action'), code, callback)); } } -XHR.get = function(url, data, callback) -{ +XHR.get = function(url, data, callback) { (new XHR()).get(url, data, callback); } -XHR.poll = function(interval, url, data, callback, post) -{ +XHR.post = function(url, data, callback) { + (new XHR()).post(url, data, callback); +} + +XHR.poll = function(interval, url, data, callback, post) { if (isNaN(interval) || interval < 1) interval = 5; - if (!XHR._q) - { + if (!XHR._q) { XHR._t = 0; XHR._q = [ ]; XHR._r = function() { @@ -213,8 +199,7 @@ XHR.poll = function(interval, url, data, callback, post) return e; } -XHR.stop = function(e) -{ +XHR.stop = function(e) { for (var i = 0; XHR._q && XHR._q[i]; i++) { if (XHR._q[i] === e) { e.xhr.cancel(); @@ -226,10 +211,8 @@ XHR.stop = function(e) return false; } -XHR.halt = function() -{ - if (XHR._i) - { +XHR.halt = function() { + if (XHR._i) { /* show & set poll indicator */ try { document.getElementById('xhr_poll_status').style.display = ''; @@ -242,10 +225,8 @@ XHR.halt = function() } } -XHR.run = function() -{ - if (XHR._r && !XHR._i) - { +XHR.run = function() { + if (XHR._r && !XHR._i) { /* show & set poll indicator */ try { document.getElementById('xhr_poll_status').style.display = ''; @@ -260,9 +241,10 @@ XHR.run = function() } } -XHR.running = function() -{ +XHR.running = function() { return !!(XHR._r && XHR._i); } +function XHR() {} + document.addEventListener('DOMContentLoaded', XHR.run); diff --git a/modules/luci-base/luasrc/cbi/datatypes.lua b/modules/luci-base/luasrc/cbi/datatypes.lua index 99113e0b7a..b4206e98df 100644 --- a/modules/luci-base/luasrc/cbi/datatypes.lua +++ b/modules/luci-base/luasrc/cbi/datatypes.lua @@ -460,3 +460,7 @@ function dateyyyymmdd(val) end return false end + +function unique(val) + return true +end diff --git a/modules/luci-base/luasrc/controller/admin/index.lua b/modules/luci-base/luasrc/controller/admin/index.lua index 39004c6760..1f7db0cb38 100644 --- a/modules/luci-base/luasrc/controller/admin/index.lua +++ b/modules/luci-base/luasrc/controller/admin/index.lua @@ -80,6 +80,9 @@ function index() if has_wifi then page = entry({"admin", "wireless_assoclist"}, call("wifi_assoclist"), nil) page.leaf = true + + page = entry({"admin", "wireless_deauth"}, post("wifi_deauth"), nil) + page.leaf = true end page = entry({"admin", "translations"}, call("action_translations"), nil) @@ -144,3 +147,18 @@ function wifi_assoclist() luci.http.prepare_content("application/json") luci.http.write_json(s.wifi_assoclist()) end + +function wifi_deauth() + local iface = luci.http.formvalue("iface") + local bssid = luci.http.formvalue("bssid") + + if iface and bssid then + luci.util.ubus("hostapd.%s" % iface, "del_client", { + addr = bssid, + deauth = true, + reason = 5, + ban_time = 60000 + }) + end + luci.http.status(200, "OK") +end diff --git a/modules/luci-base/luasrc/dispatcher.lua b/modules/luci-base/luasrc/dispatcher.lua index 1e610e7489..d85cb58243 100644 --- a/modules/luci-base/luasrc/dispatcher.lua +++ b/modules/luci-base/luasrc/dispatcher.lua @@ -40,6 +40,28 @@ function build_url(...) return table.concat(url, "") end +function _ordered_children(node) + local name, child, children = nil, nil, {} + + for name, child in pairs(node.nodes) do + children[#children+1] = { + name = name, + node = child, + order = child.order or 100 + } + end + + table.sort(children, function(a, b) + if a.order == b.order then + return a.name < b.name + else + return a.order < b.order + end + end) + + return children +end + function node_visible(node) if node then return not ( @@ -55,15 +77,10 @@ end function node_childs(node) local rv = { } if node then - local k, v - for k, v in util.spairs(node.nodes, - function(a, b) - return (node.nodes[a].order or 100) - < (node.nodes[b].order or 100) - end) - do - if node_visible(v) then - rv[#rv+1] = k + local _, child + for _, child in ipairs(_ordered_children(node)) do + if node_visible(child.node) then + rv[#rv+1] = child.name end end end @@ -417,6 +434,7 @@ function dispatch(request) context.path = {} http.status(403, "Forbidden") + http.header("X-LuCI-Login-Required", "yes") tmpl.render(track.sysauth_template or "sysauth", { duser = default_user, fuser = user @@ -433,6 +451,7 @@ function dispatch(request) if not sid or not sdat then http.status(403, "Forbidden") + http.header("X-LuCI-Login-Required", "yes") return end @@ -593,11 +612,9 @@ function createtree() local ctx = context local tree = {nodes={}, inreq=true} - local modi = {} ctx.treecache = setmetatable({}, {__mode="v"}) ctx.tree = tree - ctx.modifiers = modi local scope = setmetatable({}, {__index = luci.dispatcher}) @@ -607,28 +624,9 @@ function createtree() v() end - local function modisort(a,b) - return modi[a].order < modi[b].order - end - - for _, v in util.spairs(modi, modisort) do - scope._NAME = v.module - setfenv(v.func, scope) - v.func() - end - return tree end -function modifier(func, order) - context.modifiers[#context.modifiers+1] = { - func = func, - order = order or 0, - module - = getfenv(2)._NAME - } -end - function assign(path, clone, title, order) local obj = node(unpack(path)) obj.nodes = nil @@ -718,24 +716,7 @@ end -- Subdispatchers -- function _find_eligible_node(root, prefix, deep, types, descend) - local _, cur_name, cur_node - local childs = { } - - for cur_name, cur_node in pairs(root.nodes) do - childs[#childs+1] = { - node = cur_node, - name = cur_name, - order = cur_node.order or 100 - } - end - - table.sort(childs, function(a, b) - if a.order == b.order then - return a.name < b.name - else - return a.order < b.order - end - end) + local children = _ordered_children(root) if not root.leaf and deep ~= nil then local sub_path = { unpack(prefix) } @@ -744,10 +725,11 @@ function _find_eligible_node(root, prefix, deep, types, descend) deep = nil end - for _, cur_node in ipairs(childs) do - sub_path[#prefix+1] = cur_node.name + local _, child + for _, child in ipairs(children) do + sub_path[#prefix+1] = child.name - local res_path = _find_eligible_node(cur_node.node, sub_path, + local res_path = _find_eligible_node(child.node, sub_path, deep, types, true) if res_path then diff --git a/modules/luci-base/luasrc/dispatcher.luadoc b/modules/luci-base/luasrc/dispatcher.luadoc index f26256953a..a77f8d8b07 100644 --- a/modules/luci-base/luasrc/dispatcher.luadoc +++ b/modules/luci-base/luasrc/dispatcher.luadoc @@ -82,15 +82,6 @@ Build the index before if it does not exist yet. ]] ---[[ -Register a tree modifier. - -@class function -@name modifier -@param func Modifier function -@param order Modifier order value (optional) -]] - ----[[ Clone a node of the dispatching tree to another position. @class function diff --git a/modules/luci-base/luasrc/model/ipkg.lua b/modules/luci-base/luasrc/model/ipkg.lua deleted file mode 100644 index e27ea52895..0000000000 --- a/modules/luci-base/luasrc/model/ipkg.lua +++ /dev/null @@ -1,247 +0,0 @@ --- Copyright 2008-2011 Jo-Philipp Wich <jow@openwrt.org> --- Copyright 2008 Steven Barth <steven@midlink.org> --- Licensed to the public under the Apache License 2.0. - -local os = require "os" -local io = require "io" -local fs = require "nixio.fs" -local util = require "luci.util" - -local type = type -local pairs = pairs -local error = error -local table = table - -local ipkg = "opkg --force-removal-of-dependent-packages --force-overwrite --nocase" -local icfg = "/etc/opkg.conf" - -module "luci.model.ipkg" - - --- Internal action function -local function _action(cmd, ...) - local cmdline = { ipkg, cmd } - - local k, v - for k, v in pairs({...}) do - cmdline[#cmdline+1] = util.shellquote(v) - end - - local c = "%s >/tmp/opkg.stdout 2>/tmp/opkg.stderr" % table.concat(cmdline, " ") - local r = os.execute(c) - local e = fs.readfile("/tmp/opkg.stderr") - local o = fs.readfile("/tmp/opkg.stdout") - - fs.unlink("/tmp/opkg.stderr") - fs.unlink("/tmp/opkg.stdout") - - return r, o or "", e or "" -end - --- Internal parser function -local function _parselist(rawdata) - if type(rawdata) ~= "function" then - error("OPKG: Invalid rawdata given") - end - - local data = {} - local c = {} - local l = nil - - for line in rawdata do - if line:sub(1, 1) ~= " " then - local key, val = line:match("(.-): ?(.*)%s*") - - if key and val then - if key == "Package" then - c = {Package = val} - data[val] = c - elseif key == "Status" then - c.Status = {} - for j in val:gmatch("([^ ]+)") do - c.Status[j] = true - end - else - c[key] = val - end - l = key - end - else - -- Multi-line field - c[l] = c[l] .. "\n" .. line - end - end - - return data -end - --- Internal lookup function -local function _lookup(cmd, pkg) - local cmdline = { ipkg, cmd } - if pkg then - cmdline[#cmdline+1] = util.shellquote(pkg) - end - - -- OPKG sometimes kills the whole machine because it sucks - -- Therefore we have to use a sucky approach too and use - -- tmpfiles instead of directly reading the output - local tmpfile = os.tmpname() - os.execute("%s >%s 2>/dev/null" %{ table.concat(cmdline, " "), tmpfile }) - - local data = _parselist(io.lines(tmpfile)) - os.remove(tmpfile) - return data -end - - -function info(pkg) - return _lookup("info", pkg) -end - -function status(pkg) - return _lookup("status", pkg) -end - -function install(...) - return _action("install", ...) -end - -function installed(pkg) - local p = status(pkg)[pkg] - return (p and p.Status and p.Status.installed) -end - -function remove(...) - return _action("remove", ...) -end - -function update() - return _action("update") -end - -function upgrade() - return _action("upgrade") -end - --- List helper -local function _list(action, pat, cb) - local cmdline = { ipkg, action } - if pat then - cmdline[#cmdline+1] = util.shellquote(pat) - end - - local fd = io.popen(table.concat(cmdline, " ")) - if fd then - local name, version, sz, desc - while true do - local line = fd:read("*l") - if not line then break end - - name, version, sz, desc = line:match("^(.-) %- (.-) %- (.-) %- (.+)") - - if not name then - name, version, sz = line:match("^(.-) %- (.-) %- (.+)") - desc = "" - end - - if name and version then - if #version > 26 then - version = version:sub(1,21) .. ".." .. version:sub(-3,-1) - end - - cb(name, version, sz, desc) - end - - name = nil - version = nil - sz = nil - desc = nil - end - - fd:close() - end -end - -function list_all(pat, cb) - _list("list --size", pat, cb) -end - -function list_installed(pat, cb) - _list("list_installed --size", pat, cb) -end - -function find(pat, cb) - _list("find --size", pat, cb) -end - - -function overlay_root() - local od = "/" - local fd = io.open(icfg, "r") - - if fd then - local ln - - repeat - ln = fd:read("*l") - if ln and ln:match("^%s*option%s+overlay_root%s+") then - od = ln:match("^%s*option%s+overlay_root%s+(%S+)") - - local s = fs.stat(od) - if not s or s.type ~= "dir" then - od = "/" - end - - break - end - until not ln - - fd:close() - end - - return od -end - -function compare_versions(ver1, comp, ver2) - if not ver1 or not ver2 - or not comp or not (#comp > 0) then - error("Invalid parameters") - return nil - end - -- correct compare string - if comp == "<>" or comp == "><" or comp == "!=" or comp == "~=" then comp = "~=" - elseif comp == "<=" or comp == "<" or comp == "=<" then comp = "<=" - elseif comp == ">=" or comp == ">" or comp == "=>" then comp = ">=" - elseif comp == "=" or comp == "==" then comp = "==" - elseif comp == "<<" then comp = "<" - elseif comp == ">>" then comp = ">" - else - error("Invalid compare string") - return nil - end - - local av1 = util.split(ver1, "[%.%-]", nil, true) - local av2 = util.split(ver2, "[%.%-]", nil, true) - - local max = table.getn(av1) - if (table.getn(av1) < table.getn(av2)) then - max = table.getn(av2) - end - - for i = 1, max, 1 do - local s1 = av1[i] or "" - local s2 = av2[i] or "" - - -- first "not equal" found return true - if comp == "~=" and (s1 ~= s2) then return true end - -- first "lower" found return true - if (comp == "<" or comp == "<=") and (s1 < s2) then return true end - -- first "greater" found return true - if (comp == ">" or comp == ">=") and (s1 > s2) then return true end - -- not equal then return false - if (s1 ~= s2) then return false end - end - - -- all equal and not compare greater or lower then true - return not (comp == "<" or comp == ">") -end diff --git a/modules/luci-base/luasrc/model/ipkg.luadoc b/modules/luci-base/luasrc/model/ipkg.luadoc deleted file mode 100644 index 4e1548dda6..0000000000 --- a/modules/luci-base/luasrc/model/ipkg.luadoc +++ /dev/null @@ -1,125 +0,0 @@ ----[[ -LuCI OPKG call abstraction library -]] -module "luci.model.ipkg" - ----[[ -Return information about installed and available packages. - -@class function -@name info -@param pkg Limit output to a (set of) packages -@return Table containing package information -]] - ----[[ -Return the package status of one or more packages. - -@class function -@name status -@param pkg Limit output to a (set of) packages -@return Table containing package status information -]] - ----[[ -Install one or more packages. - -@class function -@name install -@param ... List of packages to install -@return Boolean indicating the status of the action -@return OPKG return code, STDOUT and STDERR -]] - ----[[ -Determine whether a given package is installed. - -@class function -@name installed -@param pkg Package -@return Boolean -]] - ----[[ -Remove one or more packages. - -@class function -@name remove -@param ... List of packages to install -@return Boolean indicating the status of the action -@return OPKG return code, STDOUT and STDERR -]] - ----[[ -Update package lists. - -@class function -@name update -@return Boolean indicating the status of the action -@return OPKG return code, STDOUT and STDERR -]] - ----[[ -Upgrades all installed packages. - -@class function -@name upgrade -@return Boolean indicating the status of the action -@return OPKG return code, STDOUT and STDERR -]] - ----[[ -List all packages known to opkg. - -@class function -@name list_all -@param pat Only find packages matching this pattern, nil lists all packages -@param cb Callback function invoked for each package, receives name, version and description as arguments -@return nothing -]] - ----[[ -List installed packages. - -@class function -@name list_installed -@param pat Only find packages matching this pattern, nil lists all packages -@param cb Callback function invoked for each package, receives name, version and description as arguments -@return nothing -]] - ----[[ -Find packages that match the given pattern. - -@class function -@name find -@param pat Find packages whose names or descriptions match this pattern, nil results in zero results -@param cb Callback function invoked for each patckage, receives name, version and description as arguments -@return nothing -]] - ----[[ -Determines the overlay root used by opkg. - -@class function -@name overlay_root -@return String containing the directory path of the overlay root. -]] - ----[[ -lua version of opkg compare-versions - -@class function -@name compare_versions -@param ver1 string version 1 -@param ver2 string version 2 -@param comp string compare versions using - "<=" or "<" lower-equal - ">" or ">=" greater-equal - "=" equal - "<<" lower - ">>" greater - "~=" not equal -@return Boolean indicating the status of the compare -]] - diff --git a/modules/luci-base/luasrc/model/network.lua b/modules/luci-base/luasrc/model/network.lua index 7f7397032f..49e1657aae 100644 --- a/modules/luci-base/luasrc/model/network.lua +++ b/modules/luci-base/luasrc/model/network.lua @@ -855,6 +855,14 @@ function get_status_by_address(self, addr) end end end + if s and s['ipv6-prefix-assignment'] then + local a + for _, a in ipairs(s['ipv6-prefix-assignment']) do + if a and a['local-address'] and a['local-address'].address == addr then + return net, s + end + end + end end end end diff --git a/modules/luci-base/luasrc/sys.lua b/modules/luci-base/luasrc/sys.lua index 1436a3a235..7e4a9d63cf 100644 --- a/modules/luci-base/luasrc/sys.lua +++ b/modules/luci-base/luasrc/sys.lua @@ -13,8 +13,8 @@ local luci = {} luci.util = require "luci.util" luci.ip = require "luci.ip" -local tonumber, ipairs, pairs, pcall, type, next, setmetatable, require, select = - tonumber, ipairs, pairs, pcall, type, next, setmetatable, require, select +local tonumber, ipairs, pairs, pcall, type, next, setmetatable, require, select, unpack = + tonumber, ipairs, pairs, pcall, type, next, setmetatable, require, select, unpack module "luci.sys" @@ -436,6 +436,96 @@ end process.signal = nixio.kill +local function xclose(fd) + if fd and fd:fileno() > 2 then + fd:close() + end +end + +function process.exec(command, stdout, stderr, nowait) + local out_r, out_w, err_r, err_w + if stdout then out_r, out_w = nixio.pipe() end + if stderr then err_r, err_w = nixio.pipe() end + + local pid = nixio.fork() + if pid == 0 then + nixio.chdir("/") + + local null = nixio.open("/dev/null", "w+") + if null then + nixio.dup(out_w or null, nixio.stdout) + nixio.dup(err_w or null, nixio.stderr) + nixio.dup(null, nixio.stdin) + xclose(out_w) + xclose(out_r) + xclose(err_w) + xclose(err_r) + xclose(null) + end + + nixio.exec(unpack(command)) + os.exit(-1) + end + + local _, pfds, rv = nil, {}, { code = -1, pid = pid } + + xclose(out_w) + xclose(err_w) + + if out_r then + pfds[#pfds+1] = { + fd = out_r, + cb = type(stdout) == "function" and stdout, + name = "stdout", + events = nixio.poll_flags("in", "err", "hup") + } + end + + if err_r then + pfds[#pfds+1] = { + fd = err_r, + cb = type(stderr) == "function" and stderr, + name = "stderr", + events = nixio.poll_flags("in", "err", "hup") + } + end + + while #pfds > 0 do + local nfds, err = nixio.poll(pfds, -1) + if not nfds and err ~= nixio.const.EINTR then + break + end + + local i + for i = #pfds, 1, -1 do + local rfd = pfds[i] + if rfd.revents > 0 then + local chunk, err = rfd.fd:read(4096) + if chunk and #chunk > 0 then + if rfd.cb then + rfd.cb(chunk) + else + rfd.buf = rfd.buf or {} + rfd.buf[#rfd.buf + 1] = chunk + end + else + table.remove(pfds, i) + if rfd.buf then + rv[rfd.name] = table.concat(rfd.buf, "") + end + rfd.fd:close() + end + end + end + end + + if not nowait then + _, _, rv.code = nixio.waitpid(pid) + end + + return rv +end + user = {} diff --git a/modules/luci-base/luasrc/sys.luadoc b/modules/luci-base/luasrc/sys.luadoc index 3c7f69c6e9..162650e7ac 100644 --- a/modules/luci-base/luasrc/sys.luadoc +++ b/modules/luci-base/luasrc/sys.luadoc @@ -272,6 +272,42 @@ Send a signal to a process identified by given pid. ]] ---[[ +Execute a process, optionally capturing stdio. + +Executes the process specified by the given argv vector, e.g. +`{ "/bin/sh", "-c", "echo 1" }` and waits for it to terminate unless a true +value has been passed for the "nowait" parameter. + +When a function value is passed for the stdout or stderr arguments, the passed +function is repeatedly called for each chunk read from the corresponding stdio +stream. The read data is passed as string containing at most 4096 bytes at a +time. + +When a true, non-function value is passed for the stdout or stderr arguments, +the data of the corresponding stdio stream is read into an internal string +buffer and returned as "stdout" or "stderr" field respectively in the result +table. + +When a true value is passed to the nowait parameter, the function does not +await process termination but returns as soon as all captured stdio streams +have been closed or - if no streams are captured - immediately after launching +the process. + +@class function +@name process.exec +@param commend Table containing the argv vector to execute +@param stdout Callback function or boolean to indicate capturing (optional) +@param stderr Callback function or boolean to indicate capturing (optional) +@param nowait Don't wait for process termination when true (optional) +@return Table containing at least the fields "code" which holds the exit + status of the invoked process or "-1" on error and "pid", which + contains the process id assigned to the spawned process. When + stdout and/or stderr capturing has been requested, it additionally + contains "stdout" and "stderr" fields respectively, holding the + captured stdio data as string. +]] + +---[[ LuCI system utilities / user related functions. @class module diff --git a/modules/luci-base/luasrc/view/cbi/apply_widget.htm b/modules/luci-base/luasrc/view/cbi/apply_widget.htm index 0df16e88c8..0f9667390e 100644 --- a/modules/luci-base/luasrc/view/cbi/apply_widget.htm +++ b/modules/luci-base/luasrc/view/cbi/apply_widget.htm @@ -1,49 +1,4 @@ <% export("cbi_apply_widget", function(redirect_ok, rollback_token) -%> -<style type="text/css"> - #cbi_apply_overlay { - position: absolute; - top: 0; - left: 0; - bottom: 0; - right: 0; - background: rgba(0, 0, 0, 0.7); - display: none; - z-index: 20000; - } - - #cbi_apply_overlay .alert-message { - position: relative; - top: 10%; - width: 60%; - margin: auto; - display: flex; - flex-wrap: wrap; - min-height: 32px; - align-items: center; - } - - #cbi_apply_overlay .alert-message > h4, - #cbi_apply_overlay .alert-message > p, - #cbi_apply_overlay .alert-message > div { - flex-basis: 100%; - } - - #cbi_apply_overlay .alert-message > img { - margin-right: 1em; - flex-basis: 32px; - } - - body.apply-overlay-active { - overflow: hidden; - height: 100vh; - } - - body.apply-overlay-active #cbi_apply_overlay { - display: block; - } -</style> - -<script type="text/javascript" src="<%=resource%>/cbi.js?v=git-18.138.59467-72fe5dd"></script> <script type="text/javascript">//<![CDATA[ var xhr = new XHR(), uci_apply_auth = { sid: '<%=luci.dispatcher.context.authsession%>', token: '<%=token%>' }, @@ -55,28 +10,22 @@ was_xhr_poll_running = false; function uci_status_message(type, content) { - var overlay = document.getElementById('cbi_apply_overlay') || document.body.appendChild(E('<div id="cbi_apply_overlay"><div class="alert-message"></div></div>')), - message = overlay.querySelector('.alert-message'); - - if (message && type) { - if (!message.classList.contains(type)) { - message.classList.remove('notice'); - message.classList.remove('warning'); - message.classList.add(type); - } + if (type) { + var message = showModal('', ''); + + message.classList.add('alert-message'); + DOMTokenList.prototype.add.apply(message.classList, type.split(/\s+/)); if (content) message.innerHTML = content; - document.body.classList.add('apply-overlay-active'); - if (!was_xhr_poll_running) { was_xhr_poll_running = XHR.running(); XHR.halt(); } } else { - document.body.classList.remove('apply-overlay-active'); + hideModal(); if (was_xhr_poll_running) XHR.run(); @@ -85,9 +34,8 @@ function uci_rollback(checked) { if (checked) { - uci_status_message('warning', - '<img src="<%=resource%>/icons/loading.gif" alt="" style="vertical-align:middle" /> ' + - '<%:Failed to confirm apply within %ds, waiting for rollback…%>'.format(uci_apply_rollback)); + uci_status_message('warning spinning', + '<p><%:Failed to confirm apply within %ds, waiting for rollback…%></p>'.format(uci_apply_rollback)); var call = function(r, data, duration) { if (r.status === 204) { @@ -126,6 +74,7 @@ var call = function(r, data, duration) { if (Date.now() >= deadline) { + window.clearTimeout(tt); uci_rollback(checked); return; } @@ -133,7 +82,7 @@ var indicator = document.querySelector('.uci_change_indicator'); if (indicator) indicator.style.display = 'none'; - uci_status_message('notice', '<%:Configuration has been applied.%>'); + uci_status_message('notice', '<p><%:Configuration has been applied.%></p>'); window.clearTimeout(tt); window.setTimeout(function() { @@ -156,9 +105,8 @@ var tick = function() { var now = Date.now(); - uci_status_message('notice', - '<img src="<%=resource%>/icons/loading.gif" alt="" style="vertical-align:middle" /> ' + - '<%:Waiting for configuration to be applied… %ds%>'.format(Math.max(Math.floor((deadline - Date.now()) / 1000), 0))); + uci_status_message('notice spinning', + '<p><%:Waiting for configuration to be applied… %ds%></p>'.format(Math.max(Math.floor((deadline - Date.now()) / 1000), 0))); if (now >= deadline) return; @@ -174,9 +122,7 @@ } function uci_apply(checked) { - uci_status_message('notice', - '<img src="<%=resource%>/icons/loading.gif" alt="" style="vertical-align:middle" /> ' + - '<%:Starting configuration apply…%>'); + uci_status_message('notice spinning', '<p><%:Starting configuration apply…%></p>'); xhr.post('<%=url("admin/uci")%>/' + (checked ? 'apply_rollback' : 'apply_unchecked'), uci_apply_auth, function(r, tok) { if (r.status === (checked ? 200 : 204)) { @@ -186,7 +132,7 @@ uci_confirm(checked, Date.now() + uci_apply_rollback * 1000); } else if (checked && r.status === 204) { - uci_status_message('notice', '<%:There are no changes to apply.%>'); + uci_status_message('notice', '<p><%:There are no changes to apply.%></p>'); window.setTimeout(function() { <% if redirect_ok then -%> location.href = decodeURIComponent('<%=luci.util.urlencode(redirect_ok)%>'); @@ -196,20 +142,18 @@ }, uci_apply_display * 1000); } else { - uci_status_message('warning', '<%_Apply request failed with status <code>%h</code>%>'.format(r.responseText || r.statusText || r.status)); + uci_status_message('warning', '<p><%_Apply request failed with status <code>%h</code>%></p>'.format(r.responseText || r.statusText || r.status)); window.setTimeout(function() { uci_status_message(false); }, uci_apply_display * 1000); } }); } function uci_revert() { - uci_status_message('notice', - '<img src="<%=resource%>/icons/loading.gif" alt="" style="vertical-align:middle" /> ' + - '<%:Reverting configuration…%>'); + uci_status_message('notice spinning', '<p><%:Reverting configuration…%></p>'); xhr.post('<%=url("admin/uci/revert")%>', uci_apply_auth, function(r) { if (r.status === 200) { - uci_status_message('notice', '<%:Changes have been reverted.%>'); + uci_status_message('notice', '<p><%:Changes have been reverted.%></p>'); window.setTimeout(function() { <% if redirect_ok then -%> location.href = decodeURIComponent('<%=luci.util.urlencode(redirect_ok)%>'); @@ -219,7 +163,7 @@ }, uci_apply_display * 1000); } else { - uci_status_message('warning', '<%_Revert request failed with status <code>%h</code>%>'.format(r.statusText || r.status)); + uci_status_message('warning', '<p><%_Revert request failed with status <code>%h</code>%></p>'.format(r.statusText || r.status)); window.setTimeout(function() { uci_status_message(false); }, uci_apply_display * 1000); } }); diff --git a/modules/luci-base/luasrc/view/cbi/browser.htm b/modules/luci-base/luasrc/view/cbi/browser.htm index 2abc975e8d..362c40bec1 100644 --- a/modules/luci-base/luasrc/view/cbi/browser.htm +++ b/modules/luci-base/luasrc/view/cbi/browser.htm @@ -1,4 +1,4 @@ -<% local v = self:cfgvalue(section) -%> +<% local v = self:cfgvalue(section) or self.default -%> <%+cbi/valueheader%> <input class="cbi-input-text" type="text"<%= attr("value", v) .. attr("name", cbid) .. attr("id", cbid) %> /> <script type="text/javascript"> diff --git a/modules/luci-base/luasrc/view/cbi/dynlist.htm b/modules/luci-base/luasrc/view/cbi/dynlist.htm index 4d0b50942b..fa7dbdb418 100644 --- a/modules/luci-base/luasrc/view/cbi/dynlist.htm +++ b/modules/luci-base/luasrc/view/cbi/dynlist.htm @@ -6,22 +6,8 @@ self.keylist, self.vallist, self.datatype, self.optional or self.rmempty })) .. - + attr("data-values", luci.util.serialize_json(self:cfgvalue(section))) .. ifattr(self.size, "data-size", self.size) .. ifattr(self.placeholder, "data-placeholder", self.placeholder) -%>> -<% - local vals = self:cfgvalue(section) or {} - for i=1, #vals + 1 do - local val = vals[i] - if (val and #val > 0) or (i == 1) then -%> - <input class="cbi-input-text" value="<%=pcdata(val)%>" data-update="change" type="text"<%= - attr("id", cbid .. "." .. i) .. - attr("name", cbid) .. - ifattr(self.size, "size") .. - ifattr(i == 1 and self.placeholder, "placeholder", self.placeholder) - %> /><br /> -<% end end %> -</div> +%>></div> <%+cbi/valuefooter%> diff --git a/modules/luci-base/luasrc/view/cbi/map.htm b/modules/luci-base/luasrc/view/cbi/map.htm index d65a161673..cda4d3530c 100644 --- a/modules/luci-base/luasrc/view/cbi/map.htm +++ b/modules/luci-base/luasrc/view/cbi/map.htm @@ -3,25 +3,25 @@ <%- end end -%> <div class="cbi-map" id="cbi-<%=self.config%>"> - <% if self.title and #self.title > 0 then %><h2 name="content"><%=self.title%></h2><% end %> - <% if self.description and #self.description > 0 then %><div class="cbi-map-descr"><%=self.description%></div><% end %> + <% if self.title and #self.title > 0 then %> + <h2 name="content"><%=self.title%></h2> + <% end %> + <% if self.description and #self.description > 0 then %> + <div class="cbi-map-descr"><%=self.description%></div> + <% end %> <% if self.tabbed then %> - <ul class="cbi-tabmenu map"> - <%- self.selected_tab = luci.http.formvalue("tab.m-" .. self.config) %> - <% for i, section in ipairs(self.children) do %> - <%- if not self.selected_tab then self.selected_tab = section.sectiontype end %> - <li id="tab.m-<%=self.config%>.<%=section.section or section.sectiontype%>" class="cbi-tab<%=(section.sectiontype == self.selected_tab) and '' or '-disabled'%>"> - <a onclick="this.blur(); return cbi_t_switch('m-<%=self.config%>', '<%=section.section or section.sectiontype%>')" href="<%=REQUEST_URI%>?tab.m-<%=self.config%>=<%=section.section or section.sectiontype%>"><%=section.title or section.section or section.sectiontype %></a> - <% if section.sectiontype == self.selected_tab then %><input type="hidden" id="tab.m-<%=self.config%>" name="tab.m-<%=self.config%>" value="<%=section.section or section.sectiontype%>" /><% end %> - </li> + <div> + <% for i, section in ipairs(self.children) do + tab = section.section or section.sectiontype %> + <div class="cbi-tabcontainer"<%= + attr("id", "container.m-%s.%s" %{ self.config, tab }) .. + attr("data-tab", tab) .. + attr("data-tab-title", section.title or tab) + %>> + <% section:render() %> + </div> <% end %> - </ul> - <% for i, section in ipairs(self.children) do %> - <div class="cbi-tabcontainer" id="container.m-<%=self.config%>.<%=section.section or section.sectiontype%>"<% if section.sectiontype ~= self.selected_tab then %> style="display:none"<% end %>> - <% section:render() %> - </div> - <script type="text/javascript">cbi_t_add('m-<%=self.config%>', '<%=section.section or section.sectiontype%>')</script> - <% end %> + </div> <% if not self.save then -%> <div class="cbi-section-error"> diff --git a/modules/luci-base/luasrc/view/cbi/nsection.htm b/modules/luci-base/luasrc/view/cbi/nsection.htm index 63abc57734..14232e3d94 100644 --- a/modules/luci-base/luasrc/view/cbi/nsection.htm +++ b/modules/luci-base/luasrc/view/cbi/nsection.htm @@ -11,7 +11,6 @@ <input type="submit" class="cbi-button" name="cbi.rns.<%=self.config%>.<%=section%>" value="<%:Delete%>" /> </div> <%- end %> - <%+cbi/tabmenu%> <div class="cbi-section-node<% if self.tabs then %> cbi-section-node-tabbed<% end %>" id="cbi-<%=self.config%>-<%=section%>"> <%+cbi/ucisection%> </div> diff --git a/modules/luci-base/luasrc/view/cbi/tabcontainer.htm b/modules/luci-base/luasrc/view/cbi/tabcontainer.htm index 38c435d6a1..7fcb835783 100644 --- a/modules/luci-base/luasrc/view/cbi/tabcontainer.htm +++ b/modules/luci-base/luasrc/view/cbi/tabcontainer.htm @@ -1,7 +1,14 @@ -<% for tab, data in pairs(self.tabs) do %> - <div class="cbi-tabcontainer" id="container.<%=self.config%>.<%=section%>.<%=tab%>"<% if tab ~= self.selected_tab then %> style="display:none"<% end %>> - <% if data.description then %><div class="cbi-tab-descr"><%=data.description%></div><% end %> +<% for _, tab in ipairs(self.tab_names) do data = self.tabs[tab] %> + <div class="cbi-tabcontainer"<%= + attr("id", "container.%s.%s.%s" %{ self.config, section, tab }) .. + attr("data-tab", tab) .. + attr("data-tab-title", data.title) .. + attr("data-tab-active", tostring(tab == self.selected_tab)) + %>> + <% if data.description then %> + <div class="cbi-tab-descr"><%=data.description%></div> + <% end %> + <% self:render_tab(tab, section, scope or {}) %> </div> - <script type="text/javascript">cbi_t_add('<%=self.config%>.<%=section%>', '<%=tab%>')</script> <% end %> diff --git a/modules/luci-base/luasrc/view/cbi/tabmenu.htm b/modules/luci-base/luasrc/view/cbi/tabmenu.htm deleted file mode 100644 index 06c1414bf3..0000000000 --- a/modules/luci-base/luasrc/view/cbi/tabmenu.htm +++ /dev/null @@ -1,12 +0,0 @@ -<%- if self.tabs then %> - <ul class="cbi-tabmenu"> - <%- self.selected_tab = luci.http.formvalue("tab." .. self.config .. "." .. section) %> - <%- for _, tab in ipairs(self.tab_names) do if #self.tabs[tab].childs > 0 then %> - <%- if not self.selected_tab then self.selected_tab = tab end %> - <li id="tab.<%=self.config%>.<%=section%>.<%=tab%>" class="cbi-tab<%=(tab == self.selected_tab) and '' or '-disabled'%>"> - <a onclick="this.blur(); return cbi_t_switch('<%=self.config%>.<%=section%>', '<%=tab%>')" href="<%=REQUEST_URI%>?tab.<%=self.config%>.<%=section%>=<%=tab%>"><%=self.tabs[tab].title%></a> - <% if tab == self.selected_tab then %><input type="hidden" id="tab.<%=self.config%>.<%=section%>" name="tab.<%=self.config%>.<%=section%>" value="<%=tab%>" /><% end %> - </li> - <% end end -%> - </ul> -<% end -%> diff --git a/modules/luci-base/luasrc/view/cbi/tsection.htm b/modules/luci-base/luasrc/view/cbi/tsection.htm index 1a13df0c04..547a793329 100644 --- a/modules/luci-base/luasrc/view/cbi/tsection.htm +++ b/modules/luci-base/luasrc/view/cbi/tsection.htm @@ -18,8 +18,6 @@ <h3><%=section:upper()%></h3> <%- end %> - <%+cbi/tabmenu%> - <div class="cbi-section-node<% if self.tabs then %> cbi-section-node-tabbed<% end %>" id="cbi-<%=self.config%>-<%=section%>"> <%+cbi/ucisection%> </div> diff --git a/modules/luci-base/luasrc/view/cbi/value.htm b/modules/luci-base/luasrc/view/cbi/value.htm index 8eec865348..27f3cb2bd9 100644 --- a/modules/luci-base/luasrc/view/cbi/value.htm +++ b/modules/luci-base/luasrc/view/cbi/value.htm @@ -21,6 +21,6 @@ ifattr(#self.keylist > 0, "data-choices", { self.keylist, self.vallist }) %> /> <%- if self.password then -%> - <div class="cbi-button cbi-button-neutral" title="<%:Reveal/hide password%>" onclick="var e = this.previousElementSibling; e.type = (e.type === 'password') ? 'text' : 'password'">∗</div> + <button class="cbi-button cbi-button-neutral" title="<%:Reveal/hide password%>" aria-label="<%:Reveal/hide password%>" onclick="var e = this.previousElementSibling; e.type = (e.type === 'password') ? 'text' : 'password'; event.preventDefault()">∗</button> <% end %> <%+cbi/valuefooter%> diff --git a/modules/luci-base/luasrc/view/header.htm b/modules/luci-base/luasrc/view/header.htm index f6e20c9a40..2813c4d943 100644 --- a/modules/luci-base/luasrc/view/header.htm +++ b/modules/luci-base/luasrc/view/header.htm @@ -10,3 +10,14 @@ luci.dispatcher.context.template_header_sent = true end %> + +<script type="text/javascript" src="<%=resource%>/luci.js"></script> +<script type="text/javascript"> + L = new LuCI(<%= luci.http.write_json({ + token = token, + resource = resource, + scriptname = luci.http.getenv("SCRIPT_NAME"), + pathinfo = luci.http.getenv("PATH_INFO"), + requestpath = luci.dispatcher.context.requestpath + }) %>); +</script> diff --git a/modules/luci-base/luasrc/view/wifi_assoclist.htm b/modules/luci-base/luasrc/view/wifi_assoclist.htm index 700d998ad8..b7147bfb71 100644 --- a/modules/luci-base/luasrc/view/wifi_assoclist.htm +++ b/modules/luci-base/luasrc/view/wifi_assoclist.htm @@ -1,4 +1,21 @@ +<% + local supports_deauth = {} + + local _, v + for _, v in ipairs(luci.util.ubus()) do + local iface = v:match("^hostapd%.(.+)$") + if iface then + local funcs = luci.util.ubus(v) + if type(funcs) == "table" and funcs.del_client then + supports_deauth[iface] = true + end + end + end +%> + <script type="text/javascript">//<![CDATA[ + var supports_deauth = <%= luci.http.write_json(supports_deauth) %>; + function wifirate(bss, rx) { var p = rx ? 'rx_' : 'tx_', s = '%.1f <%:Mbit/s%>, %d<%:MHz%>' @@ -17,6 +34,16 @@ return s; } + function handleDeauth(ev) { + (new XHR()).post('<%=url('admin/wireless_deauth')%>', { + token: '<%=token%>', + iface: ev.target.getAttribute('data-iface'), + bssid: ev.target.getAttribute('data-bssid') + }, function() { + ev.target.disabled = true; + }); + } + XHR.poll(5, '<%=url('admin/wireless_assoclist')%>', null, function(x, st) { @@ -58,7 +85,15 @@ E('span', wifirate(bss, true)), E('br'), E('span', wifirate(bss, false)) - ]) + ]), + supports_deauth[bss.ifname] ? E('input', { + type: 'button', + class: 'cbi-button cbi-button-remove', + value: '<%:Disconnect%>', + 'data-bssid': bss.bssid, + 'data-iface': bss.ifname, + click: handleDeauth + }) : '-' ]); }); @@ -75,6 +110,9 @@ <div class="th nowrap"><%:Host%></div> <div class="th nowrap"><%:Signal%> / <%:Noise%></div> <div class="th nowrap"><%:RX Rate%> / <%:TX Rate%></div> + <% if next(supports_deauth) then %> + <div class="th right"><%:Disconnect%></div> + <% end %> </div> <div class="tr placeholder"> <div class="td"><em><%:Collecting data...%></em></div> diff --git a/modules/luci-base/po/ca/base.po b/modules/luci-base/po/ca/base.po index 10dc010d69..4062a393c7 100644 --- a/modules/luci-base/po/ca/base.po +++ b/modules/luci-base/po/ca/base.po @@ -13,10 +13,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -49,16 +53,16 @@ msgstr "(sense interfícies adjuntes)" msgid "-- Additional Field --" msgstr "-- Camp addicional --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Escolliu, si us plau --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- personalitzat --" @@ -82,11 +86,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Càrrega d'1 minut:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "Càrrega de 15 minuts:" @@ -98,7 +102,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "Càrrega de 5 minuts:" @@ -154,7 +158,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Adreça <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" @@ -181,11 +185,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "Passarel·la <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Configuració dels <abbr title=\"Light Emitting Diode\">LED</abbr>s" @@ -194,12 +198,12 @@ msgstr "Configuració dels <abbr title=\"Light Emitting Diode\">LED</abbr>s" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Nom <abbr title=\"Light Emitting Diode\">LED</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "Adreça <abbr title=\"Media Access Control\">MAC</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -231,19 +235,23 @@ msgstr "" "Avís: cal reiniciar manualment el servei cron si el fitxer crontab estava " "buit abans d'editar-lo." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -257,25 +265,25 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "Llindar de reintent ARP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "Ponts ATM" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "Identificador de canal virtual (VCI) ATM" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "Identificador de camí virtual (VPI) ATM" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -285,12 +293,12 @@ msgstr "" "de xarxa virtual de Linux que es poden utilitzar conjuntament amb DHCP o PPP " "per trucar a la xarxa del proveïdor." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "Número de dispositiu ATM" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -305,8 +313,6 @@ msgstr "Punt d'accés" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Accions" @@ -318,8 +324,8 @@ msgstr "Rutes <abbr title=\"Internet Protocol Version 4\">IPv4</abbr> actives" msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "Rutes <abbr title=\"Internet Protocol Version 6\">IPv6</abbr> actives" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Connexions actives" @@ -346,6 +352,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Afegeix" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" @@ -363,8 +376,8 @@ msgstr "Fitxers de Hosts addicionals" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Adreça" @@ -380,7 +393,7 @@ msgstr "Administració" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -388,7 +401,7 @@ msgstr "Administració" msgid "Advanced Settings" msgstr "Paràmetres avançats" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -396,7 +409,7 @@ msgstr "" msgid "Alert" msgstr "Alerta" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -419,7 +432,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "Permetre l'autenticació <abbr title=\"Secure Shell\">SSH</abbr> amb " @@ -447,17 +460,17 @@ msgstr "Permet només les llistades" msgid "Allow localhost" msgstr "Permetre el localhost" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" "Permetre a màquines remotes de connectar-se als ports reenviats de l'SSH " "local" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "Accés d'administrador amb contrasenya" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "Permetre l'accés de l'usurari <em>root</em> amb contrasenya" @@ -480,64 +493,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -583,15 +596,15 @@ msgstr "Configuració d'antena" msgid "Any zone" msgstr "Qualsevol zona" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -612,11 +625,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Estacions associades" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -647,8 +660,8 @@ msgstr "Es requereix autenticació" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Refresc automàtic" @@ -691,29 +704,25 @@ msgstr "" msgid "Available" msgstr "Disponible" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Paquets disponibles" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Mitjana:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -724,7 +733,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -755,7 +764,7 @@ msgstr "Enrere als resultats de l'escaneig" msgid "Backup" msgstr "Còpia de seguretat" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Còpia de seguretat i microprogramari" @@ -786,12 +795,14 @@ msgstr "" "en els fitxers de configuració canviats i marcats per l'opkg, fitxers base " "essencials i els patrons de còpia de seguretat definits per l'usuari." -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -800,7 +811,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Velocitat de bits" @@ -808,7 +819,7 @@ msgstr "Velocitat de bits" msgid "Bogus NX Domain Override" msgstr "Substitució dels dominis NX falsos" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Pont" @@ -816,7 +827,7 @@ msgstr "Pont" msgid "Bridge interfaces" msgstr "Pont d'interfícies" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "Número d'unitat de pont" @@ -832,18 +843,10 @@ msgstr "Controlador sense fil Broadcom 802.11%s" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Controlador sense fil Broadcom BCM%04x 802.11" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "En memòria intermèdia" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" -"Repositoris específics de la distribució/compilació. Aquest fitxer NO es " -"preservarà durant les actualitzacions del microprogramari del sistema." - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -858,6 +861,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Cancel·la" @@ -880,6 +884,12 @@ msgstr "" msgid "Chain" msgstr "Cadena" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -889,20 +899,24 @@ msgstr "Canvis" msgid "Changes applied." msgstr "Canvis aplicats." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "Canvia la paraula clau de l'administrador per accedir al dispositiu" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Canal" @@ -985,6 +999,11 @@ msgstr "Client" msgid "Client ID to send when requesting DHCP" msgstr "ID de client a enviar en les sol·licituds DHCP" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -1002,16 +1021,16 @@ msgstr "Tanca la llista..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1042,8 +1061,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Configuració" @@ -1055,15 +1072,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Confirmació" @@ -1072,8 +1089,8 @@ msgid "Connect" msgstr "Connecta" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Connectat" @@ -1089,7 +1106,7 @@ msgstr "" msgid "Connections" msgstr "Connexions" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1146,16 +1163,6 @@ msgstr "Interfície personalitzada" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1180,7 +1187,7 @@ msgstr "Servidor DHCP" msgid "DHCP and DNS" msgstr "DHCP i DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "Client DHCP" @@ -1200,16 +1207,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1237,16 +1244,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1258,7 +1265,7 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1272,6 +1279,10 @@ msgstr "Depuració" msgid "Default %d" msgstr "%d per defecte" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1306,6 +1317,11 @@ msgstr "" msgid "Delete" msgstr "Suprimeix" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Suprimeix aquesta xarxa" @@ -1314,16 +1330,11 @@ msgstr "Suprimeix aquesta xarxa" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Descripció" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Disseny" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Destí" @@ -1331,8 +1342,8 @@ msgstr "Destí" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1349,7 +1360,7 @@ msgstr "Configuració de dispositiu" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1417,18 +1428,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "Descarta les respostes RFC1918 des de dalt" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "Mostrant només els paquets que contenen" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1438,10 +1452,6 @@ msgstr "Optimització de distància" msgid "Distance to farthest network member in meters." msgstr "Distància al membre de la xarxa més allunyat en metres." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "Repositoris de la distribució" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Diversitat" @@ -1470,6 +1480,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Es requereix un domini" @@ -1494,10 +1508,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Descarrega i instal·la el paquet" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "Descarrega còpia de seguretat" @@ -1506,15 +1516,15 @@ msgstr "Descarrega còpia de seguretat" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Instància de Dropbear" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1685,8 +1695,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "Habilita l'Spanning Tree Protocol a aquest pont" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "Mode d'encapsulació" @@ -1694,7 +1704,7 @@ msgstr "Mode d'encapsulació" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Encriptació" @@ -1714,7 +1724,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "Esborrant..." @@ -1723,19 +1733,19 @@ msgstr "Esborrant..." msgid "Error" msgstr "Error" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Adaptador Ethernet" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Switch Ethernet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1743,11 +1753,11 @@ msgstr "" msgid "Expand hosts" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Caduca" @@ -1796,7 +1806,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1814,10 +1824,6 @@ msgstr "Nom de fitxer de la imatge d'inici que es publica als clients" msgid "Filesystem" msgstr "Sistema de fitxers" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Filtre" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Filtra privat" @@ -1840,10 +1846,6 @@ msgstr "" msgid "Find and join network" msgstr "Troba i uneix-te a la xarxa" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Cerca paquet" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Acaba" @@ -1864,11 +1866,11 @@ msgstr "Ajusts de tallafocs" msgid "Firewall Status" msgstr "Estat de tallafocs" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Versió de microprogramari" @@ -1892,7 +1894,7 @@ msgstr "Escriu una imatge nova a la memòria flaix" msgid "Flash operations" msgstr "Operacions a la memòria flaix" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "Escrivint a la memòria flaix..." @@ -1940,7 +1942,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Reenvia el trànsit DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1952,7 +1954,7 @@ msgstr "Reenvia el trànsit difós" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "Mode de reenviament" @@ -1965,15 +1967,11 @@ msgstr "Llindar de fragmentació" msgid "Frame Bursting" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "Lliure" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Espai lliure" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1982,7 +1980,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "GHz" @@ -1991,8 +1989,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Només GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Passarel·la" @@ -2000,7 +1998,7 @@ msgstr "Passarel·la" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "Ports de passarel·la" @@ -2013,16 +2011,12 @@ msgstr "Ajusts generals" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "Opcions generals d'opkg" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -2039,7 +2033,7 @@ msgstr "Genera l'arxiu" msgid "Generic 802.11%s Wireless Controller" msgstr "Controlador sense fils 802.11%s genèric" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "" "La contrasenya i la confirmació de contrasenya no es coincideixen. La " @@ -2049,14 +2043,14 @@ msgstr "" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "Vés a la configuració de contrasenya" @@ -2089,7 +2083,7 @@ msgstr "" msgid "Hang Up" msgstr "Penja" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2101,14 +2095,6 @@ msgstr "" "Ací pots configurar els aspectes bàsics del teu dispositiu, com el nom de la " "màquina o el fus horari." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" -"Aquí pots afegir-hi les claus SSH públiques (una per línia) per entrar per " -"SSH amb autenticació per clau." - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2122,7 +2108,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "Nom de màquina" @@ -2143,9 +2129,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2200,7 +2186,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Tallafocs IPv4" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2224,7 +2210,7 @@ msgstr "Passarel·la IPv4" msgid "IPv4 netmask" msgstr "Màscara de xarxa IPv4" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2269,11 +2255,11 @@ msgstr "Veïns IPv6" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2295,7 +2281,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "Passarel·la IPv6" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2448,7 +2434,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "Temps d'espera d'inactivitat" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "Entrant:" @@ -2468,10 +2454,6 @@ msgstr "Script d'inici" msgid "Initscripts" msgstr "Scripts d'inici" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Instal·la" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2484,17 +2466,13 @@ msgstr "Instal·la el paquet %q" msgid "Install protocol extensions..." msgstr "Instal·la extensions de protocol" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "Paquets instal·lats" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Interfície" @@ -2571,7 +2549,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "Es requereix JavaScript!" @@ -2596,7 +2574,7 @@ msgstr "Mantenir la configuració" msgid "Kernel Log" msgstr "Registre del nucli" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Versió del nucli" @@ -2642,7 +2620,7 @@ msgstr "Llindar de fracàs d'eco LCP" msgid "LCP echo interval" msgstr "Interval d'eco LCP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2659,7 +2637,7 @@ msgstr "Llengua" msgid "Language and Style" msgstr "Llengua i estil" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2667,7 +2645,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2710,19 +2688,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2774,7 +2752,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Habilita el servei en totes les interfícies o, si no se n'especifica cap, en " @@ -2790,7 +2768,7 @@ msgstr "" msgid "Load" msgstr "Càrrega" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Càrrega mitjana" @@ -2800,6 +2778,10 @@ msgstr "Càrrega mitjana" msgid "Loading" msgstr "Carregant" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2829,7 +2811,7 @@ msgstr "" msgid "Local Startup" msgstr "Inici local" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Hora local" @@ -2882,11 +2864,11 @@ msgstr "Registre" msgid "Login" msgstr "Entra" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Surt" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2901,9 +2883,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "Adreça MAC" @@ -2939,7 +2921,7 @@ msgstr "MB/s" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "MHz" @@ -2965,7 +2947,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -3000,16 +2982,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Memòria" @@ -3052,11 +3034,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Mode" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3095,7 +3077,7 @@ msgstr "" msgid "Mount Point" msgstr "Punt de muntatge" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3121,7 +3103,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "Opcions de muntatge" @@ -3192,15 +3174,15 @@ msgstr "Nom de la nova xarxa" msgid "Navigation" msgstr "Navegació" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Màscara de xarxa" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3226,6 +3208,10 @@ msgstr "Xarxa sense interfícies." msgid "Next »" msgstr "Següent" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "Cap servidor DHCP configurat en aquesta interfície" @@ -3238,9 +3224,9 @@ msgstr "" msgid "No files found" msgstr "Cap fitxer trobat" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "No hi ha informació disponible" @@ -3260,18 +3246,18 @@ msgstr "Cap xarxa configurada en aquest dispositiu" msgid "No network name specified" msgstr "Cap nom de xarxa especificat" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "No hi ha llistes de paquets disponibles" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "No hi ha cap contrasenya establerta!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "No hi ha regles en aquesta cadena" @@ -3284,23 +3270,23 @@ msgstr "" msgid "No zone assigned" msgstr "Cap zona assignada" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Soroll" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Soroll:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3326,8 +3312,8 @@ msgstr "No trobat" msgid "Not associated" msgstr "No associat" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "No connectat" @@ -3351,14 +3337,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "D'acord" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "Configuració d'OPKG" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3399,7 +3377,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "Cal especificar o el nom de host o l'adreça MAC!" @@ -3499,7 +3477,7 @@ msgstr "" msgid "Options" msgstr "Opcions" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "Altres:" @@ -3507,7 +3485,7 @@ msgstr "Altres:" msgid "Out" msgstr "Sort." -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "Sortint:" @@ -3642,7 +3620,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3650,15 +3628,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "Es requereix el paquet libiwinfo!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "Les llistes de paquets tenen més de 24 hores" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Nom del paquet" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Paquets" @@ -3669,13 +3638,13 @@ msgstr "Part de la zona %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Contrasenya" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Autenticació per contrasenya" @@ -3687,14 +3656,14 @@ msgstr "Contrasenya de la clau privada" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "La contrasenya s'ha canviat amb èxit!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Ruta als Certificats CA" @@ -3719,17 +3688,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "Màxim:" @@ -3761,7 +3730,7 @@ msgstr "Executa un reinici" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "Velocitat física:" @@ -3789,16 +3758,11 @@ msgstr "Paquets" msgid "Please enter your username and password." msgstr "Si us plau entra el teu nom d'usuari i contrasenya." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "Política" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3806,11 +3770,11 @@ msgstr "Port" msgid "Port status:" msgstr "Estatus de port" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3822,7 +3786,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3841,7 +3805,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3863,7 +3827,7 @@ msgstr "Procedeix" msgid "Processes" msgstr "Processos" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3873,9 +3837,9 @@ msgstr "Prot." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protocol" @@ -3903,6 +3867,14 @@ msgstr "Pseudo Ad-Hoc (ahdemo)" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3912,7 +3884,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "Calidad" @@ -3945,7 +3917,7 @@ msgstr "Llindar RTS/CTS" msgid "RX" msgstr "RX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "Velocitat RX" @@ -4005,7 +3977,7 @@ msgstr "" msgid "Really switch protocol?" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "Connexions en temps real" @@ -4013,15 +3985,15 @@ msgstr "Connexions en temps real" msgid "Realtime Graphs" msgstr "Gràfiques en temps real" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "Càrrega en temps real" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "Trànsit en temps real" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "Dispositiu sense fils en temps real" @@ -4033,7 +4005,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Reinicia" @@ -4095,7 +4067,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "Adreça IPv4 remota o FQDN" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Treu" @@ -4159,7 +4130,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Restableix" @@ -4202,6 +4172,8 @@ msgid "Restore backup" msgstr "Restaura còpia de seguretat" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "Mostra/amaga la contrasenya" @@ -4211,15 +4183,15 @@ msgstr "Mostra/amaga la contrasenya" msgid "Revert" msgstr "Reverteix" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4248,7 +4220,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "Contrasenya de l'encaminador" @@ -4270,11 +4243,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "" @@ -4282,11 +4255,12 @@ msgstr "" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Accés SSH" @@ -4302,7 +4276,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "Claus SSH" @@ -4311,7 +4286,7 @@ msgstr "Claus SSH" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4322,6 +4297,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Desa" @@ -4338,6 +4314,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Escaneja" @@ -4346,7 +4326,7 @@ msgstr "Escaneja" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Tasques programades" @@ -4359,7 +4339,7 @@ msgstr "Secció afegida" msgid "Section removed" msgstr "Secció treta" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "" @@ -4402,6 +4382,14 @@ msgstr "Tipus de servei" msgid "Services" msgstr "Serveis" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4425,11 +4413,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4449,22 +4437,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "Atura aquesta interfície" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Senyal" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "Senyal:" @@ -4472,10 +4460,6 @@ msgstr "Senyal:" msgid "Size" msgstr "Mida" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "Mida (.ipk)" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4503,12 +4487,7 @@ msgstr "Salta a la navegació" msgid "Slot time" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Programari" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4531,7 +4510,7 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4541,7 +4520,7 @@ msgstr "Origen" msgid "Specifies the directory the device is attached to" msgstr "Especifica el directori a que el dispositiu està adjuntat" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "Especifica el port d'escolta d'aquesta instància del <em>Dropbear</em>" @@ -4587,7 +4566,7 @@ msgstr "Inici" msgid "Start priority" msgstr "Prioritat d'inici" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4595,7 +4574,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "Arrencada" @@ -4607,7 +4586,7 @@ msgstr "Rutes IPv4 estàtiques" msgid "Static IPv6 Routes" msgstr "Rutes IPv6 estàtiques" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Leases estàtics" @@ -4615,11 +4594,11 @@ msgstr "Leases estàtics" msgid "Static Routes" msgstr "Rutes estàtiques" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "Adreça estàtica" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4633,8 +4612,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Estat" @@ -4659,7 +4637,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4689,7 +4667,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4707,7 +4685,7 @@ msgid "Synchronizing..." msgstr "Sincronitzant..." #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4727,7 +4705,7 @@ msgstr "Propietats del sistema" msgid "System log buffer size" msgstr "Mida de la memòria intermèdia per al registre del sistema" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4745,7 +4723,7 @@ msgstr "Arrel del servidor TFTP" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "Velocitat TX" @@ -4822,7 +4800,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4870,6 +4848,16 @@ msgstr "S'han desfet els següents canvis" msgid "The following rules are currently active on this system." msgstr "Les següents regles estan actualment actives en aquest sistema." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "El nom de xarxa donat no és únic" @@ -4919,7 +4907,7 @@ msgstr "El protocol seleccionat necessita un dispositiu assignat" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -4927,7 +4915,7 @@ msgstr "" "El sistema està esborrant la partició de configuració i es reiniciarà quan " "termini." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -4941,6 +4929,10 @@ msgstr "" "connectar-te de nou a l'encaminador, depenent de la configuració que hi " "tinguis." +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -4949,12 +4941,16 @@ msgstr "" "La imatge pujada no conté un format suportat. Assegura't de triar el format " "d'imatge genèric per la teva plataforma." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Tema" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "No hi ha arrendaments actius." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -4976,7 +4972,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5059,7 +5055,7 @@ msgstr "" "Aquesta llista mostra una vista general sobre els processos corrent al " "sistema actualment i el seu estat." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "" "Aquesta pàgina ofereix una vista general de les connexions de xarxa actives " @@ -5087,6 +5083,10 @@ msgstr "" msgid "Timezone" msgstr "Zona horària" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5098,12 +5098,12 @@ msgstr "" "inicial, fes clic a \"Restableix la configuració\" (només funciona amb " "imatges squashfs)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Total disponible" @@ -5118,7 +5118,7 @@ msgstr "Rastre de ruta" msgid "Traffic" msgstr "Trànsit" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Transferència" @@ -5153,7 +5153,7 @@ msgstr "Mode d'activació" msgid "Tunnel ID" msgstr "ID del túnel" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "Interfície del túnel" @@ -5168,12 +5168,12 @@ msgid "Tx-Power" msgstr "Potència Tx" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Tipus" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5227,36 +5227,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "Desconegut" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "La contrasenya no s'ha canviat a causa d'un error desconegut!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "Sense gestionar" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Canvis sense desar" @@ -5276,10 +5276,6 @@ msgstr "Tipus de protocol no suportat." msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "Actualitza les llistes" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5300,7 +5296,7 @@ msgstr "Fitxer pujat" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Temps en marxa" @@ -5416,7 +5412,7 @@ msgstr "" msgid "Use routing table" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5453,11 +5449,11 @@ msgstr "" msgid "Username" msgstr "Nom d'usuari" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5507,11 +5503,6 @@ msgstr "Classe de venidor per enviar al sol·licitar DHCP" msgid "Verify" msgstr "Verifica" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Versió" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5562,7 +5553,7 @@ msgstr "Esperant que s'apliquin els canvis..." msgid "Waiting for command to complete..." msgstr "Esperant que s'acabi l'ordre..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5595,16 +5586,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "Sense fils" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Adaptador sense fils" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Xarxa sense fils" @@ -5619,13 +5610,13 @@ msgstr "Seguretat sense fils" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "El dispositiu sense fils està inhabilitat" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "El dispositiu sense fils està sense associar" @@ -5649,6 +5640,10 @@ msgstr "Escriure les peticions DNS rebudes al registre del sistema" msgid "Write system log to file" msgstr "Escriure el registre del sistema al fitxer" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5664,7 +5659,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5698,9 +5693,9 @@ msgstr "" msgid "any" msgstr "qualsevol" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5717,7 +5712,7 @@ msgstr "auto" msgid "baseT" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "pontejat" @@ -5736,24 +5731,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "crea un pont entre les interfícies especificades" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "dB" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "dBm" @@ -5795,7 +5790,7 @@ msgstr "" msgid "half-duplex" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5817,44 +5812,44 @@ msgstr "si el destí és una xarxa" msgid "input" msgstr "entrada" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "kB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "kB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "kbit/s" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5880,19 +5875,10 @@ msgstr "no" msgid "no link" msgstr "cap enllaç" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "cap" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5904,7 +5890,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "parat" @@ -5912,11 +5898,11 @@ msgstr "parat" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "engegat" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5934,11 +5920,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5952,7 +5938,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "encaminat" @@ -5986,7 +5972,7 @@ msgstr "etiquetat" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -6013,159 +5999,159 @@ msgstr "sense espeficicar -o- crear:" msgid "untagged" msgstr "sense etiquetar" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6179,6 +6165,89 @@ msgstr "sí" msgid "« Back" msgstr "« Enrere" +#~ msgid "" +#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " +#~ "authentication." +#~ msgstr "" +#~ "Aquí pots afegir-hi les claus SSH públiques (una per línia) per entrar " +#~ "per SSH amb autenticació per clau." + +#~ msgid "Password successfully changed!" +#~ msgstr "La contrasenya s'ha canviat amb èxit!" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "La contrasenya no s'ha canviat a causa d'un error desconegut!" + +#~ msgid "Design" +#~ msgstr "Disseny" + +#~ msgid "Available packages" +#~ msgstr "Paquets disponibles" + +#~ msgid "" +#~ "Build/distribution specific feed definitions. This file will NOT be " +#~ "preserved in any sysupgrade." +#~ msgstr "" +#~ "Repositoris específics de la distribució/compilació. Aquest fitxer NO es " +#~ "preservarà durant les actualitzacions del microprogramari del sistema." + +#~ msgid "Displaying only packages containing" +#~ msgstr "Mostrant només els paquets que contenen" + +#~ msgid "Distribution feeds" +#~ msgstr "Repositoris de la distribució" + +#~ msgid "Download and install package" +#~ msgstr "Descarrega i instal·la el paquet" + +#~ msgid "Filter" +#~ msgstr "Filtre" + +#~ msgid "Find package" +#~ msgstr "Cerca paquet" + +#~ msgid "Free space" +#~ msgstr "Espai lliure" + +#~ msgid "General options for opkg" +#~ msgstr "Opcions generals d'opkg" + +#~ msgid "Install" +#~ msgstr "Instal·la" + +#~ msgid "Installed packages" +#~ msgstr "Paquets instal·lats" + +#~ msgid "No package lists available" +#~ msgstr "No hi ha llistes de paquets disponibles" + +#~ msgid "OK" +#~ msgstr "D'acord" + +#~ msgid "OPKG-Configuration" +#~ msgstr "Configuració d'OPKG" + +#~ msgid "Package lists are older than 24 hours" +#~ msgstr "Les llistes de paquets tenen més de 24 hores" + +#~ msgid "Package name" +#~ msgstr "Nom del paquet" + +#~ msgid "Size (.ipk)" +#~ msgstr "Mida (.ipk)" + +#~ msgid "Software" +#~ msgstr "Programari" + +#~ msgid "Update lists" +#~ msgstr "Actualitza les llistes" + +#~ msgid "Version" +#~ msgstr "Versió" + +#~ msgid "none" +#~ msgstr "cap" + #~ msgid "IPv4 and IPv6" #~ msgstr "IPv4 i IPv6" diff --git a/modules/luci-base/po/cs/base.po b/modules/luci-base/po/cs/base.po index 4efff63845..c3f1a1f6a1 100644 --- a/modules/luci-base/po/cs/base.po +++ b/modules/luci-base/po/cs/base.po @@ -11,10 +11,14 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.6\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -47,16 +51,16 @@ msgstr "(bez rozhraní připojení)" msgid "-- Additional Field --" msgstr "-- Doplňující pole --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Prosím vyberte --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- vlastní --" @@ -80,11 +84,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Zatížení za 1 minutu:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "Zatížení za 15 minut:" @@ -96,7 +100,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "Zatížení za 5 minut:" @@ -152,7 +156,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protokol Verze 4\">IPv4</abbr>-Adresa" @@ -178,11 +182,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protokol Verze 6\">IPv6</abbr>-Brána" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Konfigurace" @@ -191,12 +195,12 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Konfigurace" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Název" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-Adresa" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -226,19 +230,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -252,25 +260,25 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "ARP limit opakování" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "ATM mosty" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "Identifikátor virtuálního kanálu ATM (VCI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "Identifikátor virtuální cesty ATM (VPI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -280,12 +288,12 @@ msgstr "" "virtuální síťová rozhraní Linuxu, které mohou být použity ve spojení s DHCP " "nebo PPP vytáčeného připojení od poskytovatele sítě." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "číslo ATM zařízení" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -300,8 +308,6 @@ msgstr "Přístupový bod" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Akce" @@ -317,8 +323,8 @@ msgstr "" "Aktivní záznamy ve směrovací tabulce <abbr title=\"Internet Protocol Version " "6\">IPv6</abbr>" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Aktivní spojení" @@ -345,6 +351,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Přidat" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "Přidat lokální koncovku k doménovým jménům ze souboru hosts" @@ -361,8 +374,8 @@ msgstr "Dodatečné Hosts soubory" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Adresa" @@ -378,7 +391,7 @@ msgstr "Správa" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -386,7 +399,7 @@ msgstr "Správa" msgid "Advanced Settings" msgstr "Pokročilé nastavení" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -394,7 +407,7 @@ msgstr "" msgid "Alert" msgstr "Upozornění" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -417,7 +430,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Povolit <abbr title=\"Secure Shell\">SSH</abbr> autentizaci heslem" @@ -443,17 +456,17 @@ msgstr "Povolit pouze uvedené" msgid "Allow localhost" msgstr "Povolit localhost" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" "Povolit vzdáleným hostitelům připojování k místním portům přesměrovaným " "pomocí SSH" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "Povolit přihlašovaní root účtu pomocí hesla" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "Povolit <em>root</em> účtu přihlášení bez nastaveného hesla" @@ -476,64 +489,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -579,15 +592,15 @@ msgstr "Konfigurace antén" msgid "Any zone" msgstr "Libovolná zóna" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -608,11 +621,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Připojení klienti" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -643,8 +656,8 @@ msgstr "Vyžadována autorizace" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Automaticky obnovovat" @@ -687,29 +700,25 @@ msgstr "" msgid "Available" msgstr "Dostupné" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Dostupné balíčky" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Průměr:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -720,7 +729,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -750,7 +759,7 @@ msgstr "Zpět k výsledkům vyhledávání" msgid "Backup" msgstr "Zálohovat" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Zálohovat / nahrát firmware" @@ -781,12 +790,14 @@ msgstr "" "souborů označených opkg, nezbyných systémových souborů a souborů " "vyhovujících uživatelem určeným vzorům." -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -795,7 +806,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Přenosová rychlost" @@ -803,7 +814,7 @@ msgstr "Přenosová rychlost" msgid "Bogus NX Domain Override" msgstr "Přepíše falešnou hodnotu NX Domény" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Síťový most" @@ -811,7 +822,7 @@ msgstr "Síťový most" msgid "Bridge interfaces" msgstr "Síťové mosty" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "Číslo síťového mostu" @@ -827,16 +838,10 @@ msgstr "Broadcom 802.11%s bezdrátový ovladač" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Broadcom modul BCM%04x 802.11 bezdrátový ovladač" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "Bufferováno" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -851,6 +856,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Storno" @@ -873,6 +879,12 @@ msgstr "" msgid "Chain" msgstr "Řetěz" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -882,20 +894,24 @@ msgstr "Změny" msgid "Changes applied." msgstr "Změny aplikovány." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "Změní administrátorské heslo pro přístup k zařízení" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Kanál" @@ -977,6 +993,11 @@ msgstr "Klient" msgid "Client ID to send when requesting DHCP" msgstr "Klientské ID odesílané v DHCP požadavku" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -996,16 +1017,16 @@ msgstr "Zavřít seznam..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1036,8 +1057,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Nastavení" @@ -1049,15 +1068,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Ověření" @@ -1066,8 +1085,8 @@ msgid "Connect" msgstr "Připojit" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Připojeno" @@ -1083,7 +1102,7 @@ msgstr "" msgid "Connections" msgstr "Připojení" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1140,16 +1159,6 @@ msgstr "Vlastní rozhraní" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1174,7 +1183,7 @@ msgstr "DHCP server" msgid "DHCP and DNS" msgstr "DHCP a DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "DHCP klient" @@ -1194,16 +1203,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1231,16 +1240,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1252,7 +1261,7 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1266,6 +1275,10 @@ msgstr "Ladění" msgid "Default %d" msgstr "Výchozí %d" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1302,6 +1315,11 @@ msgstr "" msgid "Delete" msgstr "Odstranit" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Odstranit tuto síť" @@ -1310,16 +1328,11 @@ msgstr "Odstranit tuto síť" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Popis" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Vzhled" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Cíl" @@ -1327,8 +1340,8 @@ msgstr "Cíl" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1345,7 +1358,7 @@ msgstr "Nastavení zařízení" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1413,18 +1426,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "Vyřadit upstream RFC1918 odpovědi" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "Zobrazeny pouze balíčky obsahující" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1434,10 +1450,6 @@ msgstr "Optimalizace na vzdálenost" msgid "Distance to farthest network member in meters." msgstr "Vzdálenost nejodlehlejšího člena sítě v metrech." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Diverzita" @@ -1468,6 +1480,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Nepřeposílat reverzní dotazy na místní sítě" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Vyžadována doména" @@ -1492,10 +1508,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Stáhnout a nainstalovat balíček" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "Stáhnout zálohu" @@ -1504,15 +1516,15 @@ msgstr "Stáhnout zálohu" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Instance Dropbear" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1685,8 +1697,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "Na tomto síťovém mostě povolit Spanning Tree Protocol" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "Režim zapouzdření" @@ -1694,7 +1706,7 @@ msgstr "Režim zapouzdření" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Šifrování" @@ -1714,7 +1726,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "Odstraňování..." @@ -1723,19 +1735,19 @@ msgstr "Odstraňování..." msgid "Error" msgstr "Chyba" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Ethernetový adaptér" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Ethernetový switch" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1743,11 +1755,11 @@ msgstr "" msgid "Expand hosts" msgstr "Rozšířit hostitele" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Vyprší" @@ -1798,7 +1810,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1816,10 +1828,6 @@ msgstr "Název souboru s bootovacím obrazem oznamovaný klientům" msgid "Filesystem" msgstr "Souborový systém" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Filtr" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Filtrovat soukromé" @@ -1842,10 +1850,6 @@ msgstr "" msgid "Find and join network" msgstr "Vyhledat a připojit síť" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Vyhledat balíček" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Dokončit" @@ -1866,11 +1870,11 @@ msgstr "Nastavení firewallu" msgid "Firewall Status" msgstr "Stav firewallu" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Verze firmwaru" @@ -1894,7 +1898,7 @@ msgstr "Nahrát nový obraz s firmwarem" msgid "Flash operations" msgstr "Operace nad flash pamětí" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "Nahrávám..." @@ -1942,7 +1946,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Přeposílat DHCP provoz" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1954,7 +1958,7 @@ msgstr "Přeposílat broadcasty" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "Režim přeposílání" @@ -1967,15 +1971,11 @@ msgstr "Hranice fragmentace" msgid "Frame Bursting" msgstr "Dávkování rámců" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "Volné" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Volné místo" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1984,7 +1984,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "GHz" @@ -1993,8 +1993,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Pouze GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Brána" @@ -2002,7 +2002,7 @@ msgstr "Brána" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "Porty brány" @@ -2015,16 +2015,12 @@ msgstr "Obecná nastavení" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "Obecné nastavení" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -2041,7 +2037,7 @@ msgstr "Vytvorǐt archív" msgid "Generic 802.11%s Wireless Controller" msgstr "Generic 802.11%s Wireless Controller" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "Heslo nezměněno z důvodu nesouhlasu nového hesla a ověření hesla!" @@ -2049,14 +2045,14 @@ msgstr "Heslo nezměněno z důvodu nesouhlasu nového hesla a ověření hesla! msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "Přejít na nastavení hesla..." @@ -2089,7 +2085,7 @@ msgstr "" msgid "Hang Up" msgstr "Zavěsit" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2101,13 +2097,6 @@ msgstr "" "Nastavení základních vlastností zařízení jako je časová zóna nebo název " "zařízení." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" -"Vložte veřejné klíče (na každý řadek jeden) pro ověřovaní SSH přístupu." - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2120,7 +2109,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2142,9 +2131,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2199,7 +2188,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4 firewall" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2223,7 +2212,7 @@ msgstr "IPv4 brána" msgid "IPv4 netmask" msgstr "IPv4 maska sítě" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2268,11 +2257,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2294,7 +2283,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "IPv6 brána" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2447,7 +2436,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "Časový limit nečinnosti" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "Příchozí:" @@ -2467,10 +2456,6 @@ msgstr "Initskript" msgid "Initscripts" msgstr "Initskripty" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Instalovat" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2483,17 +2468,13 @@ msgstr "Instalovat balíček %q" msgid "Install protocol extensions..." msgstr "Instalovat protokolové rozšíření..." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "Nainstalované balíčky" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Rozhraní" @@ -2572,7 +2553,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "Vyžadován JavaScript!" @@ -2597,7 +2578,7 @@ msgstr "Zachovat nastavení" msgid "Kernel Log" msgstr "Záznam jádra" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Verze jádra" @@ -2643,7 +2624,7 @@ msgstr "LCP echo prahová hodnota selhání" msgid "LCP echo interval" msgstr "LCP interval upozornění" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2660,7 +2641,7 @@ msgstr "Jazyk" msgid "Language and Style" msgstr "Jazyk a styl" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2668,7 +2649,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2711,19 +2692,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2777,7 +2758,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Poslouchat pouze na daném rozhraní, nebo pokud není specifikováno, na všech" @@ -2792,7 +2773,7 @@ msgstr "Port pro příchozí dotazy DNS" msgid "Load" msgstr "Zátěž" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Zátěž průměrná" @@ -2802,6 +2783,10 @@ msgstr "Zátěž průměrná" msgid "Loading" msgstr "Načítání" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2831,7 +2816,7 @@ msgstr "" msgid "Local Startup" msgstr "Místní startup" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Místní čas" @@ -2890,11 +2875,11 @@ msgstr "Logování" msgid "Login" msgstr "Přihlásit" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Odhlásit" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2909,9 +2894,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-Adresa" @@ -2947,7 +2932,7 @@ msgstr "MB/s" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "MHz" @@ -2973,7 +2958,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -3008,16 +2993,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "Maximální počet zapůjčených adres." -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Paměť" @@ -3060,11 +3045,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Mód" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3103,7 +3088,7 @@ msgstr "Připojit vstup" msgid "Mount Point" msgstr "Přípojný bod" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3129,7 +3114,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "Volby připojení" @@ -3200,15 +3185,15 @@ msgstr "Název nové sítě" msgid "Navigation" msgstr "Navigace" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Síťová maska" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3234,6 +3219,10 @@ msgstr "Síť bez rozhraní." msgid "Next »" msgstr "Další »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "Pro toto rozhraní není nastaven žádný DHCP server" @@ -3246,9 +3235,9 @@ msgstr "" msgid "No files found" msgstr "Nebyly nalezeny žádné soubory" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "Údaje nejsou k dispozici" @@ -3268,18 +3257,18 @@ msgstr "Síť není nastavena na tomto zařízení" msgid "No network name specified" msgstr "Neuvedeno jméno sítě" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "Seznam balíčků není k dispozici" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "Žádné heslo!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "Žádná pravidla v tomto řetězci" @@ -3292,23 +3281,23 @@ msgstr "" msgid "No zone assigned" msgstr "Žádná zóna nepřiřazena" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Šum" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Šum:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3334,8 +3323,8 @@ msgstr "Nenalezeno" msgid "Not associated" msgstr "Neasociováno" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "Nepřipojeno" @@ -3359,14 +3348,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "OK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "Konfigurace balíčků OPKG" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3406,7 +3387,7 @@ msgstr "" msgid "On-State Delay" msgstr "Zapnutí prodlevy" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "Jedno jméno nebo mac adresa, musí být zadáno!" @@ -3506,7 +3487,7 @@ msgstr "" msgid "Options" msgstr "Možnosti" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "Ostatní:" @@ -3514,7 +3495,7 @@ msgstr "Ostatní:" msgid "Out" msgstr "Ven" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "Odchozí:" @@ -3651,7 +3632,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3659,15 +3640,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "Vyžadován balíček libiwinfo!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "Seznamy balíčků jsou starší než 24 hodin" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Název balíčku" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Pakety" @@ -3678,13 +3650,13 @@ msgstr "Část zóny %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Heslo" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Autentizace heslem" @@ -3696,14 +3668,14 @@ msgstr "Heslo privátního klíče" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "Heslo bylo úspěšně změněno!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Cesta k certifikátu CA" @@ -3728,17 +3700,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "Špička:" @@ -3770,7 +3742,7 @@ msgstr "Provést reset" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "Fyzická rychlost:" @@ -3798,16 +3770,11 @@ msgstr "Paketů" msgid "Please enter your username and password." msgstr "Prosím vložte vaše uživatelské jméno a heslo." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "Politika" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3815,11 +3782,11 @@ msgstr "Port" msgid "Port status:" msgstr "Stav portu:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3831,7 +3798,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3852,7 +3819,7 @@ msgstr "" "Po takovém množství LCP echo selhání předpokládám, že peer je mrtvý. " "Použijte 0 pro ignorování chyb" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3874,7 +3841,7 @@ msgstr "Pokračovat" msgid "Processes" msgstr "Procesy" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3884,9 +3851,9 @@ msgstr "Prot." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protokol" @@ -3914,6 +3881,14 @@ msgstr "Pseudo Ad-Hoc (ahdemo)" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3923,7 +3898,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "Kvalita" @@ -3956,7 +3931,7 @@ msgstr "Práh RTS/CTS" msgid "RX" msgstr "RX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "RX Rate" @@ -4019,7 +3994,7 @@ msgstr "Opravdu resetovat všechny změny?" msgid "Really switch protocol?" msgstr "Opravdu prohodit protokol?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "Připojení v reálném čase" @@ -4027,15 +4002,15 @@ msgstr "Připojení v reálném čase" msgid "Realtime Graphs" msgstr "Grafy v reálném čase" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "Zátěž v reálném čase" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "Provoz v reálném čase" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "Wireless v reálném čase" @@ -4047,7 +4022,7 @@ msgstr "" msgid "Rebind protection" msgstr "Opětovné nastavení ochrany" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Reboot" @@ -4109,7 +4084,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Odstranit" @@ -4174,7 +4148,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Reset" @@ -4217,6 +4190,8 @@ msgid "Restore backup" msgstr "Obnovit zálohu" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "Odhalit/skrýt heslo" @@ -4226,15 +4201,15 @@ msgstr "Odhalit/skrýt heslo" msgid "Revert" msgstr "Vrátit zpět" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4263,7 +4238,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "Heslo routeru" @@ -4284,11 +4260,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "Spustit kontrolu souborového systému před připojením zařízení" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "Spustit kontrolu souborového systému" @@ -4296,11 +4272,12 @@ msgstr "Spustit kontrolu souborového systému" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Přístup přes SSH" @@ -4316,7 +4293,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "SSH klíče" @@ -4325,7 +4303,7 @@ msgstr "SSH klíče" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4336,6 +4314,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Uložit" @@ -4352,6 +4331,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Skenovat" @@ -4360,7 +4343,7 @@ msgstr "Skenovat" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Naplánované úlohy" @@ -4373,7 +4356,7 @@ msgstr "Přidána sekce" msgid "Section removed" msgstr "Sekce odebrána" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "Podrobnosti viz manuálová stránka příkazu \"mount\"" @@ -4418,6 +4401,14 @@ msgstr "Typ služby" msgid "Services" msgstr "Služby" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4441,11 +4432,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "Nastavit DHCP server" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4465,22 +4456,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "Shodit toho rozhraní" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Signál" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "Signál:" @@ -4488,10 +4479,6 @@ msgstr "Signál:" msgid "Size" msgstr "Velikost" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4519,12 +4506,7 @@ msgstr "Skočit na navigaci" msgid "Slot time" msgstr "Time sloty" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Software" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4550,7 +4532,7 @@ msgstr "" "systému. Nový obraz firmwaru musí být zapsán ručně. Prosím, obraťte se na " "wiki pro zařízení specifické instalační instrukce." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4560,7 +4542,7 @@ msgstr "Zdroj" msgid "Specifies the directory the device is attached to" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "Určuje port na kterém bude tato instance <em>Dropbearu</em> naslouchat" @@ -4608,7 +4590,7 @@ msgstr "Start" msgid "Start priority" msgstr "Priorita spouštění" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4616,7 +4598,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "Po spuštění" @@ -4628,7 +4610,7 @@ msgstr "Statické IPv4 trasy" msgid "Static IPv6 Routes" msgstr "Statické IPv6 trasy" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Statické zápůjčky" @@ -4636,11 +4618,11 @@ msgstr "Statické zápůjčky" msgid "Static Routes" msgstr "Statické trasy" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "Statická adresa" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4657,8 +4639,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Stav" @@ -4683,7 +4664,7 @@ msgstr "Potlačit logování" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4713,7 +4694,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4731,7 +4712,7 @@ msgid "Synchronizing..." msgstr "Synchronizuji..." #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4751,7 +4732,7 @@ msgstr "Vlastnosti systému" msgid "System log buffer size" msgstr "Velikost bufferu systémového logu" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4769,7 +4750,7 @@ msgstr "Kořenový adresář TFTP serveru" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "Rychlost TX" @@ -4852,7 +4833,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4899,6 +4880,16 @@ msgstr "Následující změny byly vráceny" msgid "The following rules are currently active on this system." msgstr "Následující pravidla jsou v nyní na tomto systému aktivní." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "Zadané jméno sítě není jedinečné" @@ -4953,7 +4944,7 @@ msgstr "Vybraný protokol potřebuje mít přiřazeno zařízení" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -4961,7 +4952,7 @@ msgstr "" "Systém maže konfigurační oddíl, po skončení procesu bude automaticky " "restartován." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -4974,18 +4965,26 @@ msgstr "" "nastavení, bude možná nutné obnovit adresu vašeho počítače, aby jste se " "mohli znovu připojit." +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Vzhled" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "Nejsou žádné aktivní zápůjčky." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -5009,7 +5008,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5091,7 +5090,7 @@ msgstr "" "V tomto seznamu vidíte přehled aktuálně běžících systémových procesů a " "jejich stavy." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "Tato stránka zobrazuje přehled aktivních síťových spojení." @@ -5117,6 +5116,10 @@ msgstr "" msgid "Timezone" msgstr "Časové pásmo" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5127,12 +5130,12 @@ msgstr "" "konfigurační soubory. Pro obnovení továrního nastavení stiskněte \"Obnovit " "výchozí\" (možné pouze s obrazy squashfs)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Dostupná celkem" @@ -5147,7 +5150,7 @@ msgstr "Traceroute" msgid "Traffic" msgstr "Provoz" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Přenos" @@ -5182,7 +5185,7 @@ msgstr "Trigger mód" msgid "Tunnel ID" msgstr "ID tunelu" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "Rozhraní tunelu" @@ -5197,12 +5200,12 @@ msgid "Tx-Power" msgstr "Tx-Power" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Typ" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5256,36 +5259,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "Neznámý" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "Neznámá chyba, heslo nebylo změněno!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "Nespravovaný" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Neuložené změny" @@ -5305,10 +5308,6 @@ msgstr "Nepodporovaný typ protokolu." msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "Aktualizovat seznamy" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5329,7 +5328,7 @@ msgstr "Nahrát soubor" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Uptime" @@ -5445,7 +5444,7 @@ msgstr "" msgid "Use routing table" msgstr "Použít směrovací tabulku" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5485,11 +5484,11 @@ msgstr "" msgid "Username" msgstr "Uživatelské jméno" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5539,11 +5538,6 @@ msgstr "" msgid "Verify" msgstr "Ověřit" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Verze" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5594,7 +5588,7 @@ msgstr "Čekání na realizaci změn..." msgid "Waiting for command to complete..." msgstr "Čekání na dokončení příkazu..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5627,16 +5621,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "Bezdrátová síť" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Bezdrátový adaptér" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Bezdrátová síť" @@ -5651,13 +5645,13 @@ msgstr "Zabezpečení bezdrátové sítě" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "Bezdrátová síť vypnuta" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "Bezdrátová síť nespojena" @@ -5681,6 +5675,10 @@ msgstr "Zapisovat přijaté požadavky DNS do systemového logu" msgid "Write system log to file" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5695,7 +5693,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5728,9 +5726,9 @@ msgstr "" msgid "any" msgstr "libovolný" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5747,7 +5745,7 @@ msgstr "auto" msgid "baseT" msgstr "baseT" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "přemostěný" @@ -5766,24 +5764,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "vytvoří most přes vybraná rozhraní" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "dB" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "dBm" @@ -5825,7 +5823,7 @@ msgstr "plný-duplex" msgid "half-duplex" msgstr "poloviční-duplex" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5847,44 +5845,44 @@ msgstr "pokud cílem je síť" msgid "input" msgstr "vstup" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "kB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "kB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "kbit/s" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5910,19 +5908,10 @@ msgstr "ne" msgid "no link" msgstr "žádné spojení" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "žádný" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5934,7 +5923,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "off" @@ -5942,11 +5931,11 @@ msgstr "off" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "on" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5964,11 +5953,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5982,7 +5971,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "směrované" @@ -6016,7 +6005,7 @@ msgstr "označený" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -6043,159 +6032,159 @@ msgstr "nespecifikovaný -nebo- vytvořit:" msgid "untagged" msgstr "neoznačený" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6209,6 +6198,72 @@ msgstr "ano" msgid "« Back" msgstr "« Zpět" +#~ msgid "" +#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " +#~ "authentication." +#~ msgstr "" +#~ "Vložte veřejné klíče (na každý řadek jeden) pro ověřovaní SSH přístupu." + +#~ msgid "Password successfully changed!" +#~ msgstr "Heslo bylo úspěšně změněno!" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "Neznámá chyba, heslo nebylo změněno!" + +#~ msgid "Design" +#~ msgstr "Vzhled" + +#~ msgid "Available packages" +#~ msgstr "Dostupné balíčky" + +#~ msgid "Displaying only packages containing" +#~ msgstr "Zobrazeny pouze balíčky obsahující" + +#~ msgid "Download and install package" +#~ msgstr "Stáhnout a nainstalovat balíček" + +#~ msgid "Filter" +#~ msgstr "Filtr" + +#~ msgid "Find package" +#~ msgstr "Vyhledat balíček" + +#~ msgid "Free space" +#~ msgstr "Volné místo" + +#~ msgid "Install" +#~ msgstr "Instalovat" + +#~ msgid "Installed packages" +#~ msgstr "Nainstalované balíčky" + +#~ msgid "No package lists available" +#~ msgstr "Seznam balíčků není k dispozici" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "OPKG-Configuration" +#~ msgstr "Konfigurace balíčků OPKG" + +#~ msgid "Package lists are older than 24 hours" +#~ msgstr "Seznamy balíčků jsou starší než 24 hodin" + +#~ msgid "Package name" +#~ msgstr "Název balíčku" + +#~ msgid "Software" +#~ msgstr "Software" + +#~ msgid "Update lists" +#~ msgstr "Aktualizovat seznamy" + +#~ msgid "Version" +#~ msgstr "Verze" + +#~ msgid "none" +#~ msgstr "žádný" + #~ msgid "Disable DNS setup" #~ msgstr "Zakázat nastavení DNS" diff --git a/modules/luci-base/po/de/base.po b/modules/luci-base/po/de/base.po index c5e6c1a896..77815901f0 100644 --- a/modules/luci-base/po/de/base.po +++ b/modules/luci-base/po/de/base.po @@ -3,20 +3,24 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-26 17:57+0200\n" -"PO-Revision-Date: 2018-07-15 12:25+0200\n" -"Last-Translator: JoeSemler <josef.semler@gmail.com>\n" +"PO-Revision-Date: 2018-11-20 11:33+0100\n" +"Last-Translator: Jo-Philipp Wich <jo@mein.io>\n" +"Language-Team: \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.8.11\n" -"Language-Team: \n" +"X-Generator: Poedit 2.0.5\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "%s darf nicht ohne VLAN-Tag in mehreren VLAN-Gruppen vorkommen!" @@ -49,16 +53,16 @@ msgstr "(keine Schnittstellen)" msgid "-- Additional Field --" msgstr "-- Zusätzliches Feld --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Bitte auswählen --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- benutzerdefiniert --" @@ -82,11 +86,11 @@ msgstr "-- UUID vergleichen --" msgid "-- please select --" msgstr "-- Bitte auswählen --" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Systemlast (1 Minute):" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "Systemlast (15 Minuten):" @@ -98,7 +102,7 @@ msgstr "vierstellige hexadezimale ID" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "Systemlast (5 Minuten):" @@ -154,7 +158,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "IPv4-Adresse" @@ -179,11 +183,11 @@ msgstr "IPv6 Host- oder Netzwerk-Addresse (CIDR)" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "IPv6-Gateway" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "IPv6-Suffix (hexadezimal)" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "LED Konfiguration" @@ -192,12 +196,12 @@ msgstr "LED Konfiguration" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "MAC-Adresse" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" "<abbr title=\"Eindeutiger DHCP Bezeichner (DHCP Unique Identifier)\">DUID</" @@ -231,19 +235,24 @@ msgstr "" "<br/>Hinweis: Der Cron-Dienst muss manuell neu gestartet werden wenn die " "Crontab-Datei vor der Bearbeitung leer war." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" +"Ein neuer Login ist erforderlich da die Benutzersitzung abgelaufen ist." + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -257,25 +266,25 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "Grenzwert für ARP-Auflösungsversuche" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "ATM (Asynchroner Transfer-Modus)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "ATM Brücken" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "ATM Virtual Channel Identifier (VCI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "ATM Virtual Path Identifier (VPI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -285,12 +294,12 @@ msgstr "" "Linux Netzwerkschnittstellen welche z.B. in Verbindung mit DHCP oder PPP " "genutzt werden können um sich in das Providernetzwerk einzuwählen." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "ATM Geräteindex" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -305,8 +314,6 @@ msgstr "Access Point" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Aktionen" @@ -318,8 +325,8 @@ msgstr "Aktive IPv4-Routen" msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "Aktive IPv6-Routen" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Aktive Verbindungen" @@ -346,6 +353,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Hinzufügen" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "Schlüssel hinzufügen" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "Lokalen Domainsuffx an Namen aus der Hosts-Datei anhängen" @@ -362,8 +376,8 @@ msgstr "Zusätzliche Hosts-Dateien" msgid "Additional servers file" msgstr "Zusätzliche Nameserver-Datei" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Adresse" @@ -379,7 +393,7 @@ msgstr "Administration" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -387,7 +401,7 @@ msgstr "Administration" msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "Vollständige Sendeleistung (ACTATP)" @@ -395,18 +409,18 @@ msgstr "Vollständige Sendeleistung (ACTATP)" msgid "Alert" msgstr "Alarm" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "Alias-Schnittstelle" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:86 msgid "Alias of \"%s\"" -msgstr "" +msgstr "Alias von \"%s\"" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 msgid "All Servers" -msgstr "" +msgstr "Alle Server" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 msgid "" @@ -420,13 +434,15 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "IPs sequenziell vergeben" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Erlaube Anmeldung per Passwort" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:533 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" +"Erlaubt dem Access-Point die Trennung von Clients mit schlechter " +"Signalqualität" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 @@ -446,15 +462,15 @@ msgstr "Nur gelistete erlauben" msgid "Allow localhost" msgstr "Erlaube localhost" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "Entfernten Hosts erlauben zu lokale SSH-Tunnel-Ports zu verbinden" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "\"root\" Login mit Passwort aktivieren" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "" "Erlaubt es dem <em>root</em> Benutzer sich mit einem Passwort statt einem " @@ -480,65 +496,68 @@ msgid "" "Always use 40MHz channels even if the secondary channel overlaps. Using this " "option does not comply with IEEE 802.11n-2009!" msgstr "" +"Immer 40MHz Kanalbandbreite benutzen, auch wenn sich der sekundäre Kanal mit " +"benachbarten Funkzellen überlappt. Die Benutzung dieser Option ist eine " +"Verletzung des IEEE 802.11n-2009 Standards!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" -msgstr "" +msgstr "Annex A, L und M (alle)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "Annex B (alle Arten)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "Annex J (alle Arten)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "Annex M (alle Arten)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -586,17 +605,17 @@ msgstr "Antennenkonfiguration" msgid "Any zone" msgstr "Beliebige Zone" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "Ungeprüft anwenden" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" "Anforderung zur Anwendung der Änderungen mit Status <code>%h</code> " "fehlgeschlagen" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "Architektur" @@ -621,11 +640,11 @@ msgstr "" "dieser hexadezimalen ID gewählt." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Assoziierte Clients" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "Assoziierungen" @@ -656,8 +675,8 @@ msgstr "Autorisierung benötigt" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Automatisches Neuladen" @@ -700,29 +719,25 @@ msgstr "SWAP automatisch aktivieren" msgid "Available" msgstr "Verfügbar" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Verfügbare Pakete" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Durchschnitt:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -733,7 +748,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -763,7 +778,7 @@ msgstr "Zurück zu den Scan-Ergebnissen" msgid "Backup" msgstr "Sichern" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Backup / Firmware Update" @@ -782,7 +797,7 @@ msgstr "Frequenztyp" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 msgid "Beacon Interval" -msgstr "" +msgstr "Beacon-Intervall" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:39 msgid "" @@ -795,23 +810,25 @@ msgstr "" "markierten Konfigurationsdateien. Des Weiteren sind die durch " "benutzerdefinierte Dateiemuster betroffenen Dateien enthalten." +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" +msgstr "" +"Dynamisch an Schnittstellen binden statt die globale Standardadresse zu " +"benutzen (als Standard für Linux-Systeme empfohlen)" + #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind interface" msgstr "An Schnittstelle binden" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." -msgstr "" -"Nur auf angegebenen Schnittstellen reagieren, anstatt auf allen " -"Schnittstellen zu antworten." - #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind the tunnel to this interface (optional)." msgstr "Tunnelendpunkt an diese Schnittstelle binden (optional)" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Bitrate" @@ -819,7 +836,7 @@ msgstr "Bitrate" msgid "Bogus NX Domain Override" msgstr "Ungültige \"NX-Domain\" Antworten ignorieren" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Bridge" @@ -827,7 +844,7 @@ msgstr "Bridge" msgid "Bridge interfaces" msgstr "Netzwerkbrücke" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "Geräteindex der Brücke" @@ -843,18 +860,10 @@ msgstr "Broadcom 802.11%s W-LAN Adapter" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Broadcom BCM%04x 802.11 W-LAN Adapter" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "Gepuffert" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" -"Konfiguriert die distributionsspezifischen Paket-Repositories. Diese " -"Konfiguration wird bei Upgrades NICHT gesichert." - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -871,6 +880,7 @@ msgstr "Anruf fehlgeschlagen" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Abbrechen" @@ -881,11 +891,11 @@ msgstr "Kategorie" #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 msgid "Caution: Configuration files will be erased" -msgstr "" +msgstr "Achtung: Konfigurationsdateien werden gelöscht" #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 msgid "Caution: System upgrade will be forced" -msgstr "" +msgstr "Achtung: Systemupgrade wird erzwungen" #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:89 @@ -893,6 +903,12 @@ msgstr "" msgid "Chain" msgstr "Kette" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "Login-Passwort ändern" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -902,20 +918,24 @@ msgstr "Änderungen" msgid "Changes applied." msgstr "Änderungen angewendet." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "Änderungen wurden verworfen" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "Ändert das Administratorpasswort für den Zugriff auf dieses Gerät" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "Ändere Passwort…" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Kanal" @@ -946,7 +966,7 @@ msgstr "Prüfsumme" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 msgid "Choose mtdblock" -msgstr "" +msgstr "Wähle \"mtdblock\" Datei" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 @@ -990,6 +1010,9 @@ msgid "" "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " "FEATURE IS FOR PROFESSIONALS! )" msgstr "" +"\"Speichere mtdblock\" anklicken um die ausgewählte mtdblock-Datei " +"herunterzuladen. (Hinweis: Diese Funktionalität ist nur für Experten " +"gedacht!)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 @@ -1001,6 +1024,11 @@ msgstr "Client" msgid "Client ID to send when requesting DHCP" msgstr "Zu sendende Client-ID bei DHCP Anfragen" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "Schließen" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -1020,16 +1048,16 @@ msgstr "Schließe Liste..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1041,7 +1069,7 @@ msgstr "Befehl" #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:105 msgid "Comment" -msgstr "" +msgstr "Kommentar" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 msgid "Common Configuration" @@ -1064,8 +1092,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Konfiguration" @@ -1075,17 +1101,17 @@ msgstr "Konfiguration fehlgeschlagen" #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 msgid "Configuration files will be kept" -msgstr "" +msgstr "Konfigurationsdateien werden beibehalten" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "Die Konfiguration wurde angewendet." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "Die Konfiguration wurde zurückgerollt!" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Bestätigung" @@ -1094,8 +1120,8 @@ msgid "Connect" msgstr "Verbinden" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Verbunden" @@ -1111,7 +1137,7 @@ msgstr "Verbindungsversuch fehlgeschlagen" msgid "Connections" msgstr "Verbindungen" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1172,18 +1198,6 @@ msgstr "benutzerdefinierte Schnittstelle" msgid "Custom delegated IPv6-prefix" msgstr "Delegierter IPv6-Präfix" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" -"Selbst konfigurierte Paket-Repositories, z.B. private oder inoffizielle " -"Quellen. Diese Konfiguration wird by Upgrades gesichert." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "Eigene Repositories" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1209,7 +1223,7 @@ msgstr "DHCP-Server" msgid "DHCP and DNS" msgstr "DHCP und DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "DHCP Client" @@ -1229,16 +1243,16 @@ msgstr "DHCPv6-Modus" msgid "DHCPv6-Service" msgstr "DHCPv6-Dienst" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1266,16 +1280,16 @@ msgstr "DPD Inaktivitätstimeout" msgid "DS-Lite AFTR address" msgstr "DS-Lite AFTR-Adresse" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "DSL Leitungsmodus" @@ -1287,7 +1301,7 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "Datenrate" @@ -1301,6 +1315,10 @@ msgstr "Debug" msgid "Default %d" msgstr "Standard %d" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1337,6 +1355,11 @@ msgstr "" msgid "Delete" msgstr "Löschen" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "Schlüssel löschen" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Dieses Netzwerk löschen" @@ -1345,16 +1368,11 @@ msgstr "Dieses Netzwerk löschen" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Beschreibung" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Design" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Ziel" @@ -1362,8 +1380,8 @@ msgstr "Ziel" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1380,7 +1398,7 @@ msgstr "Gerätekonfiguration" msgid "Device is rebooting..." msgstr "Das Gerät startet neu..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "Das Gerät ist nicht erreichbar" @@ -1420,7 +1438,7 @@ msgstr "Verschlüsselung deaktivieren" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:518 msgid "Disable Inactivity Polling" -msgstr "" +msgstr "Inaktivitäts-Proben deaktivieren" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:106 msgid "Disable this network" @@ -1442,24 +1460,27 @@ msgstr "Deaktiviert (Standard)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Disassociate On Low Acknowledgement" -msgstr "" +msgstr "Trennung bei schlechtem Antwortverhalten" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 msgid "Discard upstream RFC1918 responses" msgstr "Eingehende RFC1918-Antworten verwerfen" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "Trennen" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "Verbindungstrennung fehlgeschlagen" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "Schließen" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "Nur Pakete mit folgendem Inhalt anzeigen" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1469,10 +1490,6 @@ msgstr "Distanzoptimierung" msgid "Distance to farthest network member in meters." msgstr "Distanz zum am weitesten entfernten Funkpartner in Metern." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "Distributionsrepositories" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Diversität" @@ -1506,6 +1523,11 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Keine Rückwärtsauflösungen für lokale Netzwerke weiterleiten" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" +"Soll der untenstehende SSH-Schlüssel wirklich vom System entfernt werden?" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Anfragen nur mit Domain" @@ -1528,27 +1550,23 @@ msgstr "Anfragen ohne Domainnamen nicht weiterleiten" msgid "Down" msgstr "runter" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Paket herunterladen und installieren" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "Backup herunterladen" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 msgid "Download mtdblock" -msgstr "" +msgstr "Mtdblock-Datei herunterladen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "Downstream SNR-Offset" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Dropbear Instanz" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1669,9 +1687,8 @@ msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "WPS-via-Knopfdruck aktivieren, erfordert WPA(2)-PSK" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 -#, fuzzy msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "Key Reinstallation (KRACK) Gegenmaßnahmen aktivieren " +msgstr "Key Reinstallation (KRACK) Gegenmaßnahmen aktivieren" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:136 msgid "Enable learning and aging" @@ -1727,8 +1744,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "Aktiviert das Spanning Tree Protokoll auf dieser Netzwerkbrücke" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "Kapselung" @@ -1736,7 +1753,7 @@ msgstr "Kapselung" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Verschlüsselung" @@ -1756,7 +1773,7 @@ msgstr "Eigenen Wert angeben" msgid "Enter custom values" msgstr "Eigene Werte angeben" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "Lösche..." @@ -1765,19 +1782,19 @@ msgstr "Lösche..." msgid "Error" msgstr "Fehler" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "Fehlersekunden (ES)" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Netzwerkschnittstelle" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Netzwerk Switch" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "Schnittstellen ausschließen" @@ -1785,11 +1802,11 @@ msgstr "Schnittstellen ausschließen" msgid "Expand hosts" msgstr "Hosts vervollständigen" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" -msgstr "" +msgstr "Erwarte %s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Verfällt" @@ -1841,7 +1858,7 @@ msgstr "FT-drahtlos" msgid "FT protocol" msgstr "FT Protokoll" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" "Konnte nicht innerhalb von %d Sekunden bestätigen, warte auf Zurückrollen " @@ -1861,10 +1878,6 @@ msgstr "Dateiname des Boot-Images welches den Clients mitgeteilt wird." msgid "Filesystem" msgstr "Dateisystem" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Filter" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Private Anfragen filtern" @@ -1890,10 +1903,6 @@ msgstr "" msgid "Find and join network" msgstr "Suchen und Verbinden von Netzwerken" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Paket suchen" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Fertigstellen" @@ -1914,11 +1923,11 @@ msgstr "Firewall Einstellungen" msgid "Firewall Status" msgstr "Firewall-Status" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "Firmware-Datei" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Firmware Version" @@ -1942,7 +1951,7 @@ msgstr "Neues Firmware Image schreiben" msgid "Flash operations" msgstr "Flash-Operationen" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "Firmware wird installiert..." @@ -1952,7 +1961,7 @@ msgstr "Start erzwingen" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 msgid "Force 40MHz mode" -msgstr "" +msgstr "40MHz-Modus forcieren" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:610 msgid "Force CCMP (AES)" @@ -1978,7 +1987,7 @@ msgstr "Erzwinge Verbindung" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 msgid "Force upgrade" -msgstr "" +msgstr "Erzwinge Upgrade" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 msgid "Force use of NAT-T" @@ -1992,7 +2001,7 @@ msgstr "Abweichendes Formular-Token" msgid "Forward DHCP traffic" msgstr "DHCP Traffic weiterleiten" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "Fehlerkorrektursekunden (FECS)" @@ -2004,7 +2013,7 @@ msgstr "Broadcasts weiterleiten" msgid "Forward mesh peer traffic" msgstr "Mesh-Nachbar-Traffic weiterleiten" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "Weiterleitungstyp" @@ -2017,15 +2026,11 @@ msgstr "Fragmentierungsschwelle" msgid "Frame Bursting" msgstr "Frame Bursting" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "Frei" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Freier Platz" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -2036,7 +2041,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "GHz" @@ -2045,8 +2050,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Nur GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Gateway" @@ -2054,7 +2059,7 @@ msgstr "Gateway" msgid "Gateway address is invalid" msgstr "Gateway-Adresse ist ungültig" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "Gateway-Ports" @@ -2067,16 +2072,12 @@ msgstr "Allgemeine Einstellungen" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "Allgemeine Einstellungen" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "Allgemeine Optionen für Opkg." - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "Konfiguration generieren" @@ -2093,7 +2094,7 @@ msgstr "Sicherung erstellen" msgid "Generic 802.11%s Wireless Controller" msgstr "Generischer 802.11%s W-LAN Adapter" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "" "Die angegebenen Passwörter stimmen nicht überein, das Systempasswort wurde " @@ -2103,14 +2104,14 @@ msgstr "" msgid "Global Settings" msgstr "Globale Einstellungen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "Globale Netzwerkeinstellungen" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "Zur Passwortkonfiguration..." @@ -2143,7 +2144,7 @@ msgstr "HT-Modus (802.11n)" msgid "Hang Up" msgstr "Auflegen" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "Anzahl Header-Error-Code-Fehler (HEC)" @@ -2155,13 +2156,6 @@ msgstr "" "An dieser Stelle können Grundeinstellungen des Systems wie Hostname oder " "Zeitzone vorgenommen werden." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" -"Hier können öffentliche SSH-Schlüssel reinkopiert werden (einer pro Zeile)." - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2171,10 +2165,10 @@ msgstr "ESSID verstecken" #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:140 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:310 msgid "Hide empty chains" -msgstr "" +msgstr "Leere Chains ausblenden" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2195,9 +2189,9 @@ msgid "Host-Uniq tag content" msgstr "\"Host-Uniq\"-Bezeichner" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2218,7 +2212,7 @@ msgstr "" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 msgid "IKE DH Group" -msgstr "" +msgstr "IKE-DH-Gruppe" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 msgid "IP Addresses" @@ -2226,7 +2220,7 @@ msgstr "IP-Adressen" #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 msgid "IP Protocol" -msgstr "" +msgstr "IP-Protokoll" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 msgid "IP address" @@ -2252,7 +2246,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4 Firewall" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2276,9 +2270,9 @@ msgstr "IPv4 Gateway" msgid "IPv4 netmask" msgstr "IPv4 Netzmaske" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" -msgstr "" +msgstr "IPv4-Netzwerk in Addresse/Netzmaske-Notation" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 msgid "IPv4 prefix" @@ -2321,11 +2315,11 @@ msgstr "IPv6 Nachbarn" msgid "IPv6 Settings" msgstr "IPv6 Einstellungen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "IPv6 ULA-Präfix" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2347,9 +2341,9 @@ msgstr "IPv6 Zuweisungslänge" msgid "IPv6 gateway" msgstr "IPv6 Gateway" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" -msgstr "" +msgstr "IPv6-Netzwerk in Addresse/Netzmaske-Notation" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 @@ -2505,7 +2499,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "Timeout bei Inaktivität" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "Eingehend:" @@ -2525,10 +2519,6 @@ msgstr "Startscript" msgid "Initscripts" msgstr "Startscripte" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Installieren" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2543,17 +2533,13 @@ msgstr "Installiere Paket %q" msgid "Install protocol extensions..." msgstr "Installiere Protokoll-Erweiterungen" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "Installierte Pakete" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Schnittstelle" @@ -2632,7 +2618,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "JavaScript benötigt!" @@ -2657,7 +2643,7 @@ msgstr "Konfiguration behalten" msgid "Kernel Log" msgstr "Kernelprotokoll" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Kernel Version" @@ -2703,7 +2689,7 @@ msgstr "LCP Echo Fehler Schwellenwert" msgid "LCP echo interval" msgstr "LCP Echo Intervall" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2720,7 +2706,7 @@ msgstr "Sprache" msgid "Language and Style" msgstr "Sprache und Aussehen" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "Latenz" @@ -2728,7 +2714,7 @@ msgstr "Latenz" msgid "Leaf" msgstr "Zweigstelle" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "Laufzeit" @@ -2773,19 +2759,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "Dienste auf die angegeben Schnittstellen plus Loopback beschränken." -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "Dämpfung (LATN)" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "Verbindungsmodus" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "Verbindungsstatus" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "Verbindungsdauer" @@ -2851,7 +2837,7 @@ msgstr "Aktive Schnittstellen" msgid "Listen Port" msgstr "Aktive Ports" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Nur auf die gegebene Schnittstelle reagieren, nutze alle wenn nicht " @@ -2867,7 +2853,7 @@ msgstr "Serverport für eingehende DNS Abfragen" msgid "Load" msgstr "Last" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Durchschnittslast" @@ -2877,6 +2863,10 @@ msgstr "Durchschnittslast" msgid "Loading" msgstr "Lade" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "Lade SSH-Schlüssel…" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "Lokale IP-Adresse ist ungültig" @@ -2906,7 +2896,7 @@ msgstr "Nur lokale Dienste" msgid "Local Startup" msgstr "Lokales Startskript" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Lokale Zeit" @@ -2967,11 +2957,11 @@ msgstr "Protokollierung" msgid "Login" msgstr "Anmelden" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Abmelden" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "Signalverlustsekunden (LOSS)" @@ -2986,9 +2976,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-Adresse" @@ -3024,7 +3014,7 @@ msgstr "MB/s" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "MHz" @@ -3050,13 +3040,13 @@ msgstr "Das Root-Dateisystem muss mit folgenden Kommandsos vorbereitet werden:" msgid "Manual" msgstr "Manuell" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Maximal erreichbare Datenrate (ATTNDR)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:527 msgid "Maximum allowed Listen Interval" -msgstr "" +msgstr "Maximal erlaubter Inaktivitätszeitraum" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 msgid "Maximum allowed number of active DHCP leases" @@ -3088,16 +3078,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "Maximal zulässige Anzahl von vergeben DHCP-Adressen" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Hauptspeicher" @@ -3140,17 +3130,17 @@ msgstr "Mobilitätsbereich" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Modus" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "Modell" #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 msgid "Modem default" -msgstr "" +msgstr "Modem-Grundeinstellung" #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 @@ -3183,7 +3173,7 @@ msgstr "Mount-Eintrag" msgid "Mount Point" msgstr "Einhängepunkt" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3209,7 +3199,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "Nicht explizit konfigurierte Dateisysteme einhängen" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "Mount-Optionen" @@ -3280,15 +3270,15 @@ msgstr "Name des neuen Netzwerkes" msgid "Navigation" msgstr "Navigation" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Netzmaske" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3314,6 +3304,10 @@ msgstr "Netzwerk ohne Schnittstellen." msgid "Next »" msgstr "Weiter »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "Nein" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "Kein DHCP Server auf dieser Schnittstelle eingerichtet" @@ -3326,9 +3320,9 @@ msgstr "Kein NAT-T" msgid "No files found" msgstr "Keine Dateien gefunden" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "Keine Informationen verfügbar" @@ -3348,48 +3342,47 @@ msgstr "Keine Netzwerke auf diesem Gerät konfiguriert" msgid "No network name specified" msgstr "Netzwerkname nicht angegeben" -# Ich glab das ist so richtiger -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "Es sind keine Paketlisten vorhanden" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "Kein Passwort gesetzt!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "Bisher keine SSH-Schlüssel hinterlegt." + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "Keine Regeln in dieser Kette" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:171 msgid "No scan results available yet..." -msgstr "" +msgstr "Noch keine Scan-Ergebnisse verfügbar..." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:25 msgid "No zone assigned" msgstr "Keine Zone zugewiesen" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Rauschen" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "Signal-Rausch-Abstand (SNR)" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Noise:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "Nicht-präemptive CRC-Fehler (CRC_P)" @@ -3415,8 +3408,8 @@ msgstr "Nicht Gefunden" msgid "Not associated" msgstr "Nicht assoziiert" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "Nicht verbunden" @@ -3440,15 +3433,7 @@ msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 msgid "Number of parallel threads used for compression" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "OK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "OPKG-Konfiguration" +msgstr "Für Kompression benutze parallele Prozessanzahl" #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" @@ -3490,7 +3475,7 @@ msgstr "" msgid "On-State Delay" msgstr "Verzögerung für Anschalt-Zustand" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "Es muss entweder ein Hostname oder eine MAC-Adresse angegeben werden!" @@ -3604,7 +3589,7 @@ msgstr "" msgid "Options" msgstr "Optionen" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "Andere:" @@ -3612,7 +3597,7 @@ msgstr "Andere:" msgid "Out" msgstr "Aus" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "Ausgehend:" @@ -3749,7 +3734,7 @@ msgstr "PSID-Offset" msgid "PSID-bits length" msgstr "PSID-Bitlänge" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "PTM/EFM (Paket-Transfer-Modus)" @@ -3757,15 +3742,6 @@ msgstr "PTM/EFM (Paket-Transfer-Modus)" msgid "Package libiwinfo required!" msgstr "Benötige das libiwinfo Paket!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "Die Paketlisten sind älter als 24 Stunden" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Paketname" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Pakete" @@ -3776,13 +3752,13 @@ msgstr "Teil von Zone %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Passwort" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Passwortanmeldung" @@ -3794,14 +3770,14 @@ msgstr "Passwort des privaten Schlüssels" msgid "Password of inner Private Key" msgstr "Password des inneren, privaten Schlüssels" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "Passwort erfolgreich geändert!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "Passwort Bestätigung" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "Schlüssel einfügen oder Schlüsseldatei hereinziehen…" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Pfad zum CA-Zertifikat" @@ -3826,17 +3802,17 @@ msgstr "Pfad zum inneren Client-Zertifikat" msgid "Path to inner Private Key" msgstr "Pfad zum inneren, privaten Schlüssel" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "Spitze:" @@ -3868,13 +3844,13 @@ msgstr "Reset durchführen" msgid "Persistent Keep Alive" msgstr "Persistentes Keep-Alive" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "Phy-Rate:" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 msgid "Physical Settings" -msgstr "Physikalische Einstellungen" +msgstr "Physische Einstellungen" #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 @@ -3896,16 +3872,11 @@ msgstr "Pkte." msgid "Please enter your username and password." msgstr "Bitte Benutzernamen und Passwort eingeben." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "Standardregel" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3913,11 +3884,11 @@ msgstr "Port" msgid "Port status:" msgstr "Port-Status:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "Energiesparmodus" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "Präemptive CRC-Fehler (CRCP_P)" @@ -3929,7 +3900,7 @@ msgstr "LTE bevorzugen" msgid "Prefer UMTS" msgstr "UMTS bevorzugen" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "Delegiertes Präfix" @@ -3950,7 +3921,7 @@ msgstr "" "Deklariere den Client als tot nach der angegebenen Anzahl von LCP Echo " "Fehlschlägen, nutze den Wert 0 um Fehler zu ignorieren" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "Verhindert das Binden an diese Schnittstellen" @@ -3972,7 +3943,7 @@ msgstr "Fortfahren" msgid "Processes" msgstr "Prozesse" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "Profil" @@ -3982,9 +3953,9 @@ msgstr "Prot." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protokoll" @@ -4012,6 +3983,20 @@ msgstr "Pseudo Ad-Hoc (ahdemo)" msgid "Public Key" msgstr "Öffentlicher Schlüssel" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" +"Öffentliche Schlüssel erlauben eine passwortlose SSH-Anmeldung mit höherer " +"Sicherheit im Vergleich zur Benutzung einfacher Passwörter. Um einen neuen " +"Schlüssel auf dem Gerät zu hinterlegen, kann entweder eine OpenSSH-" +"kompatible öffentliche Schlüsselzeile in das Eingabefeld kopiert, oder eine " +"eine Schlüsseldatei mit der Endung <code>.pub</code> in das Eingabefeld " +"gezogen werden." + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -4023,7 +4008,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "Qualität" @@ -4031,7 +4016,7 @@ msgstr "Qualität" msgid "" "Query all available upstream <abbr title=\"Domain Name System\">DNS</abbr> " "servers" -msgstr "" +msgstr "Alle verfügbaren übergeordneten DNS-Server abfragen" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 msgid "R0 Key Lifetime" @@ -4057,7 +4042,7 @@ msgstr "RTS/CTS-Schwelle" msgid "RX" msgstr "RX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "RX-Rate" @@ -4124,7 +4109,7 @@ msgstr "Sollen wirklich alle Änderungen verworfen werden?" msgid "Really switch protocol?" msgstr "Protokoll wirklich wechseln?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "Echtzeitverbindungen" @@ -4132,15 +4117,15 @@ msgstr "Echtzeitverbindungen" msgid "Realtime Graphs" msgstr "Echtzeit-Diagramme" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "Echtzeitsystemlast" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "Echtzeitverkehr" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "Echtzeit-WLAN-Signal" @@ -4152,7 +4137,7 @@ msgstr "Reassoziierungsfrist" msgid "Rebind protection" msgstr "DNS-Rebind-Schutz" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Neu Starten" @@ -4214,7 +4199,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "Entfernte IPv4-Adresse oder Hostname" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Entfernen" @@ -4287,7 +4271,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Zurücksetzen" @@ -4330,6 +4313,8 @@ msgid "Restore backup" msgstr "Sicherung wiederherstellen" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "Passwort zeigen/verstecken" @@ -4339,15 +4324,15 @@ msgstr "Passwort zeigen/verstecken" msgid "Revert" msgstr "Verwerfen" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "Änderungen verwerfen" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "Anforderung zum Verwerfen mit Status <code>%h</code> fehlgeschlagen" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "Verwerfe Konfigurationsänderungen..." @@ -4376,7 +4361,8 @@ msgstr "Routen-Typ" msgid "Router Advertisement-Service" msgstr "Router-Advertisement-Dienst" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "Routerpasswort" @@ -4396,13 +4382,13 @@ msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:281 msgid "Rule" -msgstr "" +msgstr "Regel" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "Vor dem Einhängen Dateisystemprüfung starten " -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "Dateisystemprüfung durchführen" @@ -4410,11 +4396,12 @@ msgstr "Dateisystemprüfung durchführen" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH-Zugriff" @@ -4430,7 +4417,8 @@ msgstr "SSH-Server-Port" msgid "SSH username" msgstr "SSH Benutzername" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "SSH-Schlüssel" @@ -4439,7 +4427,7 @@ msgstr "SSH-Schlüssel" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4450,6 +4438,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Speichern" @@ -4460,11 +4449,15 @@ msgstr "Speichern & Anwenden" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 msgid "Save mtdblock" -msgstr "" +msgstr "Speichere mtdblock" #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 msgid "Save mtdblock contents" -msgstr "" +msgstr "Inhalte von mtdblock-Partitionen speichern" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "Speichere Schlüssel…" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" @@ -4472,9 +4465,9 @@ msgstr "Scan" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:133 msgid "Scan request failed" -msgstr "" +msgstr "Scan-Anforderung fehlgeschlagen" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Geplante Aufgaben" @@ -4487,7 +4480,7 @@ msgstr "Sektion hinzugefügt" msgid "Section removed" msgstr "Sektion entfernt" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "Siehe \"mount\" Handbuch für Details" @@ -4497,6 +4490,9 @@ msgid "" "fails. Use only if you are sure that the firmware is correct and meant for " "your device!" msgstr "" +"\"Upgrade erzwingen\" auswählen um die Abbilddatei auch dann zu schreiben, " +"wenn die Formatüberprüfung fehlschlägt. Diese Option nur benutzen wenn das " +"Abbild korrekt und für dieses Gerät bestimmt ist!" #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 @@ -4532,6 +4528,14 @@ msgstr "Service-Typ" msgid "Services" msgstr "Dienste" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "Sitzung abgelaufen" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "VPN als Defaultroute benutzen" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4558,17 +4562,17 @@ msgstr "Setzen des Betriebsmodus fehlgeschlagen" msgid "Setup DHCP Server" msgstr "DHCP Server einrichten" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "schwerwiegende Fehlersekunden (SES)" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "kurzes Guardintervall" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:504 msgid "Short Preamble" -msgstr "" +msgstr "Kurze Präambel" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 msgid "Show current backup file list" @@ -4576,28 +4580,28 @@ msgstr "Zeige aktuelle Liste der gesicherten Dateien" #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:140 msgid "Show empty chains" -msgstr "" +msgstr "Leere Chains anzeigen" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:53 msgid "Shutdown this interface" msgstr "Diese Schnittstelle herunterfahren" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Signal" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "Signaldämpfung (SATN)" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "Signal:" @@ -4605,17 +4609,13 @@ msgstr "Signal:" msgid "Size" msgstr "Größe" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "Größe (.ipk)" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "Größe des DNS-Caches" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 msgid "Size of the ZRam device in megabytes" -msgstr "" +msgstr "Größe der ZRAM-Gerätedatei in Megabytes." #: modules/luci-base/luasrc/view/cbi/footer.htm:18 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 @@ -4636,12 +4636,7 @@ msgstr "Zur Navigation springen" msgid "Slot time" msgstr "Zeitslot" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Paketverwaltung" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "Software-VLAN" @@ -4668,7 +4663,7 @@ msgstr "" "geflasht werden. Weitere Informationen sowie gerätespezifische " "Installationsanleitungen entnehmen Sie bitte dem Wiki." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4678,7 +4673,7 @@ msgstr "Quelle" msgid "Specifies the directory the device is attached to" msgstr "Nennt das Verzeichnis, an welches das Gerät angebunden ist" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "Gibt den Server-Port dieser <em>Dropbear</em>-Instanz an" @@ -4732,15 +4727,15 @@ msgstr "Start" msgid "Start priority" msgstr "Startpriorität" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "Starte Anwendung der Konfigurationsänderungen..." #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:128 msgid "Starting wireless scan..." -msgstr "" +msgstr "Starte WLAN Scan..." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "Systemstart" @@ -4752,7 +4747,7 @@ msgstr "Statische IPv4 Routen" msgid "Static IPv6 Routes" msgstr "Statische IPv6 Routen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Statische Einträge" @@ -4760,11 +4755,11 @@ msgstr "Statische Einträge" msgid "Static Routes" msgstr "Statische Routen" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "Statische Adresse" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4777,13 +4772,12 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:522 msgid "Station inactivity limit" -msgstr "" +msgstr "Client-Inaktivitäts-Limit" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Status" @@ -4809,7 +4803,7 @@ msgid "Suppress logging of the routine operation of these protocols" msgstr "" "Logeinträge für erfolgreiche Operationen dieser Protokolle unterdrücken" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "Auslagerungsspeicher" @@ -4841,7 +4835,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "Switch-Port-Maske" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "Switch-VLAN" @@ -4859,7 +4853,7 @@ msgid "Synchronizing..." msgstr "Synchronisiere..." #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4879,7 +4873,7 @@ msgstr "Systemeigenschaften" msgid "System log buffer size" msgstr "Größe des Systemprotokoll-Puffers" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4898,7 +4892,7 @@ msgstr "TFTP Wurzelverzeichnis" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "TX-Rate" @@ -4925,7 +4919,6 @@ msgid "Terminate" msgstr "Beenden" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:25 -#, fuzzy msgid "" "The <em>Device Configuration</em> section covers physical settings of the " "radio hardware such as channel, transmit power or antenna selection which " @@ -4933,7 +4926,7 @@ msgid "" "multi-SSID capable). Per network settings like encryption or operation mode " "are grouped in the <em>Interface Configuration</em>." msgstr "" -"Die <em>Gerätekonfiguration</em> deckt physikalische Einstellungen der WLAN-" +"Die <em>Gerätekonfiguration</em> deckt physische Einstellungen der WLAN-" "Hardware wie Kanal, Sendestärke oder Antennenauswahl ab. Diese Einstellungen " "werden von allen Netzwerken auf dem Gerät geteilt. Netzwerk-spezifische " "Einstellungen wie Verschlüsselung oder Betriebsmodus sind in der " @@ -4988,7 +4981,7 @@ msgstr "" "Die Konfigurationsdatei konnte aufgrund der folgenden Fehler nicht geladen " "werden:" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -5039,6 +5032,18 @@ msgstr "Die folgenden Änderungen wurden verworfen" msgid "The following rules are currently active on this system." msgstr "Die folgenden Regeln sind zur Zeit auf dem System aktiv." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "Der angegebene öffentliche SSH-Schlüssel wurde bereits hinzugefügt." + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" +"Der angegebene öffentliche SSH Schlüssel ist ungültig, bitte OpenSSH-" +"kompatible öffentliche RSA oder ECDSA-Schlüssel verwenden." + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "Der angebene Netzwerk-Name ist nicht eindeutig" @@ -5098,7 +5103,7 @@ msgid "The submitted security token is invalid or already expired!" msgstr "" "Das mitgesendete Sicherheits-Token ist ungültig oder bereits abgelaufen!" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -5106,7 +5111,7 @@ msgstr "" "Die Einstellungen werden nun gelöscht! Anschließend wird ein Neustart des " "Systems durchgeführt." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -5119,6 +5124,10 @@ msgstr "" "Konfiguration ist es notwendig, dass Sie auf Ihrem Computer eine neue IP-" "Adresse beziehen müssen um auf das Gerät zugreifen zu können." +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "Das Systempasswort wurde erfolgreich geändert." + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -5127,12 +5136,16 @@ msgstr "" "Das hochgeladene Firmware-Image hat ein nicht unterstütztes Format. Stellen " "Sie sicher dass Sie das generische Format für Ihre Platform gewählt haben." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Thema" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "Es gibt z.Z. keine aktiven Leases." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "Es gibt keine ausstehenden Änderungen anzuwenden." @@ -5149,14 +5162,14 @@ msgid "" "There is no device assigned yet, please attach a network device in the " "\"Physical Settings\" tab" msgstr "" -"Es wurde noch kein Netzwerkgerät zugeordnet, bitte ein Gerät im " -"\"Physikalische Einstellungen\" Bereich anfügen" +"Es wurde noch kein Netzwerkgerät zugeordnet, bitte ein Gerät im \"Physische " +"Einstellungen\" Bereich anfügen" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5250,7 +5263,7 @@ msgstr "" "Diese Tabelle gibt eine Übersicht über aktuell laufende Systemprozesse und " "deren Status." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "Diese Seite gibt eine Übersicht über aktive Netzwerkverbindungen." @@ -5270,12 +5283,16 @@ msgstr "Die Zeitsynchronisation wurde noch nicht konfiguriert." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 msgid "Time interval for rekeying GTK" -msgstr "" +msgstr "Zeitintervall für die neubestimmung des Gruppenschlüssels" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 msgid "Timezone" msgstr "Zeitzone" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "Zum Login…" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5287,12 +5304,12 @@ msgstr "" "Auslieferungszustand des Systems wieder her (nur möglich bei squashfs-" "Images)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "Ton" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Gesamt verfügbar" @@ -5308,7 +5325,7 @@ msgstr "Routenverfolgung" msgid "Traffic" msgstr "Traffic" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Transfer" @@ -5343,7 +5360,7 @@ msgstr "Auslösmechanismus" msgid "Tunnel ID" msgstr "Tunnel-ID" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "Tunnelschnittstelle" @@ -5358,12 +5375,12 @@ msgid "Tx-Power" msgstr "Sendestärke" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Typ" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5417,36 +5434,36 @@ msgstr "Der AFTR-Hostname konnte nicht aufgelöst werden" msgid "Unable to resolve peer host name" msgstr "Der Name des entfernten Hosts konnte nicht aufgelöst werden" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "Nicht verfügbare Sekunden (UAS)" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "Unbekannt" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "Unbekannter Fehler, Passwort nicht geändert!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "Protokollfehler: %s" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "Ignoriert" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "Aushängen" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "Unbenannter Schlüssel" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Ungespeicherte Änderungen" @@ -5466,10 +5483,6 @@ msgstr "Nicht unterstützter Protokolltyp." msgid "Up" msgstr "Hoch" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "Listen aktualisieren" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5490,7 +5503,7 @@ msgstr "hochgeladene Datei" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Laufzeit" @@ -5606,7 +5619,7 @@ msgstr "Benutze Gateway-Metrik" msgid "Use routing table" msgstr "Benutze Routing-Tabelle" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5649,11 +5662,11 @@ msgstr "PEM-kodierter Benutzerschlüssel" msgid "Username" msgstr "Benutzername" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5703,11 +5716,6 @@ msgstr "Bei DHCP-Anfragen gesendete Vendor-Klasse" msgid "Verify" msgstr "Verifizieren" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Version" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "Virtuelle dynamisches Schnittstelle" @@ -5758,7 +5766,7 @@ msgstr "Änderungen werden angewandt..." msgid "Waiting for command to complete..." msgstr "Der Befehl wird ausgeführt..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "Warte auf das Anwenden der Konfigurationsänderungen... %d Sekunden" @@ -5795,16 +5803,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "WLAN" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "WLAN-Gerät" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Drahtlosnetzwerk" @@ -5819,13 +5827,13 @@ msgstr "WLAN-Verschlüsselung" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "W-LAN ist deaktiviert" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "W-LAN ist nicht assoziiert" @@ -5849,6 +5857,10 @@ msgstr "Empfangene DNS-Anfragen in das Systemprotokoll schreiben" msgid "Write system log to file" msgstr "Systemprotokoll in Datei schreiben" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "Ja" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5864,7 +5876,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5877,30 +5889,33 @@ msgid "" "upgrade it to at least version 7 or use another browser like Firefox, Opera " "or Safari." msgstr "" +"Die benutzte Version des Internet Explorers ist zu alt, um diese Seite " +"korrekt darzustellen. Bitte mindestens auf Version 7 upgraden oder einen " +"anderen Browser wie Firefox, Opera oder Safari benutzen." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 msgid "ZRam Compression Algorithm" -msgstr "" +msgstr "ZRAM Kompressionsalgorithmus" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 msgid "ZRam Compression Streams" -msgstr "" +msgstr "ZRAM Kompressionsprozesse" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 msgid "ZRam Settings" -msgstr "" +msgstr "ZRAM Einstellungen" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 msgid "ZRam Size" -msgstr "" +msgstr "ZRAM Größe" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 msgid "any" msgstr "beliebig" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5917,7 +5932,7 @@ msgstr "auto" msgid "baseT" msgstr "baseT" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "bridged" @@ -5936,24 +5951,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "überbrückt angegebene Schnittstelle(n)" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "dB" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "dBm" @@ -5993,9 +6008,9 @@ msgstr "Voll-Duplex" msgid "half-duplex" msgstr "Halb-Duplex" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" -msgstr "" +msgstr "hexadezimal kodierten Wert" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:162 msgid "hidden" @@ -6015,46 +6030,46 @@ msgstr "falls Ziel ein Netzwerk ist" msgid "input" msgstr "eingehend" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "kB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "kB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "kbit/s" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" -msgstr "" +msgstr "Schlüssel zwischen 8 und 63 Zeichen" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" -msgstr "" +msgstr "Schlüssel mit exakt 5 oder 13 Zeichen" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" @@ -6066,7 +6081,7 @@ msgstr "Minuten" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:66 msgid "mixed WPA/WPA2" -msgstr "" +msgstr "gemischtes WPA/WPA2" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 @@ -6078,18 +6093,9 @@ msgstr "nein" msgid "no link" msgstr "nicht verbunden" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "keine" +msgstr "nicht-leeren Wert" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 @@ -6102,7 +6108,7 @@ msgstr "nicht vorhanden" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "aus" @@ -6110,15 +6116,17 @@ msgstr "aus" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "ein" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" msgstr "" +"einen von:\n" +"- %s" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:71 msgid "open" @@ -6132,13 +6140,13 @@ msgstr "ausgehend" msgid "overlay" msgstr "Overlay" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" -msgstr "" +msgstr "positiven Dezimalwert" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" -msgstr "" +msgstr "positive Ganzzahl" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 msgid "random" @@ -6150,14 +6158,14 @@ msgstr "zufällig" msgid "relay mode" msgstr "Relay-Modus" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "routed" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:522 msgid "sec" -msgstr "" +msgstr "Sekunden" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 @@ -6184,9 +6192,9 @@ msgstr "tagged" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "Zeiteinheiten (TUs / 1024 ms) [1000-65535]" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" -msgstr "" +msgstr "eindeutigen Wert" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:69 msgid "unknown" @@ -6211,161 +6219,161 @@ msgstr "nichts auswählen -oder- erstellen:" msgid "untagged" msgstr "untagged" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" -msgstr "" +msgstr "gültige IP-Adresse" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" -msgstr "" +msgstr "gültige IP-Adresse oder gültigen IP-Präfix" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" -msgstr "" +msgstr "gültige IPv4-CIDR-Notation" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" -msgstr "" +msgstr "gültige IPv4-Adresse" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" -msgstr "" +msgstr "gültige IPv4-Adresse oder gültiges IPv4-Netzwerk" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" -msgstr "" +msgstr "gültige IPv4 \"Adresse:Port\" Notation" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" -msgstr "" +msgstr "gültiges IPv4-Netzwerk" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" -msgstr "" +msgstr "gültige IPv4- oder IPv6-CIDR-Notation" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" -msgstr "" +msgstr "gültigen IPv4-Präfix-Wert (0-32)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" -msgstr "" +msgstr "gültige iPv6-CIDR-Notation" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" -msgstr "" +msgstr "gültige IPv6-Adresse" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" -msgstr "" +msgstr "gültige IPv6-Addresse oder gültiges IPv6-Präfix" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" -msgstr "" +msgstr "gültige IPv6 Host-Identifikation" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" -msgstr "" +msgstr "gültiges IPv6-Netzwerk" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" -msgstr "" +msgstr "gültigen IPv6-Präfix-Wert (0-128)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" -msgstr "" +msgstr "gültige MAC-Adresse" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" -msgstr "" +msgstr "gültigen UCI-Bezeichner" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" -msgstr "" +msgstr "gültigen UCI-Bezeichner, Hostnamen oder IP-Adresse" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" -msgstr "" +msgstr "gültige \"Adresse:Port\" Notation" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" -msgstr "" +msgstr "gültiges Datum (JJJJ-MM-DD)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" -msgstr "" +msgstr "gültigen Dezimalwert" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" -msgstr "" +msgstr "gültigen hexadezimalen WEP-Schlüssel" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" -msgstr "" +msgstr "gültigen hexadezimalen WPA-Schlüssel" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" -msgstr "" +msgstr "gültige \"Host:Port\" Notation" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" -msgstr "" +msgstr "gültigen Hostnamen" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" -msgstr "" +msgstr "gültigen Hostnamen oder IP-Adresse" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" -msgstr "" +msgstr "gültige Ganzzahl" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" -msgstr "" +msgstr "gültiges Netzwerk in \"Addresse/Netzmaske\" Notation" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" +msgstr "gültige Telefonnummernziffer (0-0, \"*\", \"#\", \"!\" oder \".\")" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" -msgstr "" +msgstr "gültigen Netzwerkport oder Port-Bereich (von-bis)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" -msgstr "" +msgstr "gültigen Netzwerkport" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" -msgstr "" +msgstr "gültige Zeit (SS:MM:ss)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" -msgstr "" +msgstr "Wert zwischen %d und %d Zeichen" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" -msgstr "" +msgstr "Wert zwischen %f und %f" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" -msgstr "" +msgstr "Wert größer oder gleich %f" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" -msgstr "" +msgstr "Wert kleiner oder gleich %f" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" -msgstr "" +msgstr "Wert mit mindestens %d Zeichen" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" -msgstr "" +msgstr "Wert mit maximal %d Zeichen" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 @@ -6377,6 +6385,126 @@ msgstr "ja" msgid "« Back" msgstr "« Zurück" +#, fuzzy +#~ msgid "" +#~ "The device could not be reached within %d seconds after applying the " +#~ "pending changes, which caused the configuration to be rolled back for " +#~ "safety reasons. If you believe that the configuration changes are correct " +#~ "nonetheless, perform an unchecked configuration apply. Alternatively, you " +#~ "can dismiss this warning and edit changes before attempting to apply " +#~ "again, or revert all pending changes to keep the currently working " +#~ "configuration state." +#~ msgstr "" +#~ "Das Gerät konnte nach Anwendung der ausstehenden Konfigurationsänderungen " +#~ "nicht mehr innerhalb von %d Sekunden erreicht werden, daher wurde die " +#~ "Konfiguration aus Sicherheitsgründen zurückgerollt. Wenn die Änderungen " +#~ "dennoch korrekt sind, kann die Konfiguration ungeprüft " + +#~ msgid "Waiting for configuration to get applied… %ds" +#~ msgstr "Warte auf das Anwenden der Konfiguration… %d Sek." + +#~ msgid "" +#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " +#~ "authentication." +#~ msgstr "" +#~ "Hier können öffentliche SSH-Schlüssel reinkopiert werden (einer pro " +#~ "Zeile)." + +#~ msgid "Password successfully changed!" +#~ msgstr "Passwort erfolgreich geändert!" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "Unbekannter Fehler, Passwort nicht geändert!" + +#~ msgid "Design" +#~ msgstr "Design" + +#~ msgid "Available packages" +#~ msgstr "Verfügbare Pakete" + +#~ msgid "Bind only to specific interfaces rather than wildcard address." +#~ msgstr "" +#~ "Nur auf angegebenen Schnittstellen reagieren, anstatt auf allen " +#~ "Schnittstellen zu antworten." + +#~ msgid "" +#~ "Build/distribution specific feed definitions. This file will NOT be " +#~ "preserved in any sysupgrade." +#~ msgstr "" +#~ "Konfiguriert die distributionsspezifischen Paket-Repositories. Diese " +#~ "Konfiguration wird bei Upgrades NICHT gesichert." + +#~ msgid "" +#~ "Custom feed definitions, e.g. private feeds. This file can be preserved " +#~ "in a sysupgrade." +#~ msgstr "" +#~ "Selbst konfigurierte Paket-Repositories, z.B. private oder inoffizielle " +#~ "Quellen. Diese Konfiguration wird by Upgrades gesichert." + +#~ msgid "Custom feeds" +#~ msgstr "Eigene Repositories" + +#~ msgid "Displaying only packages containing" +#~ msgstr "Nur Pakete mit folgendem Inhalt anzeigen" + +#~ msgid "Distribution feeds" +#~ msgstr "Distributionsrepositories" + +#~ msgid "Download and install package" +#~ msgstr "Paket herunterladen und installieren" + +#~ msgid "Filter" +#~ msgstr "Filter" + +#~ msgid "Find package" +#~ msgstr "Paket suchen" + +#~ msgid "Free space" +#~ msgstr "Freier Platz" + +#~ msgid "General options for opkg" +#~ msgstr "Allgemeine Optionen für Opkg." + +#~ msgid "Install" +#~ msgstr "Installieren" + +#~ msgid "Installed packages" +#~ msgstr "Installierte Pakete" + +# Ich glab das ist so richtiger +#~ msgid "No package lists available" +#~ msgstr "Es sind keine Paketlisten vorhanden" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "OPKG-Configuration" +#~ msgstr "OPKG-Konfiguration" + +#~ msgid "Package lists are older than 24 hours" +#~ msgstr "Die Paketlisten sind älter als 24 Stunden" + +#~ msgid "Package name" +#~ msgstr "Paketname" + +#~ msgid "Please update package lists first" +#~ msgstr "Bitte zuerst die Paketlisten aktualisieren" + +#~ msgid "Size (.ipk)" +#~ msgstr "Größe (.ipk)" + +#~ msgid "Software" +#~ msgstr "Paketverwaltung" + +#~ msgid "Update lists" +#~ msgstr "Listen aktualisieren" + +#~ msgid "Version" +#~ msgstr "Version" + +#~ msgid "none" +#~ msgstr "keine" + #~ msgid "Disable DNS setup" #~ msgstr "DNS-Verarbeitung deaktivieren" diff --git a/modules/luci-base/po/el/base.po b/modules/luci-base/po/el/base.po index ab8988099c..6ba498bf64 100644 --- a/modules/luci-base/po/el/base.po +++ b/modules/luci-base/po/el/base.po @@ -13,10 +13,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.4\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -49,16 +53,16 @@ msgstr "(χωρίς προσαρτημένες διεπαφές)" msgid "-- Additional Field --" msgstr "-- Επιπλέον Πεδίο --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Παρακαλώ επιλέξτε --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- προσαρμοσμένο --" @@ -82,11 +86,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Φορτίο 1 λεπτού:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "Φορτίο 15 λεπτών:" @@ -98,7 +102,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "Φορτίο 5 λεπτών:" @@ -154,7 +158,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Διεύθυνση <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" @@ -181,11 +185,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "Πύλη <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Παραμετροποίηση <abbr title=\"Light Emitting Diode\">LED</abbr>" @@ -194,12 +198,12 @@ msgstr "Παραμετροποίηση <abbr title=\"Light Emitting Diode\">LED< msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Όνομα <abbr title=\"Light Emitting Diode\">LED</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "Διεύθυνση <abbr title=\"Media Access Control\">MAC</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -229,19 +233,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -255,25 +263,25 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "Όριο επαναδοκιμών ARP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "Γέφυρες ΑΤΜ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "ATM Εικονικό Κανάλι Αναγνωριστή (VCI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "ATM Εικονικό μονοπάτι Αναγνωριστή (VPI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -283,12 +291,12 @@ msgstr "" "εικονικές διεπαφές δικτύου Linux, οι οποίες μπορούν να χρησιμοποιηθούν σε " "συνδυασμό με DHCP ή PPP για την κλήση προς τον παροχέα δικτύου." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "Αριθμός συσκευής ATM" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -303,8 +311,6 @@ msgstr "Σημείο Πρόσβασης" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Ενέργειες" @@ -318,8 +324,8 @@ msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "" "Ενεργές Διαδρομές <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Ενεργές Συνδέσεις" @@ -346,6 +352,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Προσθήκη" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" @@ -363,8 +376,8 @@ msgstr "Επιπλέον αρχεία Hosts" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Διεύθυνση" @@ -380,7 +393,7 @@ msgstr "Διαχείριση" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -388,7 +401,7 @@ msgstr "Διαχείριση" msgid "Advanced Settings" msgstr "Προχωρημένες Ρυθμίσεις" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -396,7 +409,7 @@ msgstr "" msgid "Alert" msgstr "Ειδοποίηση" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -419,7 +432,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "Επιτρέπει την εξουσιοδότηση <abbr title=\"Secure Shell\">SSH</abbr> με " @@ -447,17 +460,17 @@ msgstr "Να επιτρέπονται μόνο αυτές στην λίστα" msgid "Allow localhost" msgstr "Να επιτρέπεται το localhost" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" "Να επιτρέπεται σε απομακρυσμένα συστήματα να συνδέονται σε τοπικά " "προωθημένες SSH θύρες" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "Να επιτρέπονται root συνδέσεις με κωδικό πρόσβασης" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "" "Να επιτρέπεται στον χρήστη <em>root</em> να συνδέετε με κωδικό πρόσβασης" @@ -483,64 +496,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -586,15 +599,15 @@ msgstr "" msgid "Any zone" msgstr "Οιαδήποτε ζώνη" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -615,11 +628,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Συνδεδεμένοι Σταθμοί" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -650,8 +663,8 @@ msgstr "Απαιτείται Εξουσιοδότηση" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Αυτόματη Ανανέωση" @@ -694,29 +707,25 @@ msgstr "" msgid "Available" msgstr "Διαθέσιμο" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Διαθέσιμα πακέτα" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Μέσος Όρος:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -727,7 +736,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -757,7 +766,7 @@ msgstr "Πίσω στα αποτελέσματα σάρωσης" msgid "Backup" msgstr "Αποθήκευση" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Αντίγραφο ασφαλείας / Εγγραφή FLASH Υλικολογισμικό" @@ -790,12 +799,14 @@ msgstr "" "ουσιώδη βασικά αρχεία καθώς και καθορισμένα από το χρήστη μοτίβα αντιγράφων " "ασφαλείας." -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -804,7 +815,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Ρυθμός δεδομένων" @@ -812,7 +823,7 @@ msgstr "Ρυθμός δεδομένων" msgid "Bogus NX Domain Override" msgstr "Παράκαμψη Ψευδούς Τομέα NX" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Γέφυρα" @@ -820,7 +831,7 @@ msgstr "Γέφυρα" msgid "Bridge interfaces" msgstr "Γεφύρωμα διεπαφών" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "Αριθμός μονάδας γέφυρας" @@ -836,16 +847,10 @@ msgstr "" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -860,6 +865,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Ακύρωση" @@ -882,6 +888,12 @@ msgstr "" msgid "Chain" msgstr "Αλυσίδα" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -891,20 +903,24 @@ msgstr "Αλλαγές" msgid "Changes applied." msgstr "Αλλαγές εφαρμόστηκαν." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "Αλλάζει τον κωδικό διαχειριστή για πρόσβαση στη συσκευή" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Κανάλι" @@ -985,6 +1001,11 @@ msgstr "Πελάτης" msgid "Client ID to send when requesting DHCP" msgstr "Αναγνωριστικό πελάτη που αποστέλλετε κατά την αίτηση DHCP" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -1005,16 +1026,16 @@ msgstr "Κλείσιμο λίστας..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1045,8 +1066,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Παραμετροποίηση" @@ -1058,15 +1077,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Επιβεβαίωση" @@ -1075,8 +1094,8 @@ msgid "Connect" msgstr "Σύνδεση" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Συνδεδεμένος" @@ -1092,7 +1111,7 @@ msgstr "" msgid "Connections" msgstr "Συνδέσεις" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1149,16 +1168,6 @@ msgstr "" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1183,7 +1192,7 @@ msgstr "Εξυπηρετητής DHCP" msgid "DHCP and DNS" msgstr "DHCP και DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "Πελάτης DHCP" @@ -1203,16 +1212,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1240,16 +1249,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1261,7 +1270,7 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1275,6 +1284,10 @@ msgstr "Αποσφαλμάτωση" msgid "Default %d" msgstr "Προεπιλογή %d" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1311,6 +1324,11 @@ msgstr "" msgid "Delete" msgstr "Διαγραφή" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Διαγραφή αυτού του δικτύου" @@ -1319,16 +1337,11 @@ msgstr "Διαγραφή αυτού του δικτύου" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Περιγραφή" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Εμφάνιση" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Προορισμός" @@ -1336,8 +1349,8 @@ msgstr "Προορισμός" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1354,7 +1367,7 @@ msgstr "Παραμετροποίηση Συσκευής" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1422,18 +1435,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "Αγνόησε τις απαντήσεις ανοδικής ροής RFC1918" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "Εμφάνιση μόνο πακέτων που περιέχουν" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1443,10 +1459,6 @@ msgstr "Βελτιστοποίηση Απόστασης" msgid "Distance to farthest network member in meters." msgstr "Απόσταση σε μέτρα από το πιο απομακρυσμένο μέλος του δικτύου." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Διαφορική Λήψη" @@ -1479,6 +1491,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Απαίτηση για όνομα τομέα" @@ -1503,10 +1519,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Κατέβασμα και εγκατάσταση πακέτου" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "Κατέβασμα αντιγράφου ασφαλείας" @@ -1515,15 +1527,15 @@ msgstr "Κατέβασμα αντιγράφου ασφαλείας" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1697,8 +1709,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "Λειτουργία ενθυλάκωσης" @@ -1706,7 +1718,7 @@ msgstr "Λειτουργία ενθυλάκωσης" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Κρυπτογράφηση" @@ -1726,7 +1738,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "Διαγράφεται..." @@ -1735,19 +1747,19 @@ msgstr "Διαγράφεται..." msgid "Error" msgstr "Σφάλμα" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Προσαρμογέας Ethernet" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Ethernet Switch" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1755,11 +1767,11 @@ msgstr "" msgid "Expand hosts" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Λήγει" @@ -1811,7 +1823,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1829,10 +1841,6 @@ msgstr "Όνομα αρχείου της εικόνας εκκίνησης πο� msgid "Filesystem" msgstr "Σύστημα Αρχείων" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Φίλτρο" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Φιλτράρισμα ιδιωτικών" @@ -1855,10 +1863,6 @@ msgstr "" msgid "Find and join network" msgstr "Εύρεση και σύνδεση σε δίκτυο" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Εύρεση πακέτου" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Τέλος" @@ -1879,11 +1883,11 @@ msgstr "Ρυθμίσεις Τείχους Προστασίας" msgid "Firewall Status" msgstr "Κατάσταση Τείχους Προστασίας" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Έκδοση Υλικολογισμικού" @@ -1907,7 +1911,7 @@ msgstr "Φλασάρισμα νέας εικόνας υλικολογισμικ� msgid "Flash operations" msgstr "Λειτουργίες φλασάρισματος" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "Φλασάρεται..." @@ -1956,7 +1960,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Προώθηση κίνησης DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1968,7 +1972,7 @@ msgstr "Προώθηση κίνησης broadcast" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "Μέθοδος προώθησης" @@ -1981,15 +1985,11 @@ msgstr "Όριο Κατακερµατισµού" msgid "Frame Bursting" msgstr "Bursting Πλαισίων" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Ελεύθερος χώρος" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1998,7 +1998,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "" @@ -2007,8 +2007,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Πύλη" @@ -2016,7 +2016,7 @@ msgstr "Πύλη" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "Θύρες πύλης" @@ -2029,16 +2029,12 @@ msgstr "Γενικές Ρυθμίσεις" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -2055,7 +2051,7 @@ msgstr "" msgid "Generic 802.11%s Wireless Controller" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "" @@ -2063,14 +2059,14 @@ msgstr "" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "" @@ -2103,7 +2099,7 @@ msgstr "" msgid "Hang Up" msgstr "Κρέμασμα" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2115,12 +2111,6 @@ msgstr "" "Εδώ μπορείτε να παραμετροποιήσετε βασικές πλευρές της συσκευής σας όπως το " "όνομα υπολογιστή ή τη ζώνη ώρας." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2133,7 +2123,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2155,9 +2145,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2212,7 +2202,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4 Τείχος Προστασίας" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2236,7 +2226,7 @@ msgstr "Πύλη IPv4" msgid "IPv4 netmask" msgstr "Μάσκα IPv4" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2281,11 +2271,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2307,7 +2297,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "Πύλη IPv6" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2464,7 +2454,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "" @@ -2484,10 +2474,6 @@ msgstr "Σενάριο εκκίνησης" msgid "Initscripts" msgstr "Σενάρια Εκκίνησης" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Εγκατάσταση" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2500,17 +2486,13 @@ msgstr "Εγκατάσταση πακέτου %q" msgid "Install protocol extensions..." msgstr "Εγκατάσταση επεκτάσεων πρωτοκόλλου..." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "Εγκατεστημένα πακέτα" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Διεπαφή" @@ -2587,7 +2569,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "Απαιτείται JavaScript!" @@ -2612,7 +2594,7 @@ msgstr "Διατήρηση ρυθμίσεων" msgid "Kernel Log" msgstr "Καταγραφή Πυρήνα" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Έκδοση Πυρήνα" @@ -2658,7 +2640,7 @@ msgstr "" msgid "LCP echo interval" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2675,7 +2657,7 @@ msgstr "Γλώσσα" msgid "Language and Style" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2683,7 +2665,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2726,19 +2708,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2790,7 +2772,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -2804,7 +2786,7 @@ msgstr "" msgid "Load" msgstr "Φόρτος" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Μέσος όρος φόρτου" @@ -2814,6 +2796,10 @@ msgstr "Μέσος όρος φόρτου" msgid "Loading" msgstr "Φόρτωση" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2843,7 +2829,7 @@ msgstr "" msgid "Local Startup" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Τοπική Ώρα" @@ -2896,11 +2882,11 @@ msgstr "Καταγραφή" msgid "Login" msgstr "Σύνδεση" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Αποσύνδεση" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2915,9 +2901,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-Διεύθυνση" @@ -2953,7 +2939,7 @@ msgstr "" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "" @@ -2979,7 +2965,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -3015,16 +3001,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "Μέγιστος αριθμός διευθύνσεων lease" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Μνήμη" @@ -3067,11 +3053,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Λειτουργία" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3111,7 +3097,7 @@ msgstr "Προσάρτηση" msgid "Mount Point" msgstr "Σημείο Προσάρτησης" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3137,7 +3123,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "Επιλογές προσάρτησης" @@ -3208,15 +3194,15 @@ msgstr "Όνομα νέου δικτύου" msgid "Navigation" msgstr "Πλοήγηση" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Μάσκα δικτύου" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3242,6 +3228,10 @@ msgstr "" msgid "Next »" msgstr "Επόμενο »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "Δεν υπάρχει ρυθμισμένος DHCP εξυπηρετητής για αυτή τη διεπαφή" @@ -3254,9 +3244,9 @@ msgstr "" msgid "No files found" msgstr "Δε βρέθηκαν αρχεία" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "Δεν υπάρχουν πληροφορίες διαθέσιμες" @@ -3276,18 +3266,18 @@ msgstr "Δεν υπάρχει παραμετροποιημένο δίκτυο σ msgid "No network name specified" msgstr "Δεν έχει οριστεί όνομα δικτύου" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "Δεν υπάρχουν διαθέσιμες λίστες πακέτων" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "Δεν έχει οριστεί κωδικός πρόσβασης!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "Δεν υπάρχει κανόνας σε αυτή την αλυσίδα" @@ -3300,23 +3290,23 @@ msgstr "" msgid "No zone assigned" msgstr "Δεν έχει ανατεθεί ζώνη" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Θόρυβος" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Θόρυβος:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3342,8 +3332,8 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "" @@ -3367,14 +3357,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "Εντάξει" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "Παραμετροποίηση OPKG" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3415,7 +3397,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -3515,7 +3497,7 @@ msgstr "" msgid "Options" msgstr "Επιλογές" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "" @@ -3523,7 +3505,7 @@ msgstr "" msgid "Out" msgstr "Έξοδος" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "" @@ -3658,7 +3640,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3666,15 +3648,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "Απαιτείται το πακέτο libiwinfo!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "Οι λίστες πακέτων έχουν να ανανεωθούν πάνω από 24 ώρες" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Όνομα πακέτου" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Πακέτα" @@ -3685,13 +3658,13 @@ msgstr "Μέρος της ζώνης %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Κωδικός Πρόσβασης" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Εξουσιοδότηση με κωδικό πρόσβασης" @@ -3703,14 +3676,14 @@ msgstr "Κωδικός Πρόσβασης του Ιδιωτικού Κλειδι msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "Ο κωδικός πρόσβασης άλλαξε επιτυχώς!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Διαδρομή για Πιστοποιητικό CA" @@ -3735,17 +3708,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "" @@ -3777,7 +3750,7 @@ msgstr "Διενέργεια αρχικοποίησης" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "" @@ -3805,16 +3778,11 @@ msgstr "Πκτ." msgid "Please enter your username and password." msgstr "Παρακαλώ εισάγετε όνομα χρήστη και κωδικό πρόσβασης." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "Πολιτική" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Θύρα" @@ -3822,11 +3790,11 @@ msgstr "Θύρα" msgid "Port status:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3838,7 +3806,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3857,7 +3825,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3880,7 +3848,7 @@ msgstr "Συνέχεια" msgid "Processes" msgstr "Εργασίες" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3890,9 +3858,9 @@ msgstr "Πρωτ." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Πρωτόκολλο" @@ -3920,6 +3888,14 @@ msgstr "Ψευδό Ad-Hoc (ahdemo)" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3929,7 +3905,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "" @@ -3962,7 +3938,7 @@ msgstr "Όριο RTS/CTS" msgid "RX" msgstr "RX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "" @@ -4022,7 +3998,7 @@ msgstr "Αρχικοποίηση όλων των αλλαγών;" msgid "Really switch protocol?" msgstr "Αλλαγή πρωτοκόλλου;" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "Συνδέσεις πραγματικού χρόνου" @@ -4030,15 +4006,15 @@ msgstr "Συνδέσεις πραγματικού χρόνου" msgid "Realtime Graphs" msgstr "Γραφήματα πραγματικού χρόνου" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "Κίνηση πραγματικού χρόνου" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "" @@ -4050,7 +4026,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Επανεκκίνηση" @@ -4112,7 +4088,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Αφαίρεση" @@ -4176,7 +4151,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Αρχικοποίηση" @@ -4219,6 +4193,8 @@ msgid "Restore backup" msgstr "Επαναφορά αντιγράφου ασφαλείας" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "" @@ -4228,15 +4204,15 @@ msgstr "" msgid "Revert" msgstr "Αναίρεση" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4265,7 +4241,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "Κωδικός Πρόσβασης Δρομολογητή" @@ -4288,11 +4265,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "Εκτέλεση ελέγχου του συστήματος αρχείων πριν προσαρτηθεί η συσκευή" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "Εκτέλεση ελέγχου συστήματος αρχείων" @@ -4300,11 +4277,12 @@ msgstr "Εκτέλεση ελέγχου συστήματος αρχείων" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Πρόσβαση SSH" @@ -4320,7 +4298,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "Κλειδιά SSH" @@ -4329,7 +4308,7 @@ msgstr "Κλειδιά SSH" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4340,6 +4319,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Αποθήκευση" @@ -4356,6 +4336,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Σάρωση" @@ -4364,7 +4348,7 @@ msgstr "Σάρωση" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Προγραμματισμένες Εργασίες" @@ -4377,7 +4361,7 @@ msgstr "" msgid "Section removed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "Δείτε το manpage του \"mount\" για λεπτομέρειες" @@ -4421,6 +4405,14 @@ msgstr "Είδος Υπηρεσίας" msgid "Services" msgstr "Υπηρεσίες" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4443,11 +4435,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "Ρύθμιση Εξυπηρετητή DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4467,22 +4459,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "Απενεργοποίηση αυτής της διεπαφής" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Σήμα" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "Σήμα:" @@ -4490,10 +4482,6 @@ msgstr "Σήμα:" msgid "Size" msgstr "Μέγεθος" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4521,12 +4509,7 @@ msgstr "Παράκαμψη σε πλοήγηση" msgid "Slot time" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Λογισμικό" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4549,7 +4532,7 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4559,7 +4542,7 @@ msgstr "Πηγή" msgid "Specifies the directory the device is attached to" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 #, fuzzy msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "" @@ -4607,7 +4590,7 @@ msgstr "Αρχή" msgid "Start priority" msgstr "Προτεραιότητα εκκίνησης" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4615,7 +4598,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "Εκκίνηση" @@ -4627,7 +4610,7 @@ msgstr "Στατικές Διαδρομές IPv4" msgid "Static IPv6 Routes" msgstr "Στατικές Διαδρομές IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Στατικά Leases" @@ -4635,11 +4618,11 @@ msgstr "Στατικά Leases" msgid "Static Routes" msgstr "Στατικές Διαδρομές" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "Στατική διεύθυνση" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4653,8 +4636,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Κατάσταση" @@ -4679,7 +4661,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4709,7 +4691,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4727,7 +4709,7 @@ msgid "Synchronizing..." msgstr "Συγχρονισμός..." #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4747,7 +4729,7 @@ msgstr "Ιδιότητες Συστήματος" msgid "System log buffer size" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4765,7 +4747,7 @@ msgstr "" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "" @@ -4840,7 +4822,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4884,6 +4866,16 @@ msgstr "Οι παρακάτω αλλαγές έχουν αναιρεθεί" msgid "The following rules are currently active on this system." msgstr "Οι παρακάτω κανόνες είναι αυτή τη στιγμή ενεργοί σε αυτό το σύστημα." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "Το παρεχόμενο όνομα δικτύου δεν είναι μοναδικό" @@ -4929,13 +4921,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -4948,6 +4940,10 @@ msgstr "" "είναι πιθανό να χρειαστεί να ανανεώσετε την διεύθυνση του υπολογιστή σας για " "να αποκτήσετε ξανά πρόσβαση στη συσκευή." +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -4956,12 +4952,16 @@ msgstr "" "Η εικόνα που ανεβάσατε δεν περιέχει κάποια υποστηριζόμενη μορφή. Βεβαιωθείτε " "ότι επιλέξατε την γενική μορφή εικόνας για την πλατφόρμα σας." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Εμφάνιση" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "Δεν υπάρχουν ενεργά leases." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -4983,7 +4983,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5061,7 +5061,7 @@ msgstr "" "Αυτή η λίστα δίνει μία εικόνα των τρέχοντων εργασιών συστήματος και της " "κατάστασής τους." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "" "Αυτή η σελίδα δίνει μία εικόνα για τις τρέχουσες ενεργές συνδέσεις δικτύου." @@ -5088,6 +5088,10 @@ msgstr "" msgid "Timezone" msgstr "Ζώνη ώρας" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5099,12 +5103,12 @@ msgstr "" "κατάσταση, κάντε κλικ στο \"Εκτέλεσε επαναφορά\" (δυνατό μόνο σε squashfs " "εικόνες)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Διαθέσιμο Συνολικά" @@ -5119,7 +5123,7 @@ msgstr "" msgid "Traffic" msgstr "Κίνηση" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Μεταφέρθηκαν" @@ -5154,7 +5158,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "Διεπαφή Τούνελ" @@ -5169,12 +5173,12 @@ msgid "Tx-Power" msgstr "Ισχύς Εκπομπής" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Τύπος" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5228,36 +5232,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "Άγνωστο" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "Άγνωστο Λάθος. ο κωδικός πρόσβασης δεν άλλαξε!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Μη-αποθηκευμένες Αλλαγές" @@ -5277,10 +5281,6 @@ msgstr "" msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5298,7 +5298,7 @@ msgstr "Το Αρχείο Ανέβηκε" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Χρόνος εν λειτουργία" @@ -5414,7 +5414,7 @@ msgstr "" msgid "Use routing table" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5451,11 +5451,11 @@ msgstr "" msgid "Username" msgstr "Όνομα Χρήστη" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5505,11 +5505,6 @@ msgstr "" msgid "Verify" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Έκδοση" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5558,7 +5553,7 @@ msgstr "" msgid "Waiting for command to complete..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5591,16 +5586,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "Ασύρματο" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Ασύρματος Προσαρμογέας" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Ασύρματο Δίκτυο" @@ -5615,13 +5610,13 @@ msgstr "Ασφάλεια Ασύρματου Δικτύου" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "Το ασύρματο δίκτυο είναι απενεργοποιημένο" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "Το ασύρματο δίκτυο μη συνδεδεμένο" @@ -5645,6 +5640,10 @@ msgstr "Καταγραφή των ληφθέντων DNS αιτήσεων στο msgid "Write system log to file" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5660,7 +5659,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5692,9 +5691,9 @@ msgstr "" msgid "any" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5711,7 +5710,7 @@ msgstr "αυτόματα" msgid "baseT" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "" @@ -5731,24 +5730,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "δημιουργεί μία γέφυρα μεταξύ των ορισμένων διεπαφών" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "" @@ -5790,7 +5789,7 @@ msgstr "" msgid "half-duplex" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5812,44 +5811,44 @@ msgstr "αν ο στόχος είναι ένα δίκτυο" msgid "input" msgstr "είσοδος" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5875,19 +5874,10 @@ msgstr "όχι" msgid "no link" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "κανένα" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5899,7 +5889,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "κλειστό" @@ -5907,11 +5897,11 @@ msgstr "κλειστό" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "ανοιχτό" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5929,11 +5919,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5947,7 +5937,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "" @@ -5981,7 +5971,7 @@ msgstr "" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -6008,159 +5998,159 @@ msgstr "μη-καθορισμένο -ή- δημιουργείστε:" msgid "untagged" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6174,6 +6164,63 @@ msgstr "ναι" msgid "« Back" msgstr "« Πίσω" +#~ msgid "Password successfully changed!" +#~ msgstr "Ο κωδικός πρόσβασης άλλαξε επιτυχώς!" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "Άγνωστο Λάθος. ο κωδικός πρόσβασης δεν άλλαξε!" + +#~ msgid "Design" +#~ msgstr "Εμφάνιση" + +#~ msgid "Available packages" +#~ msgstr "Διαθέσιμα πακέτα" + +#~ msgid "Displaying only packages containing" +#~ msgstr "Εμφάνιση μόνο πακέτων που περιέχουν" + +#~ msgid "Download and install package" +#~ msgstr "Κατέβασμα και εγκατάσταση πακέτου" + +#~ msgid "Filter" +#~ msgstr "Φίλτρο" + +#~ msgid "Find package" +#~ msgstr "Εύρεση πακέτου" + +#~ msgid "Free space" +#~ msgstr "Ελεύθερος χώρος" + +#~ msgid "Install" +#~ msgstr "Εγκατάσταση" + +#~ msgid "Installed packages" +#~ msgstr "Εγκατεστημένα πακέτα" + +#~ msgid "No package lists available" +#~ msgstr "Δεν υπάρχουν διαθέσιμες λίστες πακέτων" + +#~ msgid "OK" +#~ msgstr "Εντάξει" + +#~ msgid "OPKG-Configuration" +#~ msgstr "Παραμετροποίηση OPKG" + +#~ msgid "Package lists are older than 24 hours" +#~ msgstr "Οι λίστες πακέτων έχουν να ανανεωθούν πάνω από 24 ώρες" + +#~ msgid "Package name" +#~ msgstr "Όνομα πακέτου" + +#~ msgid "Software" +#~ msgstr "Λογισμικό" + +#~ msgid "Version" +#~ msgstr "Έκδοση" + +#~ msgid "none" +#~ msgstr "κανένα" + #~ msgid "Disable DNS setup" #~ msgstr "Απενεργοποίηση ρυθμίσεων DNS" diff --git a/modules/luci-base/po/en/base.po b/modules/luci-base/po/en/base.po index a3186b611f..668e08e0ba 100644 --- a/modules/luci-base/po/en/base.po +++ b/modules/luci-base/po/en/base.po @@ -13,10 +13,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.4\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -49,16 +53,16 @@ msgstr "(no interfaces attached)" msgid "-- Additional Field --" msgstr "-- Additional Field --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Please choose --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- custom --" @@ -82,11 +86,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1 Minute Load:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "15 Minute Load:" @@ -98,7 +102,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "5 Minute Load:" @@ -154,7 +158,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" @@ -181,11 +185,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" @@ -194,12 +198,12 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-Address" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -229,19 +233,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -255,25 +263,25 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "ARP retry threshold" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "ATM Bridges" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "ATM Virtual Channel Identifier (VCI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "ATM Virtual Path Identifier (VPI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -283,12 +291,12 @@ msgstr "" "Linux network interfaces which can be used in conjunction with DHCP or PPP " "to dial into the provider network." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "ATM device number" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -303,8 +311,6 @@ msgstr "Access Point" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Actions" @@ -316,8 +322,8 @@ msgstr "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes" msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Active Connections" @@ -344,6 +350,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Add" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "Add local domain suffix to names served from hosts files" @@ -360,8 +373,8 @@ msgstr "Additional Hosts files" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Address" @@ -377,7 +390,7 @@ msgstr "Administration" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -385,7 +398,7 @@ msgstr "Administration" msgid "Advanced Settings" msgstr "Advanced Settings" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -393,7 +406,7 @@ msgstr "" msgid "Alert" msgstr "Alert" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -416,7 +429,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" @@ -442,15 +455,15 @@ msgstr "Allow listed only" msgid "Allow localhost" msgstr "Allow localhost" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "Allow remote hosts to connect to local SSH forwarded ports" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "Allow root logins with password" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "Allow the <em>root</em> user to login with password" @@ -474,64 +487,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -577,15 +590,15 @@ msgstr "" msgid "Any zone" msgstr "Any zone" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -606,11 +619,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Associated Stations" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -641,8 +654,8 @@ msgstr "Authorization Required" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Auto Refresh" @@ -685,29 +698,25 @@ msgstr "" msgid "Available" msgstr "Available" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Available packages" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Average:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -718,7 +727,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -748,7 +757,7 @@ msgstr "Back to scan results" msgid "Backup" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Backup / Flash Firmware" @@ -779,12 +788,14 @@ msgstr "" "configuration files marked by opkg, essential base files and the user " "defined backup patterns." -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -793,7 +804,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Bitrate" @@ -801,7 +812,7 @@ msgstr "Bitrate" msgid "Bogus NX Domain Override" msgstr "Bogus NX Domain Override" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Bridge" @@ -809,7 +820,7 @@ msgstr "Bridge" msgid "Bridge interfaces" msgstr "Bridge interfaces" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "Bridge unit number" @@ -825,16 +836,10 @@ msgstr "" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "Buffered" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -849,6 +854,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Cancel" @@ -871,6 +877,12 @@ msgstr "" msgid "Chain" msgstr "Chain" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -880,20 +892,24 @@ msgstr "Changes" msgid "Changes applied." msgstr "Changes applied." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "Changes the administrator password for accessing the device" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Channel" @@ -974,6 +990,11 @@ msgstr "Client" msgid "Client ID to send when requesting DHCP" msgstr "Client ID to send when requesting DHCP" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -993,16 +1014,16 @@ msgstr "Close list..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1033,8 +1054,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Configuration" @@ -1046,15 +1065,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Confirmation" @@ -1063,8 +1082,8 @@ msgid "Connect" msgstr "Connect" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Connected" @@ -1080,7 +1099,7 @@ msgstr "" msgid "Connections" msgstr "Connections" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1137,16 +1156,6 @@ msgstr "Custom Interface" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1171,7 +1180,7 @@ msgstr "DHCP Server" msgid "DHCP and DNS" msgstr "DHCP and DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "DHCP client" @@ -1191,16 +1200,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1228,16 +1237,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1249,7 +1258,7 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1263,6 +1272,10 @@ msgstr "Debug" msgid "Default %d" msgstr "Default %d" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1300,6 +1313,11 @@ msgstr "" msgid "Delete" msgstr "Delete" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Delete this network" @@ -1308,16 +1326,11 @@ msgstr "Delete this network" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Description" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Design" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Destination" @@ -1325,8 +1338,8 @@ msgstr "Destination" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1343,7 +1356,7 @@ msgstr "Device Configuration" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1409,18 +1422,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1430,10 +1446,6 @@ msgstr "Distance Optimization" msgid "Distance to farthest network member in meters." msgstr "Distance to farthest network member in meters." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Diversity" @@ -1462,6 +1474,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Domain required" @@ -1486,10 +1502,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Download and install package" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "" @@ -1498,15 +1510,15 @@ msgstr "" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1677,8 +1689,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "Enables the Spanning Tree Protocol on this bridge" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "" @@ -1686,7 +1698,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Encryption" @@ -1706,7 +1718,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "" @@ -1715,19 +1727,19 @@ msgstr "" msgid "Error" msgstr "Error" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Ethernet Adapter" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Ethernet Switch" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1735,11 +1747,11 @@ msgstr "" msgid "Expand hosts" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "" @@ -1788,7 +1800,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1806,10 +1818,6 @@ msgstr "" msgid "Filesystem" msgstr "Filesystem" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Filter" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Filter private" @@ -1832,10 +1840,6 @@ msgstr "" msgid "Find and join network" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Find package" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "" @@ -1856,11 +1860,11 @@ msgstr "Firewall Settings" msgid "Firewall Status" msgstr "Firewall Status" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "" @@ -1884,7 +1888,7 @@ msgstr "" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "" @@ -1932,7 +1936,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1944,7 +1948,7 @@ msgstr "" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "" @@ -1957,15 +1961,11 @@ msgstr "Fragmentation Threshold" msgid "Frame Bursting" msgstr "Frame Bursting" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1974,7 +1974,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "" @@ -1983,8 +1983,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "" @@ -1992,7 +1992,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "" @@ -2005,16 +2005,12 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "General Setup" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -2031,7 +2027,7 @@ msgstr "" msgid "Generic 802.11%s Wireless Controller" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "" @@ -2039,14 +2035,14 @@ msgstr "" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "" @@ -2079,7 +2075,7 @@ msgstr "" msgid "Hang Up" msgstr "Hang Up" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2091,12 +2087,6 @@ msgstr "" "Here you can configure the basic aspects of your device like its hostname or " "the timezone." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2109,7 +2099,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2130,9 +2120,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2187,7 +2177,7 @@ msgstr "" msgid "IPv4 Firewall" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2211,7 +2201,7 @@ msgstr "" msgid "IPv4 netmask" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2256,11 +2246,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2282,7 +2272,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2434,7 +2424,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "" @@ -2454,10 +2444,6 @@ msgstr "Initscript" msgid "Initscripts" msgstr "Initscripts" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Install" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2470,17 +2456,13 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Interface" @@ -2557,7 +2539,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "" @@ -2582,7 +2564,7 @@ msgstr "" msgid "Kernel Log" msgstr "Kernel Log" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "" @@ -2628,7 +2610,7 @@ msgstr "" msgid "LCP echo interval" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "" @@ -2645,7 +2627,7 @@ msgstr "Language" msgid "Language and Style" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2653,7 +2635,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2696,19 +2678,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2760,7 +2742,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -2774,7 +2756,7 @@ msgstr "" msgid "Load" msgstr "Load" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "" @@ -2784,6 +2766,10 @@ msgstr "" msgid "Loading" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2813,7 +2799,7 @@ msgstr "" msgid "Local Startup" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Local Time" @@ -2866,11 +2852,11 @@ msgstr "" msgid "Login" msgstr "Login" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Logout" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2885,9 +2871,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "" @@ -2923,7 +2909,7 @@ msgstr "" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "" @@ -2949,7 +2935,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -2984,16 +2970,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Memory" @@ -3036,11 +3022,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Mode" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3079,7 +3065,7 @@ msgstr "" msgid "Mount Point" msgstr "Mount Point" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3105,7 +3091,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "" @@ -3176,15 +3162,15 @@ msgstr "Name of the new network" msgid "Navigation" msgstr "Navigation" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3210,6 +3196,10 @@ msgstr "" msgid "Next »" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "" @@ -3222,9 +3212,9 @@ msgstr "" msgid "No files found" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "" @@ -3244,18 +3234,18 @@ msgstr "" msgid "No network name specified" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "No rules in this chain." @@ -3268,23 +3258,23 @@ msgstr "" msgid "No zone assigned" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Noise" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3310,8 +3300,8 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "" @@ -3335,14 +3325,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "OK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "OPKG-Configuration" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3383,7 +3365,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -3483,7 +3465,7 @@ msgstr "" msgid "Options" msgstr "Options" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "" @@ -3491,7 +3473,7 @@ msgstr "" msgid "Out" msgstr "Out" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "" @@ -3626,7 +3608,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3634,15 +3616,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Package name" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Packets" @@ -3653,13 +3626,13 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Password" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Password authentication" @@ -3671,14 +3644,14 @@ msgstr "Password of Private Key" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Path to CA-Certificate" @@ -3703,17 +3676,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "" @@ -3745,7 +3718,7 @@ msgstr "" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "" @@ -3773,16 +3746,11 @@ msgstr "Pkts." msgid "Please enter your username and password." msgstr "Please enter your username and password." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "Policy" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3790,11 +3758,11 @@ msgstr "Port" msgid "Port status:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3806,7 +3774,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3825,7 +3793,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3847,7 +3815,7 @@ msgstr "Proceed" msgid "Processes" msgstr "Processes" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3857,9 +3825,9 @@ msgstr "Prot." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protocol" @@ -3887,6 +3855,14 @@ msgstr "Pseudo Ad-Hoc (ahdemo)" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3896,7 +3872,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "" @@ -3929,7 +3905,7 @@ msgstr "RTS/CTS Threshold" msgid "RX" msgstr "RX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "" @@ -3989,7 +3965,7 @@ msgstr "" msgid "Really switch protocol?" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "" @@ -3997,15 +3973,15 @@ msgstr "" msgid "Realtime Graphs" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "" @@ -4017,7 +3993,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Reboot" @@ -4079,7 +4055,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Remove" @@ -4143,7 +4118,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Reset" @@ -4186,6 +4160,8 @@ msgid "Restore backup" msgstr "Restore backup" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "" @@ -4195,15 +4171,15 @@ msgstr "" msgid "Revert" msgstr "Revert" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4232,7 +4208,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "" @@ -4254,11 +4231,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "" @@ -4266,11 +4243,12 @@ msgstr "" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "" @@ -4286,7 +4264,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "" @@ -4295,7 +4274,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4306,6 +4285,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Save" @@ -4322,6 +4302,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Scan" @@ -4330,7 +4314,7 @@ msgstr "Scan" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Scheduled Tasks" @@ -4343,7 +4327,7 @@ msgstr "" msgid "Section removed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "" @@ -4386,6 +4370,14 @@ msgstr "" msgid "Services" msgstr "Services" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4408,11 +4400,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4432,22 +4424,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Signal" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "" @@ -4455,10 +4447,6 @@ msgstr "" msgid "Size" msgstr "Size" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4486,12 +4474,7 @@ msgstr "Skip to navigation" msgid "Slot time" msgstr "Slot time" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Software" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4514,7 +4497,7 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4524,7 +4507,7 @@ msgstr "Source" msgid "Specifies the directory the device is attached to" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "" @@ -4570,7 +4553,7 @@ msgstr "Start" msgid "Start priority" msgstr "Start priority" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4578,7 +4561,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "" @@ -4590,7 +4573,7 @@ msgstr "Static IPv4 Routes" msgid "Static IPv6 Routes" msgstr "Static IPv6 Routes" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Static Leases" @@ -4598,11 +4581,11 @@ msgstr "Static Leases" msgid "Static Routes" msgstr "Static Routes" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4616,8 +4599,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Status" @@ -4642,7 +4624,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4672,7 +4654,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4690,7 +4672,7 @@ msgid "Synchronizing..." msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4710,7 +4692,7 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "" @@ -4728,7 +4710,7 @@ msgstr "" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "" @@ -4801,7 +4783,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4845,6 +4827,16 @@ msgstr "The following changes have been reverted" msgid "The following rules are currently active on this system." msgstr "The following rules are currently active on this system." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "" @@ -4890,13 +4882,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -4909,6 +4901,10 @@ msgstr "" "address of your computer to reach the device again, depending on your " "settings." +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -4917,12 +4913,16 @@ msgstr "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Theme" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -4944,7 +4944,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5020,7 +5020,7 @@ msgstr "" "This list gives an overview over currently running system processes and " "their status." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "This page gives an overview over currently active network connections." @@ -5046,6 +5046,10 @@ msgstr "" msgid "Timezone" msgstr "Timezone" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5056,12 +5060,12 @@ msgstr "" "archive here. To reset the firmware to its initial state, click \"Perform " "reset\" (only possible with squashfs images)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "" @@ -5076,7 +5080,7 @@ msgstr "" msgid "Traffic" msgstr "Traffic" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Transfer" @@ -5111,7 +5115,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "" @@ -5126,12 +5130,12 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Type" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "" @@ -5185,36 +5189,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Unsaved Changes" @@ -5234,10 +5238,6 @@ msgstr "" msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5255,7 +5255,7 @@ msgstr "Uploaded File" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Uptime" @@ -5371,7 +5371,7 @@ msgstr "" msgid "Use routing table" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5408,11 +5408,11 @@ msgstr "" msgid "Username" msgstr "Username" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5462,11 +5462,6 @@ msgstr "" msgid "Verify" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Version" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5517,7 +5512,7 @@ msgstr "" msgid "Waiting for command to complete..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5550,16 +5545,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Wireless Adapter" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Wireless Network" @@ -5574,13 +5569,13 @@ msgstr "Wireless Security" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "" @@ -5604,6 +5599,10 @@ msgstr "" msgid "Write system log to file" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5618,7 +5617,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5650,9 +5649,9 @@ msgstr "" msgid "any" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5669,7 +5668,7 @@ msgstr "auto" msgid "baseT" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "" @@ -5688,24 +5687,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "creates a bridge over specified interface(s)" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "" @@ -5747,7 +5746,7 @@ msgstr "" msgid "half-duplex" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5769,44 +5768,44 @@ msgstr "if target is a network" msgid "input" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5832,19 +5831,10 @@ msgstr "" msgid "no link" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "none" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5856,7 +5846,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "" @@ -5864,11 +5854,11 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5886,11 +5876,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5904,7 +5894,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "" @@ -5938,7 +5928,7 @@ msgstr "" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -5965,159 +5955,159 @@ msgstr "unspecified -or- create:" msgid "untagged" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6131,6 +6121,42 @@ msgstr "" msgid "« Back" msgstr "« Back" +#~ msgid "Design" +#~ msgstr "Design" + +#~ msgid "Available packages" +#~ msgstr "Available packages" + +#~ msgid "Download and install package" +#~ msgstr "Download and install package" + +#~ msgid "Filter" +#~ msgstr "Filter" + +#~ msgid "Find package" +#~ msgstr "Find package" + +#~ msgid "Install" +#~ msgstr "Install" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "OPKG-Configuration" +#~ msgstr "OPKG-Configuration" + +#~ msgid "Package name" +#~ msgstr "Package name" + +#~ msgid "Software" +#~ msgstr "Software" + +#~ msgid "Version" +#~ msgstr "Version" + +#~ msgid "none" +#~ msgstr "none" + #~ msgid "No chains in this table" #~ msgstr "No chains in this table" diff --git a/modules/luci-base/po/es/base.po b/modules/luci-base/po/es/base.po index d097917d0c..c4ab1fb304 100644 --- a/modules/luci-base/po/es/base.po +++ b/modules/luci-base/po/es/base.po @@ -13,10 +13,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -49,16 +53,16 @@ msgstr "(sin interfaces conectados)" msgid "-- Additional Field --" msgstr "-- Campo Adicional --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Elija, por favor --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- introducir --" @@ -82,11 +86,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Carga a 1 minuto:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "Carga a 15 minutos:" @@ -98,7 +102,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "Carga a 5 minutos:" @@ -157,7 +161,7 @@ msgstr "" "<abbr title=\"Identificador de conjunto de servicios extendidos\">ESSID</" "abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Dirección <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" @@ -185,11 +189,11 @@ msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "" "Puerta de enlace <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Configuración de <abbr title=\"Light Emitting Diode\">LEDs</abbr>" @@ -198,12 +202,12 @@ msgstr "Configuración de <abbr title=\"Light Emitting Diode\">LEDs</abbr>" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Nombre del <abbr title=\"Light Emitting Diode\">LED</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "Dirección <abbr title=\"Media Access Control\">MAC</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -231,19 +235,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -257,25 +265,25 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "Umbral de reintento ARP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "Puente ATM" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "Identificador de canal virtual ATM (VCI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "Identificador de camino virtual ATM (VPI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -285,12 +293,12 @@ msgstr "" "interfaces de red Linux que se pueden usar junto a DHCP o PPP para conectar " "a la red del proveedor." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "Número de dispositivo ATM" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -305,8 +313,6 @@ msgstr "Punto de Acceso" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Acciones" @@ -318,8 +324,8 @@ msgstr "Rutas activas <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "Rutas activas <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Conexiones activas" @@ -346,6 +352,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Añadir" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" @@ -364,8 +377,8 @@ msgstr "Ficheros de máquinas adicionales" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Dirección" @@ -381,7 +394,7 @@ msgstr "Administración" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -389,7 +402,7 @@ msgstr "Administración" msgid "Advanced Settings" msgstr "Configuración avanzada" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -397,7 +410,7 @@ msgstr "" msgid "Alert" msgstr "Alerta" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -420,7 +433,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "Permitir autenticación de contraseña via <abbr title=\"Secure Shell\">SSH</" @@ -448,15 +461,15 @@ msgstr "Permitir a los pertenecientes en la lista" msgid "Allow localhost" msgstr "Permitir a la propia máquina" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "Permitir a máquinas remotas conectar a puestos SSH locales traspasados" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "Permitir conexiones a root con contraseña" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "Permitir al usuario <em>root</em> conectar con contraseña" @@ -480,64 +493,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -583,15 +596,15 @@ msgstr "Configuración de la antena" msgid "Any zone" msgstr "Cualquier zona" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -612,11 +625,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Estaciones asociadas" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -647,8 +660,8 @@ msgstr "Conéctese" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Autorefresco" @@ -691,29 +704,25 @@ msgstr "" msgid "Available" msgstr "Disponible" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Paquetes disponibles" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Media:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -724,7 +733,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -754,7 +763,7 @@ msgstr "Volver a resultados de la exploración" msgid "Backup" msgstr "Salvar" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Copia de seguridad / Grabar firmware" @@ -786,12 +795,14 @@ msgstr "" "esenciales base y los patrones de copia de seguridad definidos por el " "usuario." -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -800,7 +811,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Bitrate" @@ -808,7 +819,7 @@ msgstr "Bitrate" msgid "Bogus NX Domain Override" msgstr "Ignorar dominio falso NX" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Puente" @@ -816,7 +827,7 @@ msgstr "Puente" msgid "Bridge interfaces" msgstr "Puentear interfaces" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "Número de unidad del puente" @@ -832,16 +843,10 @@ msgstr "Controlador inalámbrico 802.11%s Broadcom" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Controlador inalámbrico 802.11 BCM%04x" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "En búfer" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -856,6 +861,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Cancelar" @@ -878,6 +884,12 @@ msgstr "" msgid "Chain" msgstr "Cadena" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -887,20 +899,24 @@ msgstr "Cambios" msgid "Changes applied." msgstr "Cambios aplicados." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "Cambie la contraseña del administrador para acceder al dispositivo" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Canal" @@ -983,6 +999,11 @@ msgstr "Cliente" msgid "Client ID to send when requesting DHCP" msgstr "ID de cliente que se enviará al solicitar DHCP" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -1002,16 +1023,16 @@ msgstr "Cerrar lista..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1042,8 +1063,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Configuración" @@ -1055,15 +1074,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Confirmación" @@ -1072,8 +1091,8 @@ msgid "Connect" msgstr "Conectar" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Conectado" @@ -1089,7 +1108,7 @@ msgstr "" msgid "Connections" msgstr "Conexiones" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1146,16 +1165,6 @@ msgstr "Interfaz propio" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1180,7 +1189,7 @@ msgstr "Servidor DHCP" msgid "DHCP and DNS" msgstr "DHCP y DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "Cliente DHCP" @@ -1200,16 +1209,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1237,16 +1246,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1258,7 +1267,7 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1272,6 +1281,10 @@ msgstr "Depuración" msgid "Default %d" msgstr "%d por defecto" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1309,6 +1322,11 @@ msgstr "" msgid "Delete" msgstr "Eliminar" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Borrar esta red" @@ -1317,16 +1335,11 @@ msgstr "Borrar esta red" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Descripción" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Diseño" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Destino" @@ -1334,8 +1347,8 @@ msgstr "Destino" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1352,7 +1365,7 @@ msgstr "Configuración del dispositivo" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1420,18 +1433,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "Descartar respuestas RFC1918 salientes" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "Mostrar sólo paquete que contienen" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1441,10 +1457,6 @@ msgstr "Optimización de distancia" msgid "Distance to farthest network member in meters." msgstr "Distancia al miembro de la red mas lejana en metros." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Diversidad" @@ -1475,6 +1487,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "No retransmitir búsquedas inversas para redes locales" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Dominio requerido" @@ -1499,10 +1515,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Descargar e instalar paquete" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "Descargar copia de seguridad" @@ -1511,15 +1523,15 @@ msgstr "Descargar copia de seguridad" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Instancia Dropbear" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1692,8 +1704,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "Activa el protocol STP en este puente" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "Modo de encapsulado" @@ -1701,7 +1713,7 @@ msgstr "Modo de encapsulado" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Encriptación" @@ -1721,7 +1733,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "Borrando..." @@ -1730,19 +1742,19 @@ msgstr "Borrando..." msgid "Error" msgstr "Error" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Adaptador ethernet" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Switch ethernet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1750,11 +1762,11 @@ msgstr "" msgid "Expand hosts" msgstr "Expandir nombre de máquina" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Expira" @@ -1806,7 +1818,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1824,10 +1836,6 @@ msgstr "Nombre del fichero de imagen de arranque mostrado a los clientes" msgid "Filesystem" msgstr "Sistema de ficheros" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Filtro" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Filtro privado" @@ -1850,10 +1858,6 @@ msgstr "" msgid "Find and join network" msgstr "Encontrar y unirse a red" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Buscar paquete" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Terminar" @@ -1874,11 +1878,11 @@ msgstr "Configuración del cortafuegos" msgid "Firewall Status" msgstr "Estado del cortafuegos" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Versión del firmware" @@ -1902,7 +1906,7 @@ msgstr "Grabar imágenes del firmware" msgid "Flash operations" msgstr "Operaciones de grabado" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "Grabando..." @@ -1950,7 +1954,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Retransmitir tráfico DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1962,7 +1966,7 @@ msgstr "Retransmitir tráfico de propagación" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "Modo de retransmisión" @@ -1976,15 +1980,11 @@ msgstr "Umbral de fragmentación" msgid "Frame Bursting" msgstr "Frame Bursting" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "Libre" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Espacio libre" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1993,7 +1993,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "GHz" @@ -2002,8 +2002,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Sólo GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Pasarela" @@ -2011,7 +2011,7 @@ msgstr "Pasarela" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "Puertos del gateway" @@ -2024,16 +2024,12 @@ msgstr "Configuración general" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "Configuración general" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -2050,7 +2046,7 @@ msgstr "Generar archivo" msgid "Generic 802.11%s Wireless Controller" msgstr "Controlador inalámbrico 802.11%s genérico" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "" "La confirmación y la contraseña no coinciden. ¡No se ha cambiado la " @@ -2060,14 +2056,14 @@ msgstr "" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "Ir a configuración de contraseña..." @@ -2100,7 +2096,7 @@ msgstr "" msgid "Hang Up" msgstr "Suspender" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2111,12 +2107,6 @@ msgid "" msgstr "" "Aspectos básicos de su dispositivo como la zona horaria o nombre de máquina." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "Claves públicas SSH. Ponga una por línea." - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2129,7 +2119,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2152,9 +2142,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2209,7 +2199,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Cortafuegos IPv4" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2233,7 +2223,7 @@ msgstr "Gateway IPv4" msgid "IPv4 netmask" msgstr "Máscara de red IPv4" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2278,11 +2268,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2304,7 +2294,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "Gateway IPv6" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2463,7 +2453,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "Espera de inactividad" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "Entrantes:" @@ -2483,10 +2473,6 @@ msgstr "Nombre del script de inicio" msgid "Initscripts" msgstr "Scripts de inicio" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Instalar" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2499,17 +2485,13 @@ msgstr "Instalar el paquete %q" msgid "Install protocol extensions..." msgstr "Instalar extensiones de protocolo..." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "Paquetes instalados" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Interfaz" @@ -2587,7 +2569,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "¡Se necesita JavaScript!" @@ -2612,7 +2594,7 @@ msgstr "Conservar la configuración del router" msgid "Kernel Log" msgstr "Registro del Kernel" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Versión del Kernel" @@ -2658,7 +2640,7 @@ msgstr "Umbral de fracaso en eco LCP" msgid "LCP echo interval" msgstr "Intervalo de eco LCP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2675,7 +2657,7 @@ msgstr "Idioma" msgid "Language and Style" msgstr "Idioma y Estilo" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2683,7 +2665,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2726,19 +2708,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2792,7 +2774,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Escucha solo en la interfaz dada o, si no se especifica, en todas" @@ -2806,7 +2788,7 @@ msgstr "Puerto de escucha para consultas DNS entrantes" msgid "Load" msgstr "Carga" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Carga Media" @@ -2816,6 +2798,10 @@ msgstr "Carga Media" msgid "Loading" msgstr "Cargando" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2845,7 +2831,7 @@ msgstr "" msgid "Local Startup" msgstr "Arranque local" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Hora local" @@ -2905,11 +2891,11 @@ msgstr "Registro" msgid "Login" msgstr "Iniciar sesión" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Cerrar sesión" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2924,9 +2910,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "Dirección MAC" @@ -2962,7 +2948,7 @@ msgstr "MB/s" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "MHz" @@ -2988,7 +2974,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -3023,16 +3009,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "Máximas cesiones activas." -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Memoria" @@ -3075,11 +3061,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Modo" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3118,7 +3104,7 @@ msgstr "Entrada de montaje" msgid "Mount Point" msgstr "Punto de montaje" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3144,7 +3130,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "Opciones de montaje" @@ -3215,15 +3201,15 @@ msgstr "Nombre de la nueva red" msgid "Navigation" msgstr "Navegación" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Máscara de red" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3249,6 +3235,10 @@ msgstr "Red sin interfaces." msgid "Next »" msgstr "Siguiente »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "No se ha configurado un servidor DHCP para esta interfaz" @@ -3261,9 +3251,9 @@ msgstr "" msgid "No files found" msgstr "No se han encontrado ficheros" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "No hay información disponible" @@ -3283,18 +3273,18 @@ msgstr "No hay red configurada para este dispositivo" msgid "No network name specified" msgstr "No se ha especificado un nombre de red" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "No hay listas de paquetes disponibles" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "¡Sin contraseña!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "No hay reglas en esta cadena" @@ -3307,23 +3297,23 @@ msgstr "" msgid "No zone assigned" msgstr "Sin zona asignada" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Ruido" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Ruido:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3349,8 +3339,8 @@ msgstr "No encontrado" msgid "Not associated" msgstr "No asociado" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "No conectado" @@ -3374,14 +3364,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "Aceptar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "Configuración de OPKG" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3421,7 +3403,7 @@ msgstr "" msgid "On-State Delay" msgstr "Retraso de activación" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "¡Debe especificar al menos un nombre de máquina o dirección mac!" @@ -3521,7 +3503,7 @@ msgstr "" msgid "Options" msgstr "Opciones" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "Otros:" @@ -3529,7 +3511,7 @@ msgstr "Otros:" msgid "Out" msgstr "Salida" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "Saliente:" @@ -3666,7 +3648,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3674,15 +3656,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "¡Se necesita el paquete libiwinfo!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "Las listas de paquetes tienen más de 24 horas" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Nombre del paquete" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Paquetes" @@ -3693,13 +3666,13 @@ msgstr "Parte de zona %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Contraseña" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Autentificación de contraseña" @@ -3711,14 +3684,14 @@ msgstr "Contraseña de la Clave Privada" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "¡Contraseña cambiada!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Ruta al Certificado CA" @@ -3743,17 +3716,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "Pico:" @@ -3785,7 +3758,7 @@ msgstr "Reiniciar" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "Ratio Phy:" @@ -3813,16 +3786,11 @@ msgstr "Paq." msgid "Please enter your username and password." msgstr "Por favor, introduzca su nombre de usuario y contraseña." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "Política" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Puerto" @@ -3830,11 +3798,11 @@ msgstr "Puerto" msgid "Port status:" msgstr "Estado del puerto:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3846,7 +3814,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3867,7 +3835,7 @@ msgstr "" "Asumir que el otro estará muerto tras estos fallos de echo LCP, use 0 para " "ignorar fallos" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3889,7 +3857,7 @@ msgstr "Proceder" msgid "Processes" msgstr "Procesos" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3899,9 +3867,9 @@ msgstr "Prot." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protocolo" @@ -3929,6 +3897,14 @@ msgstr "Pseudo Ad-Hoc (ahdemo)" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3938,7 +3914,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "Calidad" @@ -3971,7 +3947,7 @@ msgstr "Umbral RTS/CTS" msgid "RX" msgstr "RX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "Ratio RX" @@ -4034,7 +4010,7 @@ msgstr "¿Está seguro de querer reiniciar todos los cambios?" msgid "Really switch protocol?" msgstr "¿Está seguro de querer cambiar el protocolo?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "Conexiones en tiempo real" @@ -4042,15 +4018,15 @@ msgstr "Conexiones en tiempo real" msgid "Realtime Graphs" msgstr "Gráficas en tiempo real" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "Carga en tiempo real" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "Tráfico en tiempo real" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "Red inalámbrica en tiempo real" @@ -4062,7 +4038,7 @@ msgstr "" msgid "Rebind protection" msgstr "Protección contra reasociación" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Rearrancar" @@ -4124,7 +4100,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Desinstalar" @@ -4188,7 +4163,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Reiniciar" @@ -4231,6 +4205,8 @@ msgid "Restore backup" msgstr "Restaurar copia de seguridad" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "Mostrar/ocultar contraseña" @@ -4240,15 +4216,15 @@ msgstr "Mostrar/ocultar contraseña" msgid "Revert" msgstr "Anular" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4277,7 +4253,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "Contraseña del router" @@ -4299,11 +4276,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "Comprobar el sistema de ficheros antes de montar el dispositivo" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "Comprobar el sistema de ficheros" @@ -4311,11 +4288,12 @@ msgstr "Comprobar el sistema de ficheros" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Acceso SSH" @@ -4331,7 +4309,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "Claves SSH" @@ -4340,7 +4319,7 @@ msgstr "Claves SSH" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4351,6 +4330,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Guardar" @@ -4367,6 +4347,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Explorar" @@ -4375,7 +4359,7 @@ msgstr "Explorar" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Tareas programadas" @@ -4388,7 +4372,7 @@ msgstr "Sección añadida" msgid "Section removed" msgstr "Sección eliminada" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "Vea la página del manual de \"mount\" para detalles" @@ -4433,6 +4417,14 @@ msgstr "Tipo de servicio" msgid "Services" msgstr "Servicios" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4456,11 +4448,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "Configuración del servidor DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4480,22 +4472,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "Apagar esta interfaz" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Señal" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "Señal:" @@ -4503,10 +4495,6 @@ msgstr "Señal:" msgid "Size" msgstr "Tamaño" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4534,12 +4522,7 @@ msgstr "Saltar a navegación" msgid "Slot time" msgstr "Tiempo asignado" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Instalación de programas" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4565,7 +4548,7 @@ msgstr "" "grabarse manualmente. Por favor, mire el wiki para instrucciones de " "instalación específicas." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4575,7 +4558,7 @@ msgstr "Origen" msgid "Specifies the directory the device is attached to" msgstr "Especifica el directorio al que está enlazado el dispositivo" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "" "Especifica los puertos de escucha de esta instancia de <em>Dropbear</em>" @@ -4626,7 +4609,7 @@ msgstr "Arrancar" msgid "Start priority" msgstr "Prioridad de arranque" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4634,7 +4617,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "Arranque" @@ -4646,7 +4629,7 @@ msgstr "Rutas estáticas IPv4" msgid "Static IPv6 Routes" msgstr "Rutas estáticas IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Cesiones estáticas" @@ -4654,11 +4637,11 @@ msgstr "Cesiones estáticas" msgid "Static Routes" msgstr "Rutas estáticas" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "Dirección estática" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4676,8 +4659,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Estado" @@ -4702,7 +4684,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4732,7 +4714,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4750,7 +4732,7 @@ msgid "Synchronizing..." msgstr "Sincronizando..." #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4770,7 +4752,7 @@ msgstr "Propiedades del sistema" msgid "System log buffer size" msgstr "Tamaño del buffer de registro del sistema" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4788,7 +4770,7 @@ msgstr "Raíz del servidor TFTP" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "Ratio TX" @@ -4874,7 +4856,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4921,6 +4903,16 @@ msgstr "Se han anulado los siguientes cambios" msgid "The following rules are currently active on this system." msgstr "Rutas activas." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "Nombre de red repetido" @@ -4976,7 +4968,7 @@ msgstr "Este protocolo necesita estar asignado a un dispositivo" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -4984,7 +4976,7 @@ msgstr "" "El sistema está borrando la partición de configuración y rearrancará cuando " "termine." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -4996,6 +4988,10 @@ msgstr "" "Espere unos minutos antes de reconectar. Es posible que tenga que renovar la " "conexión de su ordenador para poder acceder de nuevo al dispositivo." +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -5004,12 +5000,16 @@ msgstr "" "El archivo con la imagen de firmware subido no tiene un formato adecuado. " "Asegúrese de haber elegido la imagen correcta para su plataforma." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Tema" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "Sin cesiones activas." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -5033,7 +5033,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5118,7 +5118,7 @@ msgid "" "their status." msgstr "Procesos de sistema que se están ejecutando actualmente y su estado." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "Conexiones de red activas." @@ -5144,6 +5144,10 @@ msgstr "" msgid "Timezone" msgstr "Zona horaria" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5154,12 +5158,12 @@ msgstr "" "de seguridad. Para reiniciar el firmware a su estado inicial pulse " "\"Reiniciar\" (sólo posible con imágenes squashfs)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Total disponible" @@ -5174,7 +5178,7 @@ msgstr "Traceroute" msgid "Traffic" msgstr "Tráfico" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Transferencia" @@ -5209,7 +5213,7 @@ msgstr "Modo de disparador" msgid "Tunnel ID" msgstr "ID de túnel" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "Interfaz de túnel" @@ -5224,12 +5228,12 @@ msgid "Tx-Power" msgstr "Potencia-TX" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Tipo" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5283,36 +5287,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "Desconocido" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "Error desconocido, ¡no se ha cambiado la contraseña!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "No gestionado" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Cambios no guardados" @@ -5332,10 +5336,6 @@ msgstr "Tipo de protocolo no soportado." msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "Actualizar listas" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5356,7 +5356,7 @@ msgstr "Archivo subido" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Tiempo activo" @@ -5472,7 +5472,7 @@ msgstr "Usar métrica de la pasarela" msgid "Use routing table" msgstr "Usar tabla de rutas" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5513,11 +5513,11 @@ msgstr "" msgid "Username" msgstr "Nombre de usuario" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5567,11 +5567,6 @@ msgstr "Clase de vendedor a enviar cuando solicite DHCP" msgid "Verify" msgstr "Verificar" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Versión" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5622,7 +5617,7 @@ msgstr "Esperando a que se realicen los cambios..." msgid "Waiting for command to complete..." msgstr "Esperando a que termine el comando..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5655,16 +5650,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "Red inalámbrica" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Adaptador inalámbrico" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Red inalámbrica" @@ -5679,13 +5674,13 @@ msgstr "Seguridad inalámbrica" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "Red inalámbrica desconectada" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "Red inalámbrica no asociada" @@ -5709,6 +5704,10 @@ msgstr "Escribir las peticiones de DNS recibidas en el registro del sistema" msgid "Write system log to file" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5724,7 +5723,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5757,9 +5756,9 @@ msgstr "" msgid "any" msgstr "cualquiera" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5776,7 +5775,7 @@ msgstr "auto" msgid "baseT" msgstr "baseT" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "puenteado" @@ -5795,24 +5794,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "crea un puente sobre la interfaz o interfaces asociadas" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "dB" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "dBm" @@ -5854,7 +5853,7 @@ msgstr "full dúplex" msgid "half-duplex" msgstr "half dúplex" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5876,44 +5875,44 @@ msgstr "si el destino es una red" msgid "input" msgstr "entrada" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "KB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "KB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "Kbit/s" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5939,19 +5938,10 @@ msgstr "no" msgid "no link" msgstr "sin enlace" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "ninguno" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5963,7 +5953,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "parado" @@ -5971,11 +5961,11 @@ msgstr "parado" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "activo" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5993,11 +5983,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -6011,7 +6001,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "enrutado" @@ -6045,7 +6035,7 @@ msgstr "marcado" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -6072,159 +6062,159 @@ msgstr "no especificado -o- crear:" msgid "untagged" msgstr "desmarcado" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6238,6 +6228,71 @@ msgstr "sí" msgid "« Back" msgstr "« Volver" +#~ msgid "" +#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " +#~ "authentication." +#~ msgstr "Claves públicas SSH. Ponga una por línea." + +#~ msgid "Password successfully changed!" +#~ msgstr "¡Contraseña cambiada!" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "Error desconocido, ¡no se ha cambiado la contraseña!" + +#~ msgid "Design" +#~ msgstr "Diseño" + +#~ msgid "Available packages" +#~ msgstr "Paquetes disponibles" + +#~ msgid "Displaying only packages containing" +#~ msgstr "Mostrar sólo paquete que contienen" + +#~ msgid "Download and install package" +#~ msgstr "Descargar e instalar paquete" + +#~ msgid "Filter" +#~ msgstr "Filtro" + +#~ msgid "Find package" +#~ msgstr "Buscar paquete" + +#~ msgid "Free space" +#~ msgstr "Espacio libre" + +#~ msgid "Install" +#~ msgstr "Instalar" + +#~ msgid "Installed packages" +#~ msgstr "Paquetes instalados" + +#~ msgid "No package lists available" +#~ msgstr "No hay listas de paquetes disponibles" + +#~ msgid "OK" +#~ msgstr "Aceptar" + +#~ msgid "OPKG-Configuration" +#~ msgstr "Configuración de OPKG" + +#~ msgid "Package lists are older than 24 hours" +#~ msgstr "Las listas de paquetes tienen más de 24 horas" + +#~ msgid "Package name" +#~ msgstr "Nombre del paquete" + +#~ msgid "Software" +#~ msgstr "Instalación de programas" + +#~ msgid "Update lists" +#~ msgstr "Actualizar listas" + +#~ msgid "Version" +#~ msgstr "Versión" + +#~ msgid "none" +#~ msgstr "ninguno" + #~ msgid "Disable DNS setup" #~ msgstr "Desactivar configuración de DNS" diff --git a/modules/luci-base/po/fr/base.po b/modules/luci-base/po/fr/base.po index 7ff2582a73..8e8434eea9 100644 --- a/modules/luci-base/po/fr/base.po +++ b/modules/luci-base/po/fr/base.po @@ -13,10 +13,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.6\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -49,16 +53,16 @@ msgstr "(pas d'interface connectée)" msgid "-- Additional Field --" msgstr "-- Champ Supplémentaire --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Choisir --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- autre --" @@ -82,11 +86,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Charge sur 1 minute :" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "Charge sur 15 minutes :" @@ -98,7 +102,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "Charge sur 5 minutes :" @@ -154,7 +158,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Adresse <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" @@ -181,11 +185,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "Passerelle <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "" @@ -195,12 +199,12 @@ msgstr "" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Nom de la <abbr title=\"Diode Électro-Luminescente\">DEL</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "Adresse <abbr title=\"Media Access Control\">MAC</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -230,19 +234,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -256,29 +264,29 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "Niveau de ré-essai ARP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "Ponts ATM" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "" "Identifiant de canal virtuel (<abbr title=\"Virtual Channel Idendifier" "\">VCI</abbr>) ATM" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "" "Identifiant de chemin virtuel (<abbr title=\"Virtual Path Idendifier\">VPI</" "abbr>) ATM" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -288,12 +296,12 @@ msgstr "" "des interfaces réseau virtuelles Linux qui peuvent être utilisées avec DHCP " "ou PPP pour se connecter au réseau du fournisseur d'accès." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "Numéro de périphérique ATM" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -308,8 +316,6 @@ msgstr "Point d'accès" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Actions" @@ -321,8 +327,8 @@ msgstr "Routes <abbr title=\"Internet Protocol Version 4\">IPv4</abbr> actives" msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "Routes <abbr title=\"Internet Protocol Version 6\">IPv6</abbr> actives" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Connexions actives" @@ -349,6 +355,13 @@ msgstr "Ad-hoc" msgid "Add" msgstr "Ajouter" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" @@ -366,8 +379,8 @@ msgstr "Fichiers hosts supplémetaires" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Adresse" @@ -383,7 +396,7 @@ msgstr "Administration" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -391,7 +404,7 @@ msgstr "Administration" msgid "Advanced Settings" msgstr "Paramètres avancés" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -399,7 +412,7 @@ msgstr "" msgid "Alert" msgstr "Alerte" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -422,7 +435,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "Autoriser l'authentification <abbr title=\"Secure Shell\">SSH</abbr> par mot " @@ -450,17 +463,17 @@ msgstr "Autoriser seulement ce qui est listé" msgid "Allow localhost" msgstr "Autoriser l'hôte local" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" "Permettre à des hôtes distants de se conecter à des ports SSH locaux " "correspondants (« forwarded »)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "Autoriser les connexions administrateur avec mot de passe" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "" "Autoriser l'utilisateur <em>root</em> à se connecter avec un mot de passe" @@ -486,64 +499,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -589,15 +602,15 @@ msgstr "Configuration de l'antenne" msgid "Any zone" msgstr "N'importe quelle zone" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -618,11 +631,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Équipements associés" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -653,8 +666,8 @@ msgstr "Autorisation requise" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Rafraîchissement automatique" @@ -697,29 +710,25 @@ msgstr "" msgid "Available" msgstr "Disponible" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Paquets disponibles" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Moyenne :" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -730,7 +739,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -760,7 +769,7 @@ msgstr "Retour aux résultats de la recherche" msgid "Backup" msgstr "Sauvegarder" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Sauvegarde / Mise à jour du micrologiciel" @@ -791,12 +800,14 @@ msgstr "" "de configuration modifiés marqués par opkg, des fichiers de base essentiels, " "et des motifs de sauvegarde définis par l'utilisateur." -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -805,7 +816,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Débit" @@ -813,7 +824,7 @@ msgstr "Débit" msgid "Bogus NX Domain Override" msgstr "Contourne les « NX Domain » bogués" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Pont" @@ -821,7 +832,7 @@ msgstr "Pont" msgid "Bridge interfaces" msgstr "Interfaces en pont" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "Numéro d'unité du pont" @@ -837,16 +848,10 @@ msgstr "Contrôleur sans fil Broadcom 802.11%s" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Contrôleur sans fil Broadcom BCM%04x 802.11" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "Temporisé" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -861,6 +866,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Annuler" @@ -883,6 +889,12 @@ msgstr "" msgid "Chain" msgstr "Chaîne" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -892,20 +904,24 @@ msgstr "Changements" msgid "Changes applied." msgstr "Changements appliqués." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "Change le mot de passe administrateur pour accéder à l'équipement" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Canal" @@ -989,6 +1005,11 @@ msgstr "Client" msgid "Client ID to send when requesting DHCP" msgstr "Identifiant client à envoyer dans les requêtes DHCP" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -1008,16 +1029,16 @@ msgstr "Fermer la liste…" #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1048,8 +1069,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Configuration" @@ -1061,15 +1080,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Confirmation" @@ -1078,8 +1097,8 @@ msgid "Connect" msgstr "Se connecter" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Connecté" @@ -1095,7 +1114,7 @@ msgstr "" msgid "Connections" msgstr "Connexions" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1152,16 +1171,6 @@ msgstr "Interface spécifique" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1186,7 +1195,7 @@ msgstr "Serveur DHCP" msgid "DHCP and DNS" msgstr "DHCP et DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "client DHCP" @@ -1206,16 +1215,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1243,16 +1252,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1264,7 +1273,7 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1278,6 +1287,10 @@ msgstr "Deboguage" msgid "Default %d" msgstr "%d par défaut" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1315,6 +1328,11 @@ msgstr "" msgid "Delete" msgstr "Effacer" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Supprimer ce réseau" @@ -1323,16 +1341,11 @@ msgstr "Supprimer ce réseau" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Description" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Apparence" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Destination" @@ -1340,8 +1353,8 @@ msgstr "Destination" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1358,7 +1371,7 @@ msgstr "Configuration de l'équipement" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1426,18 +1439,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "Jeter les réponses en RFC1918 amont" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "N'afficher que les paquets contenant" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1447,10 +1463,6 @@ msgstr "Optimisation de la distance" msgid "Distance to farthest network member in meters." msgstr "Distance au membre du réseau le plus éloigné, en mètres." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Diversité" @@ -1484,6 +1496,10 @@ msgid "Do not forward reverse lookups for local networks" msgstr "" "Ne pas transmettre les requêtes de recherche inverse pour les réseaux locaux" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Domaine nécessaire" @@ -1508,10 +1524,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Télécharge et installe le paquet" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "Télécharger la sauvegarde" @@ -1520,15 +1532,15 @@ msgstr "Télécharger la sauvegarde" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Session Dropbear" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1703,8 +1715,8 @@ msgstr "" "Activer le protocole <abbr title=\"Spanning Tree Protocol\">STP</abbr> sur " "ce pont" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "Mode encapsulé" @@ -1712,7 +1724,7 @@ msgstr "Mode encapsulé" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Chiffrement" @@ -1732,7 +1744,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "Effacement…" @@ -1741,19 +1753,19 @@ msgstr "Effacement…" msgid "Error" msgstr "Erreur" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Module Ethernet" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Commutateur Ethernet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1761,11 +1773,11 @@ msgstr "" msgid "Expand hosts" msgstr "Étendre le nom d'hôte" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Expire" @@ -1817,7 +1829,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1835,10 +1847,6 @@ msgstr "Nom de fichier d'une image de démarrage publiée aux clients" msgid "Filesystem" msgstr "Système de fichiers" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Filtrer" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Filtrer les requêtes privées" @@ -1861,10 +1869,6 @@ msgstr "" msgid "Find and join network" msgstr "Cherche et rejoint un réseau" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Trouver un paquet" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Terminer" @@ -1885,11 +1889,11 @@ msgstr "Paramètres du pare-feu" msgid "Firewall Status" msgstr "État du pare-feu" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Version du micrologiciel" @@ -1913,7 +1917,7 @@ msgstr "Écrire l'image du nouveau micrologiciel" msgid "Flash operations" msgstr "Opérations d'écriture" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "Écriture…" @@ -1961,7 +1965,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Transmettre le trafic DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1973,7 +1977,7 @@ msgstr "Transmettre le trafic de diffusion" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "Mode de transmission" @@ -1986,15 +1990,11 @@ msgstr "Seuil de fragmentation" msgid "Frame Bursting" msgstr "Rafale de trames" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "Libre" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Espace libre" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -2003,7 +2003,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "Ghz" @@ -2012,8 +2012,8 @@ msgstr "Ghz" msgid "GPRS only" msgstr "seulement GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Passerelle" @@ -2021,7 +2021,7 @@ msgstr "Passerelle" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "Ports de la passerelle" @@ -2034,16 +2034,12 @@ msgstr "Paramètres généraux" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "Configuration générale" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -2060,7 +2056,7 @@ msgstr "Construire l'archive" msgid "Generic 802.11%s Wireless Controller" msgstr "Contrôleur sans fil générique 802.11%s" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "" "La confirmation du nouveau mot de passe ne correspond pas, changement " @@ -2070,14 +2066,14 @@ msgstr "" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "Aller à la configuration du mot de passe…" @@ -2110,7 +2106,7 @@ msgstr "" msgid "Hang Up" msgstr "Signal (HUP)" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2122,14 +2118,6 @@ msgstr "" "Ici, vous pouvez configurer les aspects basiques de votre routeur comme son " "nom ou son fuseau horaire." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" -"Vous pouvez copier ici des clés SSH publiques (une par ligne) pour une " -"authentification SSH sur clés publiques." - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2142,7 +2130,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2163,9 +2151,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2220,7 +2208,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Pare-feu IPv4" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2244,7 +2232,7 @@ msgstr "Passerelle IPv4" msgid "IPv4 netmask" msgstr "Masque-réseau IPv4" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2289,11 +2277,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2315,7 +2303,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "Passerelle IPv6" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2470,7 +2458,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "Délai d'inactivité" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "Intérieur :" @@ -2490,10 +2478,6 @@ msgstr "Script d'initialisation" msgid "Initscripts" msgstr "Scripts d'initialisation" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Installer" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2506,17 +2490,13 @@ msgstr "Installer le paquet %q" msgid "Install protocol extensions..." msgstr "Installation des extensions de protocole…" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "Paquets installés" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Interface" @@ -2597,7 +2577,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "Nécessite un Script Java !" @@ -2622,7 +2602,7 @@ msgstr "Garder le paramètrage" msgid "Kernel Log" msgstr "Journal du noyau" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Version du noyau" @@ -2668,7 +2648,7 @@ msgstr "Seuil d'erreur des échos LCP" msgid "LCP echo interval" msgstr "Intervalle entre échos LCP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2685,7 +2665,7 @@ msgstr "Langue" msgid "Language and Style" msgstr "Langue et apparence" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2693,7 +2673,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2736,19 +2716,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2803,7 +2783,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Écouter seulement sur l'interface spécifié, sinon sur toutes" @@ -2817,7 +2797,7 @@ msgstr "Port d'écoute des requêtes DNS entrantes" msgid "Load" msgstr "Charger" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Charge moyenne" @@ -2827,6 +2807,10 @@ msgstr "Charge moyenne" msgid "Loading" msgstr "Chargement" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2856,7 +2840,7 @@ msgstr "" msgid "Local Startup" msgstr "Démarrage local" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Heure Locale" @@ -2916,11 +2900,11 @@ msgstr "Journalisation" msgid "Login" msgstr "Connexion" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Déconnexion" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2937,9 +2921,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "Adresse MAC" @@ -2975,7 +2959,7 @@ msgstr "MB/s" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "MHz" @@ -3001,7 +2985,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -3036,16 +3020,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "Nombre maximum d'adresses allouées." -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Mémoire" @@ -3088,11 +3072,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Mode" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3131,7 +3115,7 @@ msgstr "Montage" msgid "Mount Point" msgstr "Point de montage" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3157,7 +3141,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "Options de montage" @@ -3228,15 +3212,15 @@ msgstr "Nom du nouveau réseau" msgid "Navigation" msgstr "Navigation" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Masque de réseau" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3262,6 +3246,10 @@ msgstr "Réseau sans interfaces." msgid "Next »" msgstr "Prochain »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "Aucun serveur DHCP configuré sur cette interface" @@ -3274,9 +3262,9 @@ msgstr "" msgid "No files found" msgstr "Aucun fichier trouvé" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "Information indisponible" @@ -3296,18 +3284,18 @@ msgstr "Ce périphérique n'a aucune adresse configurée" msgid "No network name specified" msgstr "Aucun nom de réseau donné" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "Aucune liste de paquets disponible" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "Pas de mot de passe positionné !" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "Aucune règle dans cette chaîne" @@ -3320,23 +3308,23 @@ msgstr "" msgid "No zone assigned" msgstr "Aucune zone attribuée" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Bruit" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Bruit :" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3362,8 +3350,8 @@ msgstr "Pas trouvé" msgid "Not associated" msgstr "Pas associé" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "Non connecté" @@ -3387,14 +3375,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "OK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "Configuration OPKG" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3433,7 +3413,7 @@ msgstr "" msgid "On-State Delay" msgstr "Durée allumée" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "Il faut indiquer un nom d'hôte ou une adresse MAC !" @@ -3533,7 +3513,7 @@ msgstr "" msgid "Options" msgstr "Options" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "Autres :" @@ -3541,7 +3521,7 @@ msgstr "Autres :" msgid "Out" msgstr "Sortie" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "Extérieur :" @@ -3678,7 +3658,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3686,15 +3666,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "Nécessite le paquet libiwinfo !" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "Les listes de paquets ont plus de 24 heures" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Nom du paquet" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Paquets" @@ -3705,13 +3676,13 @@ msgstr "Fait partie de la zone %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Mot de passe" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Authentification par mot de passe" @@ -3723,14 +3694,14 @@ msgstr "Mot de passe de la clé privée" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "Mot de passe changé avec succès !" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Chemin de la CA" @@ -3755,17 +3726,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "Pic :" @@ -3797,7 +3768,7 @@ msgstr "Réinitialiser" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "Débit de la puce:" @@ -3825,16 +3796,11 @@ msgstr "Pqts." msgid "Please enter your username and password." msgstr "Saisissez votre nom d'utilisateur et mot de passe." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "Politique" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3842,11 +3808,11 @@ msgstr "Port" msgid "Port status:" msgstr "Statut du port :" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3858,7 +3824,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3879,7 +3845,7 @@ msgstr "" "Suppose que le distant a disparu une fois le nombre donné d'erreurs d'échos " "LCP ; utiliser 0 pour ignorer ces erreurs" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3901,7 +3867,7 @@ msgstr "Continuer" msgid "Processes" msgstr "Processus" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3911,9 +3877,9 @@ msgstr "Prot." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protocole" @@ -3941,6 +3907,14 @@ msgstr "Pseudo Ad-Hoc (ahdemo)" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3950,7 +3924,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "Qualitée" @@ -3983,7 +3957,7 @@ msgstr "Seuil RTS/CTS" msgid "RX" msgstr "Reçu" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "Débit en réception" @@ -4045,7 +4019,7 @@ msgstr "Voulez-vous vraiment ré-initialiser toutes les modifications ?" msgid "Really switch protocol?" msgstr "Voulez-vous vraiment changer de protocole ?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "Connexions temps-réel" @@ -4053,15 +4027,15 @@ msgstr "Connexions temps-réel" msgid "Realtime Graphs" msgstr "Graphiques temps-réel" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "Charge temps-réel" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "Trafic temps-réel" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "Qualité de réception actuelle" @@ -4073,7 +4047,7 @@ msgstr "" msgid "Rebind protection" msgstr "Protection contre l'attaque « rebind »" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Redémarrage" @@ -4135,7 +4109,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Désinstaller" @@ -4199,7 +4172,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Remise à zéro" @@ -4242,6 +4214,8 @@ msgid "Restore backup" msgstr "Restaurer une sauvegarde" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "Montrer/cacher le mot de passe" @@ -4251,15 +4225,15 @@ msgstr "Montrer/cacher le mot de passe" msgid "Revert" msgstr "Revenir" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4288,7 +4262,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "Mot de passe du routeur" @@ -4310,12 +4285,12 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "" "Faire un vérification du système de fichiers avant de monter le périphérique" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "Faire une vérification du système de fichiers" @@ -4323,11 +4298,12 @@ msgstr "Faire une vérification du système de fichiers" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Accès SSH" @@ -4343,7 +4319,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "Clés SSH" @@ -4352,7 +4329,7 @@ msgstr "Clés SSH" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4363,6 +4340,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Sauvegarder" @@ -4379,6 +4357,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Scan" @@ -4387,7 +4369,7 @@ msgstr "Scan" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Tâches Régulières" @@ -4400,7 +4382,7 @@ msgstr "Section ajoutée" msgid "Section removed" msgstr "Section retirée" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "Voir le manuel de « mount » pour les détails" @@ -4445,6 +4427,14 @@ msgstr "Type du service" msgid "Services" msgstr "Services" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4468,11 +4458,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "Configurer le serveur DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4492,22 +4482,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "Arrêter cet interface" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Signal" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "Signal :" @@ -4515,10 +4505,6 @@ msgstr "Signal :" msgid "Size" msgstr "Taille" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4546,12 +4532,7 @@ msgstr "Skip to navigation" msgid "Slot time" msgstr "Tranche de temps" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Logiciels" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4578,7 +4559,7 @@ msgstr "" "au wiki pour connaître les instructions d'installation spécifiques à votre " "matériel." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4588,7 +4569,7 @@ msgstr "Source" msgid "Specifies the directory the device is attached to" msgstr "Indique le répertoire auquel le périphérique est rattaché" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "Indique le port d'écoute de cette instance <em>Dropbear</em>" @@ -4636,7 +4617,7 @@ msgstr "Démarrer" msgid "Start priority" msgstr "Priorité de démarrage" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4644,7 +4625,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "Démarrage" @@ -4656,7 +4637,7 @@ msgstr "Routes IPv4 statiques" msgid "Static IPv6 Routes" msgstr "Routes IPv6 statiques" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Baux Statiques" @@ -4664,11 +4645,11 @@ msgstr "Baux Statiques" msgid "Static Routes" msgstr "Routes statiques" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "Adresse statique" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4686,8 +4667,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Status" @@ -4712,7 +4692,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4742,7 +4722,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4760,7 +4740,7 @@ msgid "Synchronizing..." msgstr "Synchronisation…" #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4780,7 +4760,7 @@ msgstr "Propriétés système" msgid "System log buffer size" msgstr "Taille du tampon du journal système" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP :" @@ -4798,7 +4778,7 @@ msgstr "Racine du serveur TFTP" msgid "TX" msgstr "Transmis" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "Débit en émission" @@ -4884,7 +4864,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4929,6 +4909,16 @@ msgstr "Les changements suivants ont été annulés" msgid "The following rules are currently active on this system." msgstr "Les règles suivantes sont actuellement actives sur ce système." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "Le nom de réseau donné n'est pas unique" @@ -4986,7 +4976,7 @@ msgstr "Le protocole sélectionné nécessite l'attribution d'un périphérique" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -4994,7 +4984,7 @@ msgstr "" "Le système est en train d'effacer la partition de configuration et " "redémarrera tout seul une fois cela fini." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -5007,6 +4997,10 @@ msgstr "" "address of your computer to reach the device again, depending on your " "settings." +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -5015,12 +5009,16 @@ msgstr "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Apparence" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "Il n'y a aucun bail actif." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -5044,7 +5042,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5132,7 +5130,7 @@ msgstr "" "Cette liste donne une vue d'ensemble des processus en exécution et leur " "statut." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "" "Cette page donne une vue d'ensemble des connexions réseaux actuellement " @@ -5160,6 +5158,10 @@ msgstr "" msgid "Timezone" msgstr "Fuseau horaire" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5171,12 +5173,12 @@ msgstr "" "micrologiciel dans son état initial, cliquer sur \"Réinitialiser\" (possible " "seulement avec les images de type squashfs)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Total disponible" @@ -5191,7 +5193,7 @@ msgstr "Traceroute" msgid "Traffic" msgstr "Trafic" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Transfert" @@ -5226,7 +5228,7 @@ msgstr "Mode de déclenchement" msgid "Tunnel ID" msgstr "ID du tunnel" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "Interface du tunnel" @@ -5241,12 +5243,12 @@ msgid "Tx-Power" msgstr "Puissance d'émission" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Type" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP :" @@ -5300,36 +5302,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "Inconnu" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "Erreur inconnue, mot de passe inchangé !" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "non-géré" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Changements non appliqués" @@ -5349,10 +5351,6 @@ msgstr "Type de protocole non pris en charge." msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "Mettre les listes à jour" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5374,7 +5372,7 @@ msgstr "Fichier Uploadé" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Uptime" @@ -5490,7 +5488,7 @@ msgstr "Utiliser la métrique de la passerelle" msgid "Use routing table" msgstr "Utiliser la table de routage" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5531,11 +5529,11 @@ msgstr "" msgid "Username" msgstr "Nom d'utilisateur" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5585,11 +5583,6 @@ msgstr "Classe de fournisseur à envoyer dans les requêtes DHCP" msgid "Verify" msgstr "Vérifier" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Version" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5640,7 +5633,7 @@ msgstr "En attente de l'application des changements..." msgid "Waiting for command to complete..." msgstr "En attente de la fin de la commande..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5673,16 +5666,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "Sans-fil" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Module Wi-Fi" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Réseau sans-fil" @@ -5697,13 +5690,13 @@ msgstr "Sécurité des réseaux sans-fil" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "Le Wi-Fi est désactivé" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "Le Wi-Fi est non associé" @@ -5727,6 +5720,10 @@ msgstr "Écrire les requêtes DNS reçues dans syslog" msgid "Write system log to file" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5742,7 +5739,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5776,9 +5773,9 @@ msgstr "" msgid "any" msgstr "n'importe lequel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5795,7 +5792,7 @@ msgstr "auto" msgid "baseT" msgstr "baseT" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "ponté" @@ -5814,24 +5811,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "créer un bridge entre plusieurs interfaces" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "dB" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "dBm" @@ -5871,7 +5868,7 @@ msgstr "full-duplex" msgid "half-duplex" msgstr "half-duplex" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5893,44 +5890,44 @@ msgstr "si la destination est un réseau" msgid "input" msgstr "entrée" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "kB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "kB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "kbit/s" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5956,19 +5953,10 @@ msgstr "non" msgid "no link" msgstr "pas de lien" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "aucun" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5980,7 +5968,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "Arrêté" @@ -5988,11 +5976,11 @@ msgstr "Arrêté" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "Actif" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -6010,11 +5998,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -6028,7 +6016,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "routé" @@ -6062,7 +6050,7 @@ msgstr "marqué" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -6089,159 +6077,159 @@ msgstr "non précisé -ou- créer :" msgid "untagged" msgstr "non marqué" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6255,6 +6243,73 @@ msgstr "oui" msgid "« Back" msgstr "« Retour" +#~ msgid "" +#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " +#~ "authentication." +#~ msgstr "" +#~ "Vous pouvez copier ici des clés SSH publiques (une par ligne) pour une " +#~ "authentification SSH sur clés publiques." + +#~ msgid "Password successfully changed!" +#~ msgstr "Mot de passe changé avec succès !" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "Erreur inconnue, mot de passe inchangé !" + +#~ msgid "Design" +#~ msgstr "Apparence" + +#~ msgid "Available packages" +#~ msgstr "Paquets disponibles" + +#~ msgid "Displaying only packages containing" +#~ msgstr "N'afficher que les paquets contenant" + +#~ msgid "Download and install package" +#~ msgstr "Télécharge et installe le paquet" + +#~ msgid "Filter" +#~ msgstr "Filtrer" + +#~ msgid "Find package" +#~ msgstr "Trouver un paquet" + +#~ msgid "Free space" +#~ msgstr "Espace libre" + +#~ msgid "Install" +#~ msgstr "Installer" + +#~ msgid "Installed packages" +#~ msgstr "Paquets installés" + +#~ msgid "No package lists available" +#~ msgstr "Aucune liste de paquets disponible" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "OPKG-Configuration" +#~ msgstr "Configuration OPKG" + +#~ msgid "Package lists are older than 24 hours" +#~ msgstr "Les listes de paquets ont plus de 24 heures" + +#~ msgid "Package name" +#~ msgstr "Nom du paquet" + +#~ msgid "Software" +#~ msgstr "Logiciels" + +#~ msgid "Update lists" +#~ msgstr "Mettre les listes à jour" + +#~ msgid "Version" +#~ msgstr "Version" + +#~ msgid "none" +#~ msgstr "aucun" + #~ msgid "Disable DNS setup" #~ msgstr "Désactiver la configuration DNS" diff --git a/modules/luci-base/po/he/base.po b/modules/luci-base/po/he/base.po index cf62c65bda..fe2c6af9ec 100644 --- a/modules/luci-base/po/he/base.po +++ b/modules/luci-base/po/he/base.po @@ -11,10 +11,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -47,16 +51,16 @@ msgstr "(אין ממשק מצורף)" msgid "-- Additional Field --" msgstr "-- שדה נוסף --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- נא לבחור --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- מותאם אישית --" @@ -80,11 +84,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "עומס במשך דקה:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "עומס במשך רבע שעה:" @@ -96,7 +100,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "עומס במשך 5 דקות:" @@ -150,7 +154,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "כתובות <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" @@ -176,11 +180,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "הגדרות <abbr title=\"Light Emitting Diode\">LED</abbr>" @@ -189,12 +193,12 @@ msgstr "הגדרות <abbr title=\"Light Emitting Diode\">LED</abbr>" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "שם <abbr title=\"Light Emitting Diode\">LED</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "כתובת-<abbr title=\"Media Access Control\">MAC</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -220,19 +224,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -247,40 +255,40 @@ msgstr "" msgid "ARP retry threshold" msgstr "סף נסיונות של ARP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 #, fuzzy msgid "ATM Bridges" msgstr "גשרי ATM" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 #, fuzzy msgid "ATM Virtual Channel Identifier (VCI)" msgstr "מזהה ערוצים ווירטואליים של ATM" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 #, fuzzy msgid "ATM Virtual Path Identifier (VPI)" msgstr "מזהה נתיבים ווירטואליים של ATM (VPI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " "to dial into the provider network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "מס' התקן של ATM" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -296,8 +304,6 @@ msgstr "נקודת גישה" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "פעולות" @@ -309,8 +315,8 @@ msgstr "" msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "חיבורים פעילים" @@ -339,6 +345,13 @@ msgstr "אד-הוק" msgid "Add" msgstr "הוסף" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 #, fuzzy msgid "Add local domain suffix to names served from hosts files" @@ -356,8 +369,8 @@ msgstr "קבצי מארח נוספים" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "כתובת" @@ -374,7 +387,7 @@ msgstr "מנהלה" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -382,7 +395,7 @@ msgstr "מנהלה" msgid "Advanced Settings" msgstr "הגדרות מתקדמות" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -391,7 +404,7 @@ msgstr "" msgid "Alert" msgstr "אזעקה" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -414,7 +427,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" @@ -442,15 +455,15 @@ msgstr "אפשר רשומים בלבד" msgid "Allow localhost" msgstr "אפשר localhost" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "" @@ -473,64 +486,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -578,15 +591,15 @@ msgstr "הגדרות אנטנה" msgid "Any zone" msgstr "כל תחום" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -607,11 +620,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "תחנות קשורות" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -642,8 +655,8 @@ msgstr "דרוש אימות" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "רענון אוטומטי" @@ -686,29 +699,25 @@ msgstr "" msgid "Available" msgstr "זמין" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "חבילות זמינות" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "ממוצע:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -719,7 +728,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -749,7 +758,7 @@ msgstr "חזרה לתוצאות סריקה" msgid "Backup" msgstr "גיבוי" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "גיבוי / קושחת פלאש" @@ -780,12 +789,14 @@ msgstr "" "המסומנים ב opkg ׁOpen PacKaGe Managementׂ, קבצי בסיס חיוניים ותבניות הגיבוי " "המוגדרות ע\"י המשתמש." -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -794,7 +805,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "" @@ -802,7 +813,7 @@ msgstr "" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "גשר" @@ -810,7 +821,7 @@ msgstr "גשר" msgid "Bridge interfaces" msgstr "ממשקי גשר" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "מס' יח' גשר" @@ -827,16 +838,10 @@ msgstr "שלט אלחוטי Broadcom 802.11%s" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "שלט אלחוטי Broadcom BCM%04x 802.11" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -851,6 +856,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "בטל" @@ -873,6 +879,12 @@ msgstr "" msgid "Chain" msgstr "שרשרת" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -882,20 +894,24 @@ msgstr "שינויים" msgid "Changes applied." msgstr "השינויים הוחלו" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "משנה את סיסמת המנהל לגישה למכשיר" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "ערוץ" @@ -970,6 +986,11 @@ msgstr "" msgid "Client ID to send when requesting DHCP" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -987,16 +1008,16 @@ msgstr "סגור רשימה..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1027,8 +1048,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "הגדרות" @@ -1040,15 +1059,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "אישור" @@ -1057,8 +1076,8 @@ msgid "Connect" msgstr "התחבר" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "מחובר" @@ -1074,7 +1093,7 @@ msgstr "" msgid "Connections" msgstr "חיבורים" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1131,16 +1150,6 @@ msgstr "ממשק מותאם אישית" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1165,7 +1174,7 @@ msgstr "שרת DHCP" msgid "DHCP and DNS" msgstr "DHCP ו- DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "לקוח DHCP" @@ -1185,16 +1194,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1222,16 +1231,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1243,7 +1252,7 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1257,6 +1266,10 @@ msgstr "" msgid "Default %d" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1293,6 +1306,11 @@ msgstr "" msgid "Delete" msgstr "למחוק" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "מחק רשת זו" @@ -1301,16 +1319,11 @@ msgstr "מחק רשת זו" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "תיאור" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "עיצוב" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "יעד" @@ -1318,8 +1331,8 @@ msgstr "יעד" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1336,7 +1349,7 @@ msgstr "הגדרות מכשיר" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1402,18 +1415,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "מציג רק חבילות המכילות" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1423,10 +1439,6 @@ msgstr "" msgid "Distance to farthest network member in meters." msgstr "מרחק לנק' הרשת הרחוקה ביותר במטרים" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "גיוון" @@ -1451,6 +1463,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "" @@ -1473,10 +1489,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "הורד והתקן חבילות" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "הורד גיבוי" @@ -1485,15 +1497,15 @@ msgstr "הורד גיבוי" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1663,8 +1675,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "" @@ -1672,7 +1684,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "הצפנה" @@ -1692,7 +1704,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "מוחק..." @@ -1701,19 +1713,19 @@ msgstr "מוחק..." msgid "Error" msgstr "שגיאה" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1721,11 +1733,11 @@ msgstr "" msgid "Expand hosts" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "" @@ -1774,7 +1786,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1792,10 +1804,6 @@ msgstr "" msgid "Filesystem" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "" @@ -1818,10 +1826,6 @@ msgstr "" msgid "Find and join network" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "" @@ -1842,11 +1846,11 @@ msgstr "" msgid "Firewall Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "" @@ -1870,7 +1874,7 @@ msgstr "" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "" @@ -1918,7 +1922,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1930,7 +1934,7 @@ msgstr "" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "" @@ -1943,15 +1947,11 @@ msgstr "" msgid "Frame Bursting" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1960,7 +1960,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "" @@ -1969,8 +1969,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "" @@ -1978,7 +1978,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "" @@ -1991,16 +1991,12 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -2017,7 +2013,7 @@ msgstr "" msgid "Generic 802.11%s Wireless Controller" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "" @@ -2025,14 +2021,14 @@ msgstr "" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "" @@ -2065,7 +2061,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2075,12 +2071,6 @@ msgid "" "the timezone." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2093,7 +2083,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2114,9 +2104,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2171,7 +2161,7 @@ msgstr "" msgid "IPv4 Firewall" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2195,7 +2185,7 @@ msgstr "" msgid "IPv4 netmask" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2240,11 +2230,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2266,7 +2256,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2413,7 +2403,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "" @@ -2433,10 +2423,6 @@ msgstr "" msgid "Initscripts" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2449,17 +2435,13 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "" @@ -2533,7 +2515,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "" @@ -2558,7 +2540,7 @@ msgstr "" msgid "Kernel Log" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "" @@ -2604,7 +2586,7 @@ msgstr "" msgid "LCP echo interval" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "" @@ -2621,7 +2603,7 @@ msgstr "" msgid "Language and Style" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2629,7 +2611,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2672,19 +2654,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2736,7 +2718,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -2750,7 +2732,7 @@ msgstr "" msgid "Load" msgstr "עומס" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "עומס ממוצע" @@ -2760,6 +2742,10 @@ msgstr "עומס ממוצע" msgid "Loading" msgstr "טוען" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2789,7 +2775,7 @@ msgstr "" msgid "Local Startup" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "" @@ -2842,11 +2828,11 @@ msgstr "" msgid "Login" msgstr "" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2861,9 +2847,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "" @@ -2899,7 +2885,7 @@ msgstr "" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "" @@ -2925,7 +2911,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -2960,16 +2946,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "" @@ -3012,11 +2998,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3055,7 +3041,7 @@ msgstr "" msgid "Mount Point" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3079,7 +3065,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "" @@ -3150,15 +3136,15 @@ msgstr "" msgid "Navigation" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3184,6 +3170,10 @@ msgstr "" msgid "Next »" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "" @@ -3196,9 +3186,9 @@ msgstr "" msgid "No files found" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "" @@ -3218,18 +3208,18 @@ msgstr "" msgid "No network name specified" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "אין רשימת חבילות זמינה" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "לא הוגדרה סיסמה!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "" @@ -3242,23 +3232,23 @@ msgstr "" msgid "No zone assigned" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3284,8 +3274,8 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "לא מחובר" @@ -3309,14 +3299,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3351,7 +3333,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -3451,7 +3433,7 @@ msgstr "" msgid "Options" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "" @@ -3459,7 +3441,7 @@ msgstr "" msgid "Out" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "" @@ -3594,7 +3576,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3602,15 +3584,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "שם החבילה" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "" @@ -3621,13 +3594,13 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "" @@ -3639,14 +3612,14 @@ msgstr "" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "" @@ -3671,17 +3644,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "" @@ -3713,7 +3686,7 @@ msgstr "" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "" @@ -3741,16 +3714,11 @@ msgstr "" msgid "Please enter your username and password." msgstr "אנא הזן את שם המשתמש והסיסמה שלך:" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "" @@ -3758,11 +3726,11 @@ msgstr "" msgid "Port status:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3774,7 +3742,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3793,7 +3761,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3815,7 +3783,7 @@ msgstr "" msgid "Processes" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3825,9 +3793,9 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "" @@ -3855,6 +3823,14 @@ msgstr "" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3864,7 +3840,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "" @@ -3897,7 +3873,7 @@ msgstr "" msgid "RX" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "קצב קליטה" @@ -3955,7 +3931,7 @@ msgstr "" msgid "Really switch protocol?" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "" @@ -3963,15 +3939,15 @@ msgstr "" msgid "Realtime Graphs" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "" @@ -3983,7 +3959,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "" @@ -4045,7 +4021,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "" @@ -4109,7 +4084,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "" @@ -4152,6 +4126,8 @@ msgid "Restore backup" msgstr "" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "" @@ -4161,15 +4137,15 @@ msgstr "" msgid "Revert" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4198,7 +4174,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "" @@ -4218,11 +4195,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "הרץ בדיקת מערכת קבצים" @@ -4230,11 +4207,12 @@ msgstr "הרץ בדיקת מערכת קבצים" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "" @@ -4250,7 +4228,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "" @@ -4259,7 +4238,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "" @@ -4270,6 +4249,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "" @@ -4286,6 +4266,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "" @@ -4294,7 +4278,7 @@ msgstr "" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "" @@ -4307,7 +4291,7 @@ msgstr "" msgid "Section removed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "" @@ -4350,6 +4334,14 @@ msgstr "" msgid "Services" msgstr "שירותים" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4373,11 +4365,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4397,22 +4389,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "" @@ -4420,10 +4412,6 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4451,12 +4439,7 @@ msgstr "דלג אל הניווט" msgid "Slot time" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "תוכנה" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4481,7 +4464,7 @@ msgstr "" "סליחה, אין תמיכה בעדכון מערכת, ולכן קושחה חדשה חייבת להיצרב ידנית. אנא פנה " "אל ה-wiki של OpenWrt/LEDE עבור הוראות ספציפיות למכשיר שלך." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4491,7 +4474,7 @@ msgstr "מקור" msgid "Specifies the directory the device is attached to" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "" @@ -4537,7 +4520,7 @@ msgstr "" msgid "Start priority" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4545,7 +4528,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "אתחול" @@ -4557,7 +4540,7 @@ msgstr "ניתובי IPv4 סטטיים" msgid "Static IPv6 Routes" msgstr "ניתובי IPv6 סטטיים" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "הקצאות סטטיות" @@ -4565,11 +4548,11 @@ msgstr "הקצאות סטטיות" msgid "Static Routes" msgstr "ניתובים סטטיים" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "כתובת סטטית" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4586,8 +4569,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "מצב" @@ -4612,7 +4594,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4642,7 +4624,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4660,7 +4642,7 @@ msgid "Synchronizing..." msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4680,7 +4662,7 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4698,7 +4680,7 @@ msgstr "" msgid "TX" msgstr "שידור" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "קצב שידור" @@ -4771,7 +4753,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4810,6 +4792,16 @@ msgstr "" msgid "The following rules are currently active on this system." msgstr "החוקים הבאים מאופשרים כרגע במערכת זו." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "השם שניתן לרשת איננו ייחודי" @@ -4856,13 +4848,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " "few minutes before you try to reconnect. It might be necessary to renew the " @@ -4870,18 +4862,26 @@ msgid "" "settings." msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "עיצוב" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -4903,7 +4903,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -4975,7 +4975,7 @@ msgid "" "their status." msgstr "רשימה זו מציגה סקירה של תהליכי המערכת הרצים כרגע ואת מצבם." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "דף זה מציג סקירה של חיבורי הרשת הפעילים כרגע." @@ -5001,6 +5001,10 @@ msgstr "" msgid "Timezone" msgstr "אזור זמן" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5009,12 +5013,12 @@ msgid "" msgstr "" "על מנת לשחזר את קבצי ההגדרות, באפשרותך להעלות ארכיון גיבוי שנוצר לפני כן." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "סה\"כ פנוי" @@ -5029,7 +5033,7 @@ msgstr "" msgid "Traffic" msgstr "תעבורה" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "העברה" @@ -5064,7 +5068,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "" @@ -5079,12 +5083,12 @@ msgid "Tx-Power" msgstr "עוצמת שידור" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5138,36 +5142,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "" @@ -5187,10 +5191,6 @@ msgstr "" msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5208,7 +5208,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "" @@ -5324,7 +5324,7 @@ msgstr "" msgid "Use routing table" msgstr "השתמש בטבלת ניתוב" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5361,11 +5361,11 @@ msgstr "" msgid "Username" msgstr "שם משתמש" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5415,11 +5415,6 @@ msgstr "" msgid "Verify" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "גרסה" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5468,7 +5463,7 @@ msgstr "" msgid "Waiting for command to complete..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5501,16 +5496,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "" @@ -5525,13 +5520,13 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "" @@ -5555,6 +5550,10 @@ msgstr "" msgid "Write system log to file" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5566,7 +5565,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "אתה חייב להפעיל את JavaScript בדפדפן שלך; אחרת, LuCI לא יפעל כראוי." @@ -5598,9 +5597,9 @@ msgstr "" msgid "any" msgstr "כלשהו" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5617,7 +5616,7 @@ msgstr "אוטומטי" msgid "baseT" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "" @@ -5636,24 +5635,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "" @@ -5693,7 +5692,7 @@ msgstr "" msgid "half-duplex" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5715,44 +5714,44 @@ msgstr "אם היעד הוא רשת" msgid "input" msgstr "קלט" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5778,19 +5777,10 @@ msgstr "לא" msgid "no link" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "ללא" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5802,7 +5792,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "כבוי" @@ -5810,11 +5800,11 @@ msgstr "כבוי" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "פועל" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5832,11 +5822,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5850,7 +5840,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "מנותב" @@ -5884,7 +5874,7 @@ msgstr "מתויג" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -5911,159 +5901,159 @@ msgstr "לא מוגדר -או- יצר" msgid "untagged" msgstr "לא מתויג" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6077,6 +6067,33 @@ msgstr "כן" msgid "« Back" msgstr "<< אחורה" +#~ msgid "Design" +#~ msgstr "עיצוב" + +#~ msgid "Available packages" +#~ msgstr "חבילות זמינות" + +#~ msgid "Displaying only packages containing" +#~ msgstr "מציג רק חבילות המכילות" + +#~ msgid "Download and install package" +#~ msgstr "הורד והתקן חבילות" + +#~ msgid "No package lists available" +#~ msgstr "אין רשימת חבילות זמינה" + +#~ msgid "Package name" +#~ msgstr "שם החבילה" + +#~ msgid "Software" +#~ msgstr "תוכנה" + +#~ msgid "Version" +#~ msgstr "גרסה" + +#~ msgid "none" +#~ msgstr "ללא" + #~ msgid "IPv4 and IPv6" #~ msgstr "IPv4 ו-IPv6" diff --git a/modules/luci-base/po/hu/base.po b/modules/luci-base/po/hu/base.po index 516a1c538f..c9ffde2f19 100644 --- a/modules/luci-base/po/hu/base.po +++ b/modules/luci-base/po/hu/base.po @@ -11,10 +11,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -47,16 +51,16 @@ msgstr "(nincs csatalkoztatott interfész)" msgid "-- Additional Field --" msgstr "-- További mező --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Kérem válasszon --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- egyéni --" @@ -80,11 +84,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Terhelés (utolsó 1 perc):" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "Terhelés (utolsó 15 perc):" @@ -96,7 +100,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "Terhelés (utolsó 5 perc):" @@ -152,7 +156,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-cím" @@ -179,11 +183,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-útválasztó" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> konfiguráció" @@ -192,12 +196,12 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> konfiguráció" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Név" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-cím" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -227,19 +231,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -253,25 +261,25 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "ARP újrapróbálkozási küszöbérték" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "ATM Hidak" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "ATM Virtuális Csatorna Azonosító (VCI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "ATM Virtuális Út Azonosító (VPI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -281,12 +289,12 @@ msgstr "" "hálózati interfész mutatják, mely így DHCP-vel vagy PPP-vel összekapcsolva " "használható a szolgáltatói hálózatba történő betárcsázáshoz." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "ATM eszközszám" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -301,8 +309,6 @@ msgstr "Hozzáférési pont" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Műveletek" @@ -316,8 +322,8 @@ msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "" "Aktív <abbr title=\"Internet Protocol Version 6\">IPv6</abbr> útvonalak" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Aktív kapcsolatok" @@ -344,6 +350,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Hozzáadás" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" @@ -361,8 +374,8 @@ msgstr "További 'hosts' fájlok" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Cím" @@ -378,7 +391,7 @@ msgstr "Adminisztráció" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -386,7 +399,7 @@ msgstr "Adminisztráció" msgid "Advanced Settings" msgstr "Haladó beállítások" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -394,7 +407,7 @@ msgstr "" msgid "Alert" msgstr "Riasztás" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -417,7 +430,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "<abbr title=\"Secure Shell\">SSH</abbr> jelszó hitelesítés engedélyezése" @@ -444,17 +457,17 @@ msgstr "Csak a felsoroltak engedélyezése" msgid "Allow localhost" msgstr "Lolcalhost engedélyezése" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" "Távoli hostok csatlakozásának engedélyezése a helyi SSH továbbított " "portokhoz." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "root jelszavas bejelentkezésének engedélyezése" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "Engedélyezi a <em>root</em> felhasználó jelszavas bejelentkezését" @@ -479,64 +492,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -582,15 +595,15 @@ msgstr "Antenna beállítások" msgid "Any zone" msgstr "Bármelyik zóna" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -611,11 +624,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Kapcsolódó kliensek" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -646,8 +659,8 @@ msgstr "Hitelesítés szükséges" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Automatikus frissítés" @@ -690,29 +703,25 @@ msgstr "" msgid "Available" msgstr "Elérhető" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Elérhető csomagok" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Átlag:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -723,7 +732,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -753,7 +762,7 @@ msgstr "Vissza a felderítési eredményekhez" msgid "Backup" msgstr "Mentés" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Mentés / Firmware frissítés" @@ -785,12 +794,14 @@ msgstr "" "fájlokból valamint a felhasználó által megadott mintáknak megfelelő " "fájlokból áll." -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -799,7 +810,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Bitráta" @@ -807,7 +818,7 @@ msgstr "Bitráta" msgid "Bogus NX Domain Override" msgstr "Hamis NX tartomány felülbírálása" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Híd" @@ -815,7 +826,7 @@ msgstr "Híd" msgid "Bridge interfaces" msgstr "Híd interfészek" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "Híd eszközszám" @@ -831,16 +842,10 @@ msgstr "Broadcom 802.11%s vezeték-nélküli vezérlő" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Broadcom BCM%04x 802.11 vezeték-nélküli vezérlő" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "Átmeneti tárban van" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -855,6 +860,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Mégsem" @@ -877,6 +883,12 @@ msgstr "" msgid "Chain" msgstr "Lánc" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -886,21 +898,25 @@ msgstr "Módosítások" msgid "Changes applied." msgstr "A módosítások alkalmazva." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "" "Itt módosíthatja az eszköz eléréséhez szükséges adminisztrátori jelszót" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Csatorna" @@ -984,6 +1000,11 @@ msgstr "Ügyfél" msgid "Client ID to send when requesting DHCP" msgstr "DHCP kérés során küldendő kliens azonosító" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -1003,16 +1024,16 @@ msgstr "Lista bezárása..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1043,8 +1064,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Beállítás" @@ -1056,15 +1075,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Megerősítés" @@ -1073,8 +1092,8 @@ msgid "Connect" msgstr "Kapcsolódás" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Kapcsolódva" @@ -1090,7 +1109,7 @@ msgstr "" msgid "Connections" msgstr "Kapcsolatok" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1147,16 +1166,6 @@ msgstr "Egyéni interfész" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1181,7 +1190,7 @@ msgstr "DHCP kiszolgáló" msgid "DHCP and DNS" msgstr "DHCP és DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "DHCP ügyfél" @@ -1201,16 +1210,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1238,16 +1247,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1259,7 +1268,7 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1273,6 +1282,10 @@ msgstr "Hibakeresés" msgid "Default %d" msgstr "Alapértelmezés %d" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1309,6 +1322,11 @@ msgstr "" msgid "Delete" msgstr "Törlés" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Hálózat törlése" @@ -1317,16 +1335,11 @@ msgstr "Hálózat törlése" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Leírás" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Megjelenés" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Cél" @@ -1334,8 +1347,8 @@ msgstr "Cél" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1352,7 +1365,7 @@ msgstr "Eszköz beállítások" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1420,18 +1433,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "Beérkező RFC1918 DHCP válaszok elvetése. " +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "Csak azon csomagok megjelenítése, amelyek tartalmazzák" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1441,10 +1457,6 @@ msgstr "Távolság optimalizáció" msgid "Distance to farthest network member in meters." msgstr "A hálózat legtávolabbi tagjának távolsága méterben." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Diverzitás" @@ -1475,6 +1487,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Ne továbbítson fordított keresési kéréseket a helyi hálózathoz" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Tartomány szükséges" @@ -1499,10 +1515,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Csomag letöltése és telepítése" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "Biztonsági mentés letöltése" @@ -1511,15 +1523,15 @@ msgstr "Biztonsági mentés letöltése" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Dropbear példány" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1694,8 +1706,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "A Spanning Tree prokoll engedélyezése erre a hídra" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "Beágyazási mód" @@ -1703,7 +1715,7 @@ msgstr "Beágyazási mód" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Titkosítás" @@ -1723,7 +1735,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "Törlés..." @@ -1732,19 +1744,19 @@ msgstr "Törlés..." msgid "Error" msgstr "Hiba" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Ethernet adapter" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Ethernet switch" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1752,11 +1764,11 @@ msgstr "" msgid "Expand hosts" msgstr "Gépek kibontása" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Lejárat" @@ -1806,7 +1818,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1824,10 +1836,6 @@ msgstr "A kliensek részére közzétett betöltö kép fájlneve" msgid "Filesystem" msgstr "Fájlrendszer" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Szűrő" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Privát kérések szűrése" @@ -1850,10 +1858,6 @@ msgstr "" msgid "Find and join network" msgstr "Hálózatok keresése és csatlakozás" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Csomag keresése" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Befejezés" @@ -1874,11 +1878,11 @@ msgstr "Tűzfal Beállítások" msgid "Firewall Status" msgstr "Tűzfal Állapot" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Tűzfal verzió" @@ -1902,7 +1906,7 @@ msgstr "Új firmware image flash-elése" msgid "Flash operations" msgstr "Flash műveletek" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "Flash-elés..." @@ -1952,7 +1956,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "DHCP forgalom továbbítás" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1964,7 +1968,7 @@ msgstr "Broadcast forgalom továbbítás" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "Továbbítás módja" @@ -1977,15 +1981,11 @@ msgstr "Töredezettségi küszöb" msgid "Frame Bursting" msgstr "Keretfűzés" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "Szabad" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Szabad hely" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1994,7 +1994,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "GHz" @@ -2003,8 +2003,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Csak GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Átjáró" @@ -2012,7 +2012,7 @@ msgstr "Átjáró" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "Átjáró portok" @@ -2025,16 +2025,12 @@ msgstr "Általános beállítások" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "Általános beállítások" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -2051,7 +2047,7 @@ msgstr "Archívum készítése" msgid "Generic 802.11%s Wireless Controller" msgstr "Általános 802.11%s vezeték-nélküli vezérlő" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "A megadott jelszavak nem egyeznek, a jelszó nem lett megváltoztatva!" @@ -2059,14 +2055,14 @@ msgstr "A megadott jelszavak nem egyeznek, a jelszó nem lett megváltoztatva!" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "Ugrás a jelszó beállításhoz..." @@ -2099,7 +2095,7 @@ msgstr "" msgid "Hang Up" msgstr "Befejezés" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2111,14 +2107,6 @@ msgstr "" "Itt állíthatja be az eszköz alapvető tulajdonságait, mint például a gépnév " "vagy az időzóna." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" -"Nyilvános kulcs alapú SSH azonosításhoz itt adhat meg nyilvános SSH " -"kulcsokat (soronként egyet)." - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2131,7 +2119,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2152,9 +2140,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2209,7 +2197,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4 tűzfal" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2233,7 +2221,7 @@ msgstr "IPv4 átjáró" msgid "IPv4 netmask" msgstr "IPv4 hálózati maszk" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2278,11 +2266,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2304,7 +2292,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "IPv6 átjáró" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2460,7 +2448,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "Inaktivitási időtúllépés" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "Bejövő" @@ -2480,10 +2468,6 @@ msgstr "Indítási állomány" msgid "Initscripts" msgstr "Indítási állományok" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Telepítés" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2496,17 +2480,13 @@ msgstr "%q csomag telepítése" msgid "Install protocol extensions..." msgstr "Protokoll kiterjesztések telepítése..." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "Telepített csomagok" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Interfész" @@ -2586,7 +2566,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "JavaScript szükséges!" @@ -2611,7 +2591,7 @@ msgstr "Beállítások megtartása" msgid "Kernel Log" msgstr "Kernel napló" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Kernel verzió" @@ -2657,7 +2637,7 @@ msgstr "LCP echo hibaküszöb" msgid "LCP echo interval" msgstr "LCP Echo időtartam" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2674,7 +2654,7 @@ msgstr "Nyelv" msgid "Language and Style" msgstr "Nyelv és megjelenés" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2682,7 +2662,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2725,19 +2705,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2791,7 +2771,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Csak a megadott interfészen hallgat, vagy az összesen, amennyiben nem adja " @@ -2807,7 +2787,7 @@ msgstr "Szerver port a beérkező DNS kérések számára" msgid "Load" msgstr "Terhelés" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Átlagos terhelés" @@ -2817,6 +2797,10 @@ msgstr "Átlagos terhelés" msgid "Loading" msgstr "Betöltés" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2846,7 +2830,7 @@ msgstr "" msgid "Local Startup" msgstr "Helyi indítóscript" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Helyi idő" @@ -2907,11 +2891,11 @@ msgstr "Naplózás" msgid "Login" msgstr "Bejelentkezés" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Kijelentkezés" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2926,9 +2910,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-cím" @@ -2964,7 +2948,7 @@ msgstr "MB/s" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "MHz" @@ -2990,7 +2974,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -3025,16 +3009,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "DHCP címek maximális száma" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Memória" @@ -3077,11 +3061,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Mód" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3120,7 +3104,7 @@ msgstr "Csatolási bejegyzés" msgid "Mount Point" msgstr "Csatolási pont" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3146,7 +3130,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "Csatolási beállítások" @@ -3217,15 +3201,15 @@ msgstr "Az új hálózat neve" msgid "Navigation" msgstr "Navigáció" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Hálózati maszk" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3251,6 +3235,10 @@ msgstr "Interfészhez nem rendelt hálózat" msgid "Next »" msgstr "Következő »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "Ehhez az interfészhez nincs DHCP kiszolgáló beállítva" @@ -3263,9 +3251,9 @@ msgstr "" msgid "No files found" msgstr "Nem találhatók fájlok" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "Nincs elérhető információ" @@ -3285,18 +3273,18 @@ msgstr "Ehhez az eszközhöz nincs hálózat beállítva" msgid "No network name specified" msgstr "Nincs megadva hálózatnév" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "Csomaglisták nem állnak rendelkezésre" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "Nincs jelszó!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "Ez a lánc nem tartalmaz szabályokat" @@ -3309,23 +3297,23 @@ msgstr "" msgid "No zone assigned" msgstr "Nincs hozzárendelt zóna" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Zaj" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Zaj:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3351,8 +3339,8 @@ msgstr "Nem található" msgid "Not associated" msgstr "Nincs hozzárendelve" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "Nincs kapcsolódva" @@ -3376,14 +3364,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "OK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "OPKG-Beállítások" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3423,7 +3403,7 @@ msgstr "" msgid "On-State Delay" msgstr "Bekapcsolt állapot késleltetés" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "Legalább gépnevet vagy MAC-címet meg kell adni!" @@ -3523,7 +3503,7 @@ msgstr "" msgid "Options" msgstr "Lehetőségek" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "Egyéb:" @@ -3531,7 +3511,7 @@ msgstr "Egyéb:" msgid "Out" msgstr "Ki" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "Kimenő:" @@ -3668,7 +3648,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3676,15 +3656,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "A libiwinfo csomag szükséges!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "A csomag listák 24 óránál régebbiek" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Csomagnév" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Csomagok" @@ -3695,13 +3666,13 @@ msgstr "A %q zóna része" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Jelszó" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Jelszó hitelesítés" @@ -3713,14 +3684,14 @@ msgstr "A privát kulcsh jelszava" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "A jelszó megváltoztatása sikeres!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "CA tanúsítvány elérési útja" @@ -3745,17 +3716,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "Csúcs:" @@ -3787,7 +3758,7 @@ msgstr "Visszaállítás végrehajtása" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "Phy sebesség:" @@ -3815,16 +3786,11 @@ msgstr "csom." msgid "Please enter your username and password." msgstr "Adja meg a felhasználónevét és a jelszavát." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "Szabály" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3832,11 +3798,11 @@ msgstr "Port" msgid "Port status:" msgstr "Port állapot:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3848,7 +3814,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3869,7 +3835,7 @@ msgstr "" "A peer halottnak tekintése a megadott számú LCP echo hibák után. Használjon " "0-t a hibák figyelmen kívül hagyásához." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3891,7 +3857,7 @@ msgstr "Folytatás" msgid "Processes" msgstr "Folyamatok" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3901,9 +3867,9 @@ msgstr "Prot." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protokoll" @@ -3931,6 +3897,14 @@ msgstr "Ál Ad-hoc (ahdemo)" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3940,7 +3914,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "Minőség" @@ -3973,7 +3947,7 @@ msgstr "RTS/CTS küszöbérték" msgid "RX" msgstr "RX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "RX sebesség" @@ -4036,7 +4010,7 @@ msgstr "Biztos, hogy visszavonja az összes módosítást?" msgid "Really switch protocol?" msgstr "Biztos, hogy cserélni szeretné a protokollt?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "Valósidejű kapcsolatok" @@ -4044,15 +4018,15 @@ msgstr "Valósidejű kapcsolatok" msgid "Realtime Graphs" msgstr "Valósidejű grafikonok" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "Valósidejű terhelés" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "Valósidejű forgalom" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "Valósidejű vezetéknélküli adatok" @@ -4064,7 +4038,7 @@ msgstr "" msgid "Rebind protection" msgstr "Rebind elleni védelem" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Újraindítás" @@ -4126,7 +4100,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Eltávolítás" @@ -4191,7 +4164,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Visszaállítás" @@ -4234,6 +4206,8 @@ msgid "Restore backup" msgstr "Biztonsági mentés visszaállítása" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "Jelszó mutatása/elrejtése" @@ -4243,15 +4217,15 @@ msgstr "Jelszó mutatása/elrejtése" msgid "Revert" msgstr "Visszavonás" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4280,7 +4254,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "Router jelszó" @@ -4302,11 +4277,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "Fájlrendszer ellenőrzés futtatása az eszköz csatolása előtt" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "Fájlrendszer ellenőrzés futtatása" @@ -4314,11 +4289,12 @@ msgstr "Fájlrendszer ellenőrzés futtatása" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH hozzáférés" @@ -4334,7 +4310,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "SSH kulcsok" @@ -4343,7 +4320,7 @@ msgstr "SSH kulcsok" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4354,6 +4331,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Mentés" @@ -4370,6 +4348,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Felderítés" @@ -4378,7 +4360,7 @@ msgstr "Felderítés" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Ütemezett feladatok" @@ -4391,7 +4373,7 @@ msgstr "Szakasz hozzáadva" msgid "Section removed" msgstr "Szakasz eltávolítva" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "Részletekért lásd a 'mount' man oldalát" @@ -4436,6 +4418,14 @@ msgstr "Szolgáltatás típusa" msgid "Services" msgstr "Szolgáltatások" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4459,11 +4449,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "DHCP kiszolgáló beállítása" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4483,22 +4473,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "Interfész leállítása" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Jel" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "Jel:" @@ -4506,10 +4496,6 @@ msgstr "Jel:" msgid "Size" msgstr "Méret" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4537,12 +4523,7 @@ msgstr "Ugrás a navigációhoz" msgid "Slot time" msgstr "Időrés" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Szoftver" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4568,7 +4549,7 @@ msgstr "" "telepítését manuálisan kell elvégezni. Az eszközhöz tartozó telepítési " "utasításokért keresse fel az wiki-t." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4578,7 +4559,7 @@ msgstr "Forrás" msgid "Specifies the directory the device is attached to" msgstr "Megadja az eszköz csatlakozási könyvtárát." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "Megadja a <em>Dropbear</em> példány portját" @@ -4627,7 +4608,7 @@ msgstr "Indítás" msgid "Start priority" msgstr "Indítás prioritása" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4635,7 +4616,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "Rendszerindítás" @@ -4647,7 +4628,7 @@ msgstr "Statikus IPv4 útvonalak" msgid "Static IPv6 Routes" msgstr "Statikus IPv6 útvonalak" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Statikus bérletek" @@ -4655,11 +4636,11 @@ msgstr "Statikus bérletek" msgid "Static Routes" msgstr "Statikus útvonalak" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "Statikus cím" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4677,8 +4658,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Állapot" @@ -4703,7 +4683,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4733,7 +4713,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4751,7 +4731,7 @@ msgid "Synchronizing..." msgstr "Szinkronizálás..." #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4771,7 +4751,7 @@ msgstr "Rendszer tulajdonságok" msgid "System log buffer size" msgstr "Rendszer napló puffer méret" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4789,7 +4769,7 @@ msgstr "TFTP szerver gyökér könyvtár" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "TX sebesség" @@ -4873,7 +4853,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4921,6 +4901,16 @@ msgstr "A következő módosítások lettek visszavonva" msgid "The following rules are currently active on this system." msgstr "Jelenleg a következő szabályok aktívak a rendszeren." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "A megadott hálózati név már létezik" @@ -4977,13 +4967,13 @@ msgstr "A kiválasztott protokoll eszköz hozzárendelést igényel" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "A rendszer most törli a konfigurációs partíciót majd újraindul." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -4996,6 +4986,10 @@ msgstr "" "eléréséhez a beállításaitól függően szükséges lehet a számítógépe IP-címének " "megújítása." +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -5004,12 +4998,16 @@ msgstr "" "A feltöltött image fájl formátuma nem támogatott. Ügyeljen arra, hogy a " "platformjának megfelelő általános image formátumot válassza ki." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Megjelenés" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "Nincsenek aktív bérletek." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -5033,7 +5031,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5121,7 +5119,7 @@ msgstr "" "Ez a lista a rendszerben jelenleg futó folyamatokról és azok állapotáról ad " "áttekintést." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "" "Ez a lap a rendszerben jelenleg aktív hálózati kapcsolatokról ad áttekintést." @@ -5148,6 +5146,10 @@ msgstr "" msgid "Timezone" msgstr "Időzóna" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5159,12 +5161,12 @@ msgstr "" "visszaállításához kattintson a \"Visszaállítás végrehajtása\" gombra (csak " "squashfs image-ek esetén lehetséges)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Összes elérhető" @@ -5179,7 +5181,7 @@ msgstr "Traceroute" msgid "Traffic" msgstr "Forgalom" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Átvitel" @@ -5214,7 +5216,7 @@ msgstr "Trigger mód" msgid "Tunnel ID" msgstr "Tunnel azonosító" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "Tunnel interfész" @@ -5229,12 +5231,12 @@ msgid "Tx-Power" msgstr "Adóteljesítmény" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Típus" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5288,36 +5290,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "Ismeretlen" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "Ismeretlen hiba, a jelszó nem lett megváltoztatva!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "Nem kezelt" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "El nem mentett módosítások" @@ -5337,10 +5339,6 @@ msgstr "Nem támogatott protokoll típus." msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "Listák frissítése" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5361,7 +5359,7 @@ msgstr "Feltöltött fájl" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Működési idő" @@ -5477,7 +5475,7 @@ msgstr "Átjáró metrikájának használata" msgid "Use routing table" msgstr "Útválasztó tábla használata" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5518,11 +5516,11 @@ msgstr "" msgid "Username" msgstr "Felhasználónév" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5572,11 +5570,6 @@ msgstr "DHCP kérés során küldendő 'Vendor Class'" msgid "Verify" msgstr "Ellenőrzés" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Verzió" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5627,7 +5620,7 @@ msgstr "Várakozás a változtatások alkalmazására..." msgid "Waiting for command to complete..." msgstr "Várakozás a parancs befejezésére..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5660,16 +5653,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "Vezetéknélküli rész" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Vezetéknélküli adapter" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Vezetéknélküli hálózat" @@ -5684,13 +5677,13 @@ msgstr "Vezetéknélküli biztonság" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "Vezetéknélküli hálózat le van tiltva" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "Vezetéknélküli hálózat nincs kapcsolódva" @@ -5714,6 +5707,10 @@ msgstr "A kapott DNS kéréseket írja a rendszernaplóba" msgid "Write system log to file" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5729,7 +5726,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5763,9 +5760,9 @@ msgstr "" msgid "any" msgstr "bármelyik" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5782,7 +5779,7 @@ msgstr "automatikus" msgid "baseT" msgstr "baseT" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "áthidalt" @@ -5801,24 +5798,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "híd létrehozása a megadott interfész(ek) között" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "dB" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "dBm" @@ -5860,7 +5857,7 @@ msgstr "full-duplex" msgid "half-duplex" msgstr "half-duplex" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5882,44 +5879,44 @@ msgstr "ha a cél hálózat" msgid "input" msgstr "bemenet" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "kB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "kB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "kbit/s" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5945,19 +5942,10 @@ msgstr "nem" msgid "no link" msgstr "nincs link" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "nincs" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5969,7 +5957,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "ki" @@ -5977,11 +5965,11 @@ msgstr "ki" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "be" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5999,11 +5987,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -6017,7 +6005,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "irányított" @@ -6051,7 +6039,7 @@ msgstr "cimkézett" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -6078,159 +6066,159 @@ msgstr "nincs magadva -vagy- új:" msgid "untagged" msgstr "cimkézetlen" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6244,6 +6232,73 @@ msgstr "igen" msgid "« Back" msgstr "« Vissza" +#~ msgid "" +#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " +#~ "authentication." +#~ msgstr "" +#~ "Nyilvános kulcs alapú SSH azonosításhoz itt adhat meg nyilvános SSH " +#~ "kulcsokat (soronként egyet)." + +#~ msgid "Password successfully changed!" +#~ msgstr "A jelszó megváltoztatása sikeres!" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "Ismeretlen hiba, a jelszó nem lett megváltoztatva!" + +#~ msgid "Design" +#~ msgstr "Megjelenés" + +#~ msgid "Available packages" +#~ msgstr "Elérhető csomagok" + +#~ msgid "Displaying only packages containing" +#~ msgstr "Csak azon csomagok megjelenítése, amelyek tartalmazzák" + +#~ msgid "Download and install package" +#~ msgstr "Csomag letöltése és telepítése" + +#~ msgid "Filter" +#~ msgstr "Szűrő" + +#~ msgid "Find package" +#~ msgstr "Csomag keresése" + +#~ msgid "Free space" +#~ msgstr "Szabad hely" + +#~ msgid "Install" +#~ msgstr "Telepítés" + +#~ msgid "Installed packages" +#~ msgstr "Telepített csomagok" + +#~ msgid "No package lists available" +#~ msgstr "Csomaglisták nem állnak rendelkezésre" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "OPKG-Configuration" +#~ msgstr "OPKG-Beállítások" + +#~ msgid "Package lists are older than 24 hours" +#~ msgstr "A csomag listák 24 óránál régebbiek" + +#~ msgid "Package name" +#~ msgstr "Csomagnév" + +#~ msgid "Software" +#~ msgstr "Szoftver" + +#~ msgid "Update lists" +#~ msgstr "Listák frissítése" + +#~ msgid "Version" +#~ msgstr "Verzió" + +#~ msgid "none" +#~ msgstr "nincs" + #~ msgid "Disable DNS setup" #~ msgstr "DNS beállítás letiltása" diff --git a/modules/luci-base/po/it/base.po b/modules/luci-base/po/it/base.po index cb77d04bd7..a3409c7bab 100644 --- a/modules/luci-base/po/it/base.po +++ b/modules/luci-base/po/it/base.po @@ -13,10 +13,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 1.6.10\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -49,16 +53,16 @@ msgstr "(nessuna interfaccia collegata)" msgid "-- Additional Field --" msgstr "-- Campo aggiuntivo --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Per favore scegli --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- personalizzato --" @@ -82,11 +86,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Carico in 1 minuto:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "Carico in 15 minut:" @@ -98,7 +102,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "Carico in 5 minuti:" @@ -156,7 +160,7 @@ msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"Impostazione Identificatore Servizio Esteso\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Indirizzo <abbr title=\"Protocollo Internet Versione 4\">IPv4</abbr>" @@ -184,11 +188,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "Gateway <abbr title=\"Protocollo Internet Versione 6\">IPv6</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Configurazione <abbr title=\"Diodo ad Emissione di Luce\">LED</abbr>" @@ -197,12 +201,12 @@ msgstr "Configurazione <abbr title=\"Diodo ad Emissione di Luce\">LED</abbr>" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Diodo ad Emissione di Luce\">LED</abbr> Nome" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "Indirizzo <abbr title=\"Controllo Accesso Supporto\">MAC</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -234,19 +238,23 @@ msgstr "" "<br/>Nota: devi riavviare manualmente il servizio cron se il file crontab " "era vuoto prima delle modifiche." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -260,25 +268,25 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "riprova soglia ARP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "Ponti ATM" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "Identificatore Canale Virtuale ATM (VCI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "Identificatore Percorso Virtuale ATM (VPI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -288,12 +296,12 @@ msgstr "" "virtuali si possono interfacciare con le reti virtuali Linux in congiunzione " "con la comunicazione DHCP o PPP dell'ISP." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "Numero dispositivo ATM " -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -308,8 +316,6 @@ msgstr "Punto di Accesso" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Azioni" @@ -325,8 +331,8 @@ msgstr "" "Instradamento <abbr title=\"Protocollo Internet Versione 6\">IPv6</abbr> " "attivo" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Connessioni attive" @@ -353,6 +359,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Aggiungi" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" @@ -370,8 +383,8 @@ msgstr "File Hosts Aggiuntivo" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Indirizzo" @@ -387,7 +400,7 @@ msgstr "Amministrazione" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -395,7 +408,7 @@ msgstr "Amministrazione" msgid "Advanced Settings" msgstr "Opzioni Avanzate" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -403,7 +416,7 @@ msgstr "" msgid "Alert" msgstr "Allerta" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -426,7 +439,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "Permetti autenticazione <abbr title=\"Secure Shell\">SSH</abbr> tramite " @@ -454,16 +467,16 @@ msgstr "Consenti solo quelli nell'elenco" msgid "Allow localhost" msgstr "Permetti localhost" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" "Permetti agli host remoti di connettersi tramite ssh reindirizzando le porte" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "Permetti l'accesso a root con password" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "Abilita l'utente root con l'accesso via password" @@ -488,64 +501,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -591,15 +604,15 @@ msgstr "Configurazione dell'Antenna" msgid "Any zone" msgstr "Qualsiasi Zona" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -620,11 +633,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Dispositivi Wi-Fi connessi" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -655,8 +668,8 @@ msgstr "Autorizzazione richiesta" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Aggiornamento Automatico" @@ -699,29 +712,25 @@ msgstr "Automonta Swap" msgid "Available" msgstr "Disponibile" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Pacchetti disponibili" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Media:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -732,7 +741,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -762,7 +771,7 @@ msgstr "Ritorno ai risultati della scansione" msgid "Backup" msgstr "Copia di Sicurezza" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Copia di Sicurezza / Flash Firmware" @@ -793,12 +802,14 @@ msgstr "" "composta dai file di configurazione modificati installati da opkg, file di " "base essenziali e i file di backup definiti dall'utente." -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -807,7 +818,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Bitrate" @@ -815,7 +826,7 @@ msgstr "Bitrate" msgid "Bogus NX Domain Override" msgstr "Ignora Dominio Bogus NX" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Ponte" @@ -823,7 +834,7 @@ msgstr "Ponte" msgid "Bridge interfaces" msgstr "Interfacce Ponte" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "Numero Unità Ponte" @@ -839,16 +850,10 @@ msgstr "Dispositivo Wireless Broadcom 802.11%s" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Dispositivo Wireless Broadcom BCM%04x 802.11" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "Buffered" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -863,6 +868,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Annulla" @@ -885,6 +891,12 @@ msgstr "" msgid "Chain" msgstr "Catena" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -894,20 +906,24 @@ msgstr "Modifiche" msgid "Changes applied." msgstr "Modifiche applicate." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "Cambia la password di amministratore per accedere al dispositivo" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Canale" @@ -990,6 +1006,11 @@ msgstr "Cliente" msgid "Client ID to send when requesting DHCP" msgstr "ID Cliente da inviare all'interno della richiesta DHCP" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -1009,16 +1030,16 @@ msgstr "Scegliere dall'elenco..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1049,8 +1070,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Configurazione" @@ -1062,15 +1081,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Conferma" @@ -1079,8 +1098,8 @@ msgid "Connect" msgstr "Connetti" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Connesso" @@ -1096,7 +1115,7 @@ msgstr "" msgid "Connections" msgstr "Connessioni" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1153,16 +1172,6 @@ msgstr "Interfaccia personalizzata" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1187,7 +1196,7 @@ msgstr "Server DHCP" msgid "DHCP and DNS" msgstr "DHCP e DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "Cliente DHCP" @@ -1207,16 +1216,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1244,16 +1253,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1265,7 +1274,7 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1279,6 +1288,10 @@ msgstr "Debug" msgid "Default %d" msgstr "Predefinito %d" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1316,6 +1329,11 @@ msgstr "" msgid "Delete" msgstr "Elimina" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Rimuovi questa rete" @@ -1324,16 +1342,11 @@ msgstr "Rimuovi questa rete" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Descrizione" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Tema" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Destinazione" @@ -1341,8 +1354,8 @@ msgstr "Destinazione" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1359,7 +1372,7 @@ msgstr "Configurazione del dispositivo" msgid "Device is rebooting..." msgstr "Dispositivo in riavvio..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "Dispositivo irraggiungibile" @@ -1427,18 +1440,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "Ignora risposte RFC1918 upstream" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "Visualizza solo i pacchetti contenenti" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1448,10 +1464,6 @@ msgstr "Ottimizzazione distanza" msgid "Distance to farthest network member in meters." msgstr "Distanza del membro più lontano della rete in metri." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Diversità" @@ -1481,6 +1493,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Non proseguire con le ricerche inverse per le reti locali." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Dominio richiesto" @@ -1505,10 +1521,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Scarica e installa pacchetto" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "Download backup" @@ -1517,15 +1529,15 @@ msgstr "Download backup" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Instanza di Dropbear" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1698,8 +1710,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "Abilita il protocollo di Spanning Tree su questo bridge" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "Modalità di incapsulamento" @@ -1707,7 +1719,7 @@ msgstr "Modalità di incapsulamento" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Crittografia" @@ -1727,7 +1739,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "Cancellazione..." @@ -1736,19 +1748,19 @@ msgstr "Cancellazione..." msgid "Error" msgstr "Errore" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Scheda di Rete" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Switch di Rete" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1756,11 +1768,11 @@ msgstr "" msgid "Expand hosts" msgstr "Espandi gli hosts" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Scadenze" @@ -1811,7 +1823,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1829,10 +1841,6 @@ msgstr "Nome del file dell'immagine di avvio annunciato ai clienti." msgid "Filesystem" msgstr "Filesystem" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Filtro" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Filtra privati" @@ -1855,10 +1863,6 @@ msgstr "" msgid "Find and join network" msgstr "Trova e aggiungi una rete" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Cerca pacchetto" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Fine" @@ -1879,11 +1883,11 @@ msgstr "Impostazioni Firewall" msgid "Firewall Status" msgstr "Stato del Firewall" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Versione del Firmware" @@ -1907,7 +1911,7 @@ msgstr "Flash immagine nuovo firmware" msgid "Flash operations" msgstr "Operazioni Flash" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "Flashing..." @@ -1955,7 +1959,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Inoltra il traffico DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1967,7 +1971,7 @@ msgstr "Inoltra il traffico broadcast" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "Modalità di Inoltro" @@ -1980,15 +1984,11 @@ msgstr "Soglia di frammentazione" msgid "Frame Bursting" msgstr "Frame Bursting" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "Disponibile" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Spazio libero" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1997,7 +1997,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "GHz" @@ -2006,8 +2006,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Solo GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Gateway" @@ -2015,7 +2015,7 @@ msgstr "Gateway" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "Porte Gateway" @@ -2028,16 +2028,12 @@ msgstr "Opzioni Generali" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "Impostazioni Generali" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "Opzioni generali per opkg" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "Genera Configurazione" @@ -2054,7 +2050,7 @@ msgstr "Genera Archivio" msgid "Generic 802.11%s Wireless Controller" msgstr "Dispositivo Wireless 802.11%s Generico" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "" "La conferma della password assegnata non ha prodotto risultati, la password " @@ -2064,14 +2060,14 @@ msgstr "" msgid "Global Settings" msgstr "Impostazioni Globali" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "Opzioni rete globale" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "Vai alla configurazione della password..." @@ -2104,7 +2100,7 @@ msgstr "" msgid "Hang Up" msgstr "Hangup" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2116,14 +2112,6 @@ msgstr "" "Qui puoi configurare gli aspetti base del tuo dispositivo come l'" "hostname o il fuso orario." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" -"Qui è possibile incollare le chiavi pubbliche SSH (uno per riga) per " -"l'autenticazione con chiave pubblica SSH." - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2136,7 +2124,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2158,9 +2146,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2215,7 +2203,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4 Firewall" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2239,7 +2227,7 @@ msgstr "Gateway IPv4" msgid "IPv4 netmask" msgstr "Maschera rete IPv4" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2284,11 +2272,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "Impostazioni IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2310,7 +2298,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "Gateway IPv6" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2468,7 +2456,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "Tempo di Inattività" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "In entrata:" @@ -2488,10 +2476,6 @@ msgstr "Script di avvio" msgid "Initscripts" msgstr "Scripts di avvio" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Installa" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2504,17 +2488,13 @@ msgstr "Installa il pacchetto %q" msgid "Install protocol extensions..." msgstr "Installa le estensioni del protocollo..." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "Pacchetti installati" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Interfaccia" @@ -2591,7 +2571,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "Richiesto JavaScript!" @@ -2616,7 +2596,7 @@ msgstr "Mantieni le Impostazioni" msgid "Kernel Log" msgstr "Registro del Kernel" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Versione del Kernel" @@ -2662,7 +2642,7 @@ msgstr "Fallimento soglia echo LCP" msgid "LCP echo interval" msgstr "Intervallo echo LCP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2679,7 +2659,7 @@ msgstr "Lingua" msgid "Language and Style" msgstr "Lingua e Stile" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2687,7 +2667,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "Tempo Contratto" @@ -2730,19 +2710,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2796,7 +2776,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Ascolta solo l'interfaccia data o, se non specificato, su tutte" @@ -2810,7 +2790,7 @@ msgstr "Porta di ascolto per le richieste DNS in entrata" msgid "Load" msgstr "Carico" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Carico Medio" @@ -2820,6 +2800,10 @@ msgstr "Carico Medio" msgid "Loading" msgstr "Caricamento" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2849,7 +2833,7 @@ msgstr "" msgid "Local Startup" msgstr "Avvio Locale" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Ora locale" @@ -2908,11 +2892,11 @@ msgstr "Logging" msgid "Login" msgstr "Login" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Slogga" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2927,9 +2911,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "" @@ -2965,7 +2949,7 @@ msgstr "" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "" @@ -2991,7 +2975,7 @@ msgstr "" msgid "Manual" msgstr "Manuale" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -3026,16 +3010,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "Numero massimo indirizzi in contratto" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Memoria" @@ -3078,11 +3062,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Modalità" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "Modello" @@ -3121,7 +3105,7 @@ msgstr "Voce di Mount" msgid "Mount Point" msgstr "Punto di Mount" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3147,7 +3131,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "Opzioni di mount" @@ -3218,15 +3202,15 @@ msgstr "Nome della nuova rete" msgid "Navigation" msgstr "Navigazione" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Maschera di rete" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3252,6 +3236,10 @@ msgstr "Rete senza interfaccia" msgid "Next »" msgstr "Prossimo »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "Nessun Server DHCP configurato per questa interfaccia" @@ -3264,9 +3252,9 @@ msgstr "" msgid "No files found" msgstr "Nessun file trovato" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "Nessuna informazione disponibile" @@ -3286,18 +3274,18 @@ msgstr "Nessuna rete è configurata su questo dispositivo" msgid "No network name specified" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "Nessuna lista pacchetti disponibile" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "Nessuna password immessa!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "Nessuna regola in questa catena" @@ -3310,23 +3298,23 @@ msgstr "" msgid "No zone assigned" msgstr "Nessuna zona assegnata" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Rumore" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "Margine di Rumore (SNR)" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Rumore:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3352,8 +3340,8 @@ msgstr "Non Trovato" msgid "Not associated" msgstr "Non associato" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "Non connesso" @@ -3377,14 +3365,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "OK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "Configurazione di OPKG" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3424,7 +3404,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -3524,7 +3504,7 @@ msgstr "" msgid "Options" msgstr "Opzioni" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "Altro:" @@ -3532,7 +3512,7 @@ msgstr "Altro:" msgid "Out" msgstr "Uscita" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "In uscita:" @@ -3669,7 +3649,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3677,15 +3657,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "E' richiesto il pacchetto libiwinfo!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Nome pacchetto" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Pacchetti" @@ -3696,13 +3667,13 @@ msgstr "Parte della zona %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Password" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Password di authenticazione" @@ -3714,14 +3685,14 @@ msgstr "Password della chiave privata" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "Password cambiata con successo!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Percorso al certificato CA" @@ -3746,17 +3717,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "Picco:" @@ -3788,7 +3759,7 @@ msgstr "" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "" @@ -3816,16 +3787,11 @@ msgstr "" msgid "Please enter your username and password." msgstr "Per favore inserisci il tuo username e la password." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Porta" @@ -3833,11 +3799,11 @@ msgstr "Porta" msgid "Port status:" msgstr "Status porta:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3849,7 +3815,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3868,7 +3834,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3890,7 +3856,7 @@ msgstr "Continuare" msgid "Processes" msgstr "Processi" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "Profilo" @@ -3900,9 +3866,9 @@ msgstr "Prot." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protocollo" @@ -3930,6 +3896,14 @@ msgstr "Pseudo Ad-Hoc (ahdemo)" msgid "Public Key" msgstr "Chiave Pubblica" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3939,7 +3913,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "Qualità" @@ -3972,7 +3946,7 @@ msgstr "Soglia RTS/CTS" msgid "RX" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "Velocità RX" @@ -4035,7 +4009,7 @@ msgstr "Azzerare veramente tutte le modifiche?" msgid "Really switch protocol?" msgstr "Cambiare veramente il protocollo?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "Connessioni in Tempo Reale" @@ -4043,15 +4017,15 @@ msgstr "Connessioni in Tempo Reale" msgid "Realtime Graphs" msgstr "Grafici in Tempo Reale" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "Carico in Tempo Reale" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "Traffico in Tempo Reale" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "Wireless in Tempo Reale" @@ -4063,7 +4037,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Riavvia" @@ -4125,7 +4099,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Rimuovi" @@ -4189,7 +4162,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Reset" @@ -4232,6 +4204,8 @@ msgid "Restore backup" msgstr "Ripristina backup" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "Rivela/nascondi password" @@ -4241,15 +4215,15 @@ msgstr "Rivela/nascondi password" msgid "Revert" msgstr "Ripristina" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4278,7 +4252,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "" @@ -4300,11 +4275,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "Esegui un controllo del filesystem prima di montare il dispositivo" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "Esegui controllo del filesystem" @@ -4312,11 +4287,12 @@ msgstr "Esegui controllo del filesystem" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "" @@ -4332,7 +4308,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "" @@ -4341,7 +4318,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "" @@ -4352,6 +4329,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Salva" @@ -4368,6 +4346,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Scan" @@ -4376,7 +4358,7 @@ msgstr "Scan" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Operazioni programmate" @@ -4389,7 +4371,7 @@ msgstr "Sezione aggiunta" msgid "Section removed" msgstr "Sezione rimossa" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "Vedi \"mount\" manpage per dettagli" @@ -4432,6 +4414,14 @@ msgstr "" msgid "Services" msgstr "Servizi" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4454,11 +4444,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4478,22 +4468,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Segnale" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "" @@ -4501,10 +4491,6 @@ msgstr "" msgid "Size" msgstr "Dimensione" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4532,12 +4518,7 @@ msgstr "Salta a navigazione" msgid "Slot time" msgstr "Slot time" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Software" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4564,7 +4545,7 @@ msgstr "" "riferimento al wiki per le istruzioni di installazione di dispositivi " "specifici." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4574,7 +4555,7 @@ msgstr "Origine" msgid "Specifies the directory the device is attached to" msgstr "Specifica la cartella a cui è collegato il dispositivo in" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "Specifica la porta di ascolto di questa istanza <em>Dropbear</em>" @@ -4624,7 +4605,7 @@ msgstr "Inizio" msgid "Start priority" msgstr "Priorità di avvio" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4632,7 +4613,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "Avvio" @@ -4644,7 +4625,7 @@ msgstr "Instradamento statico IPv4" msgid "Static IPv6 Routes" msgstr "Instradamento statico IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Contratti statici" @@ -4652,11 +4633,11 @@ msgstr "Contratti statici" msgid "Static Routes" msgstr "Instradamenti Statici" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "Indirizzo Statico" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4674,8 +4655,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Stato" @@ -4700,7 +4680,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4730,7 +4710,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4748,7 +4728,7 @@ msgid "Synchronizing..." msgstr "Sincronizzazione..." #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4768,7 +4748,7 @@ msgstr "Proprietà di Sistema" msgid "System log buffer size" msgstr "Dimensione Buffer Log di Sistema" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4786,7 +4766,7 @@ msgstr "Server TFTP principale" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "Velocità TX" @@ -4870,7 +4850,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4913,6 +4893,16 @@ msgstr "Le seguenti modifiche sono state annullate" msgid "The following rules are currently active on this system." msgstr "Le seguenti regole sono al momento attive su questo sistema." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "" @@ -4958,13 +4948,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -4977,6 +4967,10 @@ msgstr "" "address of your computer to reach the device again, depending on your " "settings." +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -4985,12 +4979,16 @@ msgstr "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Tema" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "Non ci sono contratti attivi." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -5012,7 +5010,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5090,7 +5088,7 @@ msgstr "" "Questa lista da un riassunto dei processi correntemente attivi e del loro " "stato." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "Questa pagina ti da una riassunto delle connessioni al momento attive." @@ -5116,6 +5114,10 @@ msgstr "" msgid "Timezone" msgstr "Fuso orario" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5126,12 +5128,12 @@ msgstr "" "generato precedentemente qui. Per ripristinare il firmware al suo stato " "iniziale premi \"Esegui Ripristino\" (solo per firmware basati su squashfs)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Totale" @@ -5146,7 +5148,7 @@ msgstr "" msgid "Traffic" msgstr "Traffico" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "" @@ -5181,7 +5183,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "" @@ -5196,12 +5198,12 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Tipo" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "" @@ -5255,36 +5257,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "Sconosciuto" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "Errore sconosciuto, password non cambiata!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "Non gestito" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "Smonta" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Modifiche non salvate" @@ -5304,10 +5306,6 @@ msgstr "Tipo protocollo non supportato." msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "Aggiorna liste" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5328,7 +5326,7 @@ msgstr "File Inviato" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Tempo di attività" @@ -5444,7 +5442,7 @@ msgstr "Usa la metrica del gateway" msgid "Use routing table" msgstr "Utilizzare tabella di instradamento" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5487,11 +5485,11 @@ msgstr "" msgid "Username" msgstr "Nome Utente" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5541,11 +5539,6 @@ msgstr "Classe del Produttore da 'inviare al momento della richiesta DHCP" msgid "Verify" msgstr "Verifica" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Versione" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5596,7 +5589,7 @@ msgstr "In attesa delle modifiche da applicare ..." msgid "Waiting for command to complete..." msgstr "In attesa del comando da completare..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5629,16 +5622,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "Wireless" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Dispositivo Wireless" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Rete Wireless" @@ -5653,13 +5646,13 @@ msgstr "Sicurezza Wireless" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "La rete Wireless è disattivata" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "La rete Wireless è non associata" @@ -5683,6 +5676,10 @@ msgstr "Scrittura delle richiesta DNS ricevute nel syslog" msgid "Write system log to file" msgstr "Scrivi registro di sistema su file" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5699,7 +5696,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5733,9 +5730,9 @@ msgstr "" msgid "any" msgstr "qualsiasi" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5752,7 +5749,7 @@ msgstr "auto" msgid "baseT" msgstr "baseT" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "ponte" @@ -5771,24 +5768,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "Crea un ponte sulle interfacce selezionate" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "dB" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "dBm" @@ -5830,7 +5827,7 @@ msgstr "full-duplex" msgid "half-duplex" msgstr "half-duplex" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5852,44 +5849,44 @@ msgstr "se la destinazione è una rete" msgid "input" msgstr "ingresso" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "kB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "kB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "kbit/s" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5915,19 +5912,10 @@ msgstr "no" msgid "no link" msgstr "Nessun collegamento" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "nessuna" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5939,7 +5927,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "spento" @@ -5947,11 +5935,11 @@ msgstr "spento" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "acceso" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5969,11 +5957,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5987,7 +5975,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "instradato" @@ -6021,7 +6009,7 @@ msgstr "etichettato" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -6048,159 +6036,159 @@ msgstr "non specificato - o - creato:" msgid "untagged" msgstr "non etichettato" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6214,6 +6202,73 @@ msgstr "Sì" msgid "« Back" msgstr "« Indietro" +#~ msgid "" +#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " +#~ "authentication." +#~ msgstr "" +#~ "Qui è possibile incollare le chiavi pubbliche SSH (uno per riga) per " +#~ "l'autenticazione con chiave pubblica SSH." + +#~ msgid "Password successfully changed!" +#~ msgstr "Password cambiata con successo!" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "Errore sconosciuto, password non cambiata!" + +#~ msgid "Design" +#~ msgstr "Tema" + +#~ msgid "Available packages" +#~ msgstr "Pacchetti disponibili" + +#~ msgid "Displaying only packages containing" +#~ msgstr "Visualizza solo i pacchetti contenenti" + +#~ msgid "Download and install package" +#~ msgstr "Scarica e installa pacchetto" + +#~ msgid "Filter" +#~ msgstr "Filtro" + +#~ msgid "Find package" +#~ msgstr "Cerca pacchetto" + +#~ msgid "Free space" +#~ msgstr "Spazio libero" + +#~ msgid "General options for opkg" +#~ msgstr "Opzioni generali per opkg" + +#~ msgid "Install" +#~ msgstr "Installa" + +#~ msgid "Installed packages" +#~ msgstr "Pacchetti installati" + +#~ msgid "No package lists available" +#~ msgstr "Nessuna lista pacchetti disponibile" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "OPKG-Configuration" +#~ msgstr "Configurazione di OPKG" + +#~ msgid "Package name" +#~ msgstr "Nome pacchetto" + +#~ msgid "Software" +#~ msgstr "Software" + +#~ msgid "Update lists" +#~ msgstr "Aggiorna liste" + +#~ msgid "Version" +#~ msgstr "Versione" + +#~ msgid "none" +#~ msgstr "nessuna" + #~ msgid "Disable DNS setup" #~ msgstr "Disabilita il setup dei DNS" diff --git a/modules/luci-base/po/ja/base.po b/modules/luci-base/po/ja/base.po index 7834c5a7f3..756fb99861 100644 --- a/modules/luci-base/po/ja/base.po +++ b/modules/luci-base/po/ja/base.po @@ -3,20 +3,24 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2018-11-11 15:46+0900\n" +"PO-Revision-Date: 2018-11-22 16:24+0900\n" "Last-Translator: INAGAKI Hiroshi <musashino.open@gmail.com>\n" +"Language-Team: \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 2.2\n" -"Language-Team: \n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "%.1f dB" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "%d ビット" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "%s は複数のVLANにUntaggedしています!" @@ -49,16 +53,16 @@ msgstr "(インターフェースが接続されていません)" msgid "-- Additional Field --" msgstr "-- 追加項目 --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- 選択してください --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- 手動設定 --" @@ -82,11 +86,11 @@ msgstr "-- UUID を指定 --" msgid "-- please select --" msgstr "-- 選択してください --" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "過去1分の負荷:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "過去15分の負荷:" @@ -98,7 +102,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "464XLAT (CLAT)" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "過去5分の負荷:" @@ -154,7 +158,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-アドレス" @@ -181,12 +185,12 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-ゲートウェイ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-サフィックス (16進数)" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 設定" @@ -195,12 +199,12 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 設定" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 名" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-アドレス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" @@ -232,19 +236,23 @@ msgstr "" "<br />注意: 編集前の crontab ファイルが空の場合、手動で cron サービスの再起動" "を行う必要があります。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "認証セッションの期限切れのため、再ログインが必要です。" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "A43C + J43 + A43" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "A43C + J43 + A43 + V43" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "ADSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "ANSI T1.413" @@ -258,37 +266,37 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "ARP再試行しきい値" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "ATMブリッジ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "ATM仮想チャネル識別子 (VCI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "ATM仮想パス識別子 (VPI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " "to dial into the provider network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "ATMデバイス番号" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -303,8 +311,6 @@ msgstr "アクセスポイント" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "動作" @@ -318,8 +324,8 @@ msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "" "稼働中の <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-経路情報" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "アクティブ コネクション" @@ -346,6 +352,13 @@ msgstr "アドホック" msgid "Add" msgstr "追加" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "公開鍵を追加" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" @@ -364,8 +377,8 @@ msgstr "追加のホストファイル" msgid "Additional servers file" msgstr "追加のサーバー ファイル" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "アドレス" @@ -381,7 +394,7 @@ msgstr "管理画面" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -389,7 +402,7 @@ msgstr "管理画面" msgid "Advanced Settings" msgstr "詳細設定" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -397,7 +410,7 @@ msgstr "" msgid "Alert" msgstr "警告" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "エイリアス インターフェース" @@ -420,7 +433,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "<abbr title=\"Secure Shell\">SSH</abbr> パスワード認証を許可します。" @@ -446,16 +459,16 @@ msgstr "リスト内の端末からのアクセスを許可" msgid "Allow localhost" msgstr "ローカルホストを許可する" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" "リモートホストがSSH転送されたローカルのポートに接続することを許可します。" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "パスワードでの root ログインを許可" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "パスワードを使用した <em>root</em> 権限でのログインを許可します。" @@ -480,64 +493,64 @@ msgstr "" "セカンダリ チャンネルの重複にかかわらず、常に 40MHz チャンネルを使用します。" "このオプションの使用は、 IEEE 802.11n-2009 に準拠しません!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -585,15 +598,15 @@ msgstr "アンテナ設定" msgid "Any zone" msgstr "全てのゾーン" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "チェックなしの適用" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "適用リクエストはステータス <code>%h</code> により失敗しました" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "アーキテクチャ" @@ -614,11 +627,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "アソシエーション済み端末" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "アソシエーション数" @@ -649,8 +662,8 @@ msgstr "ログイン認証" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "自動更新" @@ -693,29 +706,25 @@ msgstr "スワップ 自動マウント" msgid "Available" msgstr "使用可" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "インストール可能なパッケージ" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "平均値:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -726,7 +735,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -756,7 +765,7 @@ msgstr "スキャン結果へ戻る" msgid "Backup" msgstr "バックアップ" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "バックアップ / ファームウェア更新" @@ -787,14 +796,17 @@ msgstr "" "よって認識されている設定ファイル、重要なベースファイル、ユーザーが設定したパ" "ターンに一致したファイルの一覧です。" -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -"ワイルドカード アドレスではなく、特定のインターフェースのみにバインドします。" +"ワイルドカード アドレスよりもインターフェースへ動的にバインド(Linux のデフォ" +"ルトとして推奨されます)" + +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" +msgstr "インターフェースのバインド" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind the tunnel to this interface (optional)." @@ -802,7 +814,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "ビットレート" @@ -810,7 +822,7 @@ msgstr "ビットレート" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "ブリッジ" @@ -818,7 +830,7 @@ msgstr "ブリッジ" msgid "Bridge interfaces" msgstr "ブリッジ インターフェース" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "ブリッジ ユニット番号" @@ -834,18 +846,10 @@ msgstr "Broadcom 802.11%s 無線LANコントローラ" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Broadcom BCM%04x 802.11 無線LANコントローラ" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "バッファ" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" -"ビルド / ディストリビューション固有のフィード定義です。このファイルは" -"sysupgradeの際に引き継がれません。" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "CA証明書(空白の場合、初回の接続後に保存されます。)" @@ -860,6 +864,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "キャンセル" @@ -882,6 +887,12 @@ msgstr "注意: システムは強制的にアップグレードされます" msgid "Chain" msgstr "チェイン" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "ログイン パスワードの変更" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -891,20 +902,24 @@ msgstr "変更" msgid "Changes applied." msgstr "変更が適用されました。" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "変更は取り消されました。" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "デバイスの管理者パスワードを変更します" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "パスワードを変更中…" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "チャネル" @@ -992,6 +1007,11 @@ msgstr "クライアント" msgid "Client ID to send when requesting DHCP" msgstr "DHCPリクエスト時に送信するクライアントID" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "閉じる" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -1011,16 +1031,16 @@ msgstr "リストを閉じる" #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1055,8 +1075,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "設定" @@ -1068,15 +1086,15 @@ msgstr "設定が失敗しました" msgid "Configuration files will be kept" msgstr "設定ファイルは保持されます" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "設定が適用されました。" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "設定はロールバックされました!" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "確認" @@ -1085,8 +1103,8 @@ msgid "Connect" msgstr "接続" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "接続中" @@ -1102,7 +1120,7 @@ msgstr "接続の試行が失敗しました" msgid "Connections" msgstr "ネットワーク接続" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1162,18 +1180,6 @@ msgstr "新しいインターフェース" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" -"プライベート フィードなどのカスタム フィード定義です。このファイルは" -"sysupgrade時に引き継ぐことができます。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "カスタム フィード" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1200,7 +1206,7 @@ msgstr "DHCPサーバー" msgid "DHCP and DNS" msgstr "DHCP 及び DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "DHCP クライアント" @@ -1220,16 +1226,16 @@ msgstr "DHCPv6-モード" msgid "DHCPv6-Service" msgstr "DHCPv6-サービス" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1257,16 +1263,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "DS-Lite AFTR アドレス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "DSL ステータス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1278,7 +1284,7 @@ msgstr "DTIM インターバル" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1292,6 +1298,10 @@ msgstr "デバッグ" msgid "Default %d" msgstr "標準設定 %d" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "デフォルト ルート" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1328,6 +1338,11 @@ msgstr "" msgid "Delete" msgstr "削除" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "公開鍵を削除" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "ネットワークを削除します" @@ -1336,16 +1351,11 @@ msgstr "ネットワークを削除します" msgid "Delivery Traffic Indication Message Interval" msgstr "Delivery Traffic Indication Message インターバル" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "詳細" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "デザイン" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "宛先" @@ -1353,8 +1363,8 @@ msgstr "宛先" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1371,7 +1381,7 @@ msgstr "デバイス設定" msgid "Device is rebooting..." msgstr "デバイスを再起動中です..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "デバイスに到達できません" @@ -1439,18 +1449,21 @@ msgstr "低 Acknowledgement 時のアソシエーション解除" msgid "Discard upstream RFC1918 responses" msgstr "RFC1918の応答を破棄します" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "切断" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "切断の試行が失敗しました" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "警告の除去" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "右記の文字列を含んだパッケージのみを表示中" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1460,10 +1473,6 @@ msgstr "距離の最適化" msgid "Distance to farthest network member in meters." msgstr "最も遠い端末との距離(メートル)を設定してください。" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "ディストリビューション フィード" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "ダイバシティ" @@ -1493,6 +1502,10 @@ msgstr "パブリック DNSサーバーが返答できなかったリクエス� msgid "Do not forward reverse lookups for local networks" msgstr "ローカル ネットワークへの逆引きを転送しません" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "本当に以下の SSH 公開鍵を削除しますか?" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "ドメイン必須" @@ -1517,10 +1530,6 @@ msgstr "" msgid "Down" msgstr "下へ" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "パッケージのダウンロードとインストール" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "バックアップ アーカイブのダウンロード" @@ -1529,15 +1538,15 @@ msgstr "バックアップ アーカイブのダウンロード" msgid "Download mtdblock" msgstr "mtdblock のダウンロード" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Dropbear設定" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1716,8 +1725,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "スパニングツリー プロトコルを有効にする" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "カプセル化モード" @@ -1725,7 +1734,7 @@ msgstr "カプセル化モード" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "暗号化モード" @@ -1745,7 +1754,7 @@ msgstr "カスタム値を入力" msgid "Enter custom values" msgstr "カスタム値を入力" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "消去中..." @@ -1754,19 +1763,19 @@ msgstr "消去中..." msgid "Error" msgstr "エラー" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "イーサネットアダプタ" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "イーサネットスイッチ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "除外インターフェース" @@ -1774,11 +1783,11 @@ msgstr "除外インターフェース" msgid "Expand hosts" msgstr "拡張ホスト設定" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "期待される値: %s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "期限切れ" @@ -1829,7 +1838,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "%d 秒以内の適用を確認できませんでした。ロールバック中です..." @@ -1847,10 +1856,6 @@ msgstr "クライアントに通知するブートイメージのファイル名 msgid "Filesystem" msgstr "ファイルシステム" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "フィルタ" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "プライベートフィルター" @@ -1875,10 +1880,6 @@ msgstr "" msgid "Find and join network" msgstr "ネットワークの検索と参加" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "パッケージを検索" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "終了" @@ -1899,11 +1900,11 @@ msgstr "ファイアウォール設定" msgid "Firewall Status" msgstr "ファイアウォール ステータス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "ファームウェア ファイル" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "ファームウェア バージョン" @@ -1927,7 +1928,7 @@ msgstr "ファームウェアの更新" msgid "Flash operations" msgstr "更新機能" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "更新中..." @@ -1976,7 +1977,7 @@ msgstr "フォーム トークンの不一致" msgid "Forward DHCP traffic" msgstr "DHCPトラフィックを転送する" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1988,7 +1989,7 @@ msgstr "ブロードキャスト トラフィックを転送する" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "転送モード" @@ -2001,15 +2002,11 @@ msgstr "フラグメンテーションしきい値" msgid "Frame Bursting" msgstr "フレームバースト" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "空き" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "ディスクの空き容量" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -2020,7 +2017,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "GHz" @@ -2029,8 +2026,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "GPRSのみ" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "ゲートウェイ" @@ -2038,7 +2035,7 @@ msgstr "ゲートウェイ" msgid "Gateway address is invalid" msgstr "無効なゲートウェイ アドレスです" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "ゲートウェイ ポート" @@ -2051,16 +2048,12 @@ msgstr "一般設定" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "一般設定" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "opkgの一般設定" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "コンフィグ生成" @@ -2077,7 +2070,7 @@ msgstr "バックアップ アーカイブを生成" msgid "Generic 802.11%s Wireless Controller" msgstr "802.11%s 無線LANコントローラ" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "入力されたパスワードが一致しません。パスワードは変更されませんでした!" @@ -2085,14 +2078,14 @@ msgstr "入力されたパスワードが一致しません。パスワードは msgid "Global Settings" msgstr "全体設定" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "グローバル ネットワークオプション" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "パスワード設定へ移動..." @@ -2125,7 +2118,7 @@ msgstr "HT モード (802.11n)" msgid "Hang Up" msgstr "再起動" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2136,12 +2129,6 @@ msgid "" msgstr "" "このページではホスト名やタイムゾーンなどの基本的な設定を行うことが出来ます。" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "SSH公開鍵認証で使用するSSH公開鍵を1行づつペーストしてください。" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2154,7 +2141,7 @@ msgid "Hide empty chains" msgstr "空のチェインを非表示" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "ホスト" @@ -2176,9 +2163,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2233,7 +2220,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4 ファイアウォール" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "IPv4 アップストリーム" @@ -2257,9 +2244,9 @@ msgstr "IPv4 ゲートウェイ" msgid "IPv4 netmask" msgstr "IPv4 ネットマスク" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" -msgstr "" +msgstr "IPv4 ネットワーク(アドレス/ネットマスク 表記)" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 msgid "IPv4 prefix" @@ -2302,11 +2289,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "IPv6 設定" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "IPv6 ULA-プレフィクス" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "IPv6 アップストリーム" @@ -2328,7 +2315,7 @@ msgstr "IPv6 割り当て長" msgid "IPv6 gateway" msgstr "IPv6 ゲートウェイ" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "IPv6 ネットワーク(アドレス/ネットマスク 表記)" @@ -2485,7 +2472,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "未使用時タイムアウト" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "受信:" @@ -2505,10 +2492,6 @@ msgstr "起動スクリプト" msgid "Initscripts" msgstr "起動スクリプト" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "インストール" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2523,17 +2506,13 @@ msgstr "%q パッケージをインストールします" msgid "Install protocol extensions..." msgstr "プロトコル拡張機能をインストールします..." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "インストール済みパッケージ" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "インターフェース" @@ -2610,7 +2589,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "JavaScriptを有効にしてください!" @@ -2635,7 +2614,7 @@ msgstr "設定を保持する" msgid "Kernel Log" msgstr "カーネル ログ" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "カーネル バージョン" @@ -2681,7 +2660,7 @@ msgstr "LCP echo 失敗数しきい値" msgid "LCP echo interval" msgstr "LCP echo 送信間隔" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2698,7 +2677,7 @@ msgstr "言語" msgid "Language and Style" msgstr "言語とスタイル" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "レイテンシー" @@ -2706,7 +2685,7 @@ msgstr "レイテンシー" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "リース時間" @@ -2751,19 +2730,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "待ち受けをこれらのインターフェースとループバックに制限します。" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2817,7 +2796,7 @@ msgstr "待ち受けインターフェース" msgid "Listen Port" msgstr "待ち受けポート" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "指定されたインターフェースでのみ待ち受けを行います。設定しない場合はすべての" @@ -2833,7 +2812,7 @@ msgstr "DNSクエリを受信するポート" msgid "Load" msgstr "負荷" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "システム平均負荷" @@ -2843,6 +2822,10 @@ msgstr "システム平均負荷" msgid "Loading" msgstr "ロード中" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "SSH 鍵をロード中…" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "無効なローカル IP アドレスです" @@ -2872,7 +2855,7 @@ msgstr "ローカルサービスのみ" msgid "Local Startup" msgstr "ローカル スタートアップ" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "時刻" @@ -2931,11 +2914,11 @@ msgstr "ログ" msgid "Login" msgstr "ログイン" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "ログアウト" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2951,9 +2934,9 @@ msgid "MAC" msgstr "MAC" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-アドレス" @@ -2989,7 +2972,7 @@ msgstr "MB/s" msgid "MD5" msgstr "MD5" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "MHz" @@ -3016,7 +2999,7 @@ msgstr "" msgid "Manual" msgstr "手動" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -3053,16 +3036,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "リースされるアドレスの最大数です。" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "メモリー" @@ -3105,11 +3088,11 @@ msgstr "モビリティ ドメイン" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "モード" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "モデル" @@ -3148,7 +3131,7 @@ msgstr "マウント機能" msgid "Mount Point" msgstr "マウントポイント" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3174,7 +3157,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "明確に設定されていないファイルシステムをマウントします。" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "マウントオプション" @@ -3245,15 +3228,15 @@ msgstr "新しいネットワークの名前" msgid "Navigation" msgstr "ナビゲーション" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "ネットマスク" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3279,6 +3262,10 @@ msgstr "インターフェースの無いネットワークです。" msgid "Next »" msgstr "次 »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "いいえ" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "このインターフェースにはDHCPサーバーが設定されていません" @@ -3291,9 +3278,9 @@ msgstr "NAT-Tを使用しない" msgid "No files found" msgstr "ファイルが見つかりませんでした" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "情報がありません" @@ -3313,18 +3300,18 @@ msgstr "このデバイスに設定されているネットワークがありま msgid "No network name specified" msgstr "ネットワーク名が設定されていません" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "パッケージ リストがありません" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "パスワードが設定されていません!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "まだ公開鍵はありません。" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "チェイン内にルールがありません" @@ -3337,23 +3324,23 @@ msgstr "利用可能なスキャン結果はまだありません..." msgid "No zone assigned" msgstr "ゾーンが設定されていません" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "ノイズ" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "ノイズ:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3379,8 +3366,8 @@ msgstr "見つかりません" msgid "Not associated" msgstr "アソシエーションされていません" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "未接続" @@ -3406,14 +3393,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "OK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "OPKG-設定" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3454,7 +3433,7 @@ msgstr "" msgid "On-State Delay" msgstr "点灯時間" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "1つ以上のホスト名またはMACアドレスを設定してください!" @@ -3558,7 +3537,7 @@ msgstr "発信パケットと受信パケットに使用されるUDPポート( msgid "Options" msgstr "オプション" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "その他:" @@ -3566,7 +3545,7 @@ msgstr "その他:" msgid "Out" msgstr "アウト" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "送信:" @@ -3703,7 +3682,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3711,15 +3690,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "libiwinfo パッケージが必要です!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "パッケージ リストは24時間以上前のものです" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "パッケージ名" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "パケット" @@ -3730,13 +3700,13 @@ msgstr "ゾーン %q の一部" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "パスワード" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "パスワード認証" @@ -3748,14 +3718,14 @@ msgstr "秘密鍵のパスワード" msgid "Password of inner Private Key" msgstr "秘密鍵のパスワード" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "パスワードを変更しました!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "パスワード2" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "貼付けまたは SSH 鍵ファイルをドラッグ…" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "CA証明書のパス" @@ -3780,17 +3750,17 @@ msgstr "クライアント証明書のパス" msgid "Path to inner Private Key" msgstr "秘密鍵のパス" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "ピーク:" @@ -3822,7 +3792,7 @@ msgstr "設定リセットを実行" msgid "Persistent Keep Alive" msgstr "永続的なキープアライブ" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "物理レート:" @@ -3850,16 +3820,11 @@ msgstr "パケット" msgid "Please enter your username and password." msgstr "ユーザー名とパスワードを入力してください。" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "最初にパッケージ リストを更新してください" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "ポリシー" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "ポート" @@ -3867,11 +3832,11 @@ msgstr "ポート" msgid "Port status:" msgstr "ポート ステータス:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3883,7 +3848,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "委任されたプレフィクス (PD)" @@ -3904,7 +3869,7 @@ msgstr "" "設定回数のLCP echo 確認失敗後、ピアノードがダウンしているものと見なします。0" "を設定した場合、失敗しても無視します" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "これらのインターフェースでの待ち受けを停止します。" @@ -3926,7 +3891,7 @@ msgstr "続行" msgid "Processes" msgstr "プロセス" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "プロファイル" @@ -3936,9 +3901,9 @@ msgstr "プロトコル" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "プロトコル" @@ -3966,6 +3931,18 @@ msgstr "擬似アドホック (ahdemo)" msgid "Public Key" msgstr "公開鍵" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" +"公開鍵は、プレーン パスワードの使用と比べ、高セキュリティなパスワード無しで" +"の SSH ログインを可能とします。新しい鍵をデバイスにアップロードするために、入" +"力欄に OpenSSH 互換の公開鍵(1行)を貼り付けるか、 <code>.pub</code> ファイル" +"をドラッグしてください。" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3975,7 +3952,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "クオリティ" @@ -4010,7 +3987,7 @@ msgstr "RTS/CTSしきい値" msgid "RX" msgstr "RX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "受信レート" @@ -4077,7 +4054,7 @@ msgstr "本当に全ての変更をリセットしますか?" msgid "Really switch protocol?" msgstr "本当にプロトコルを切り替えますか?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "リアルタイム・コネクション" @@ -4085,15 +4062,15 @@ msgstr "リアルタイム・コネクション" msgid "Realtime Graphs" msgstr "リアルタイム グラフ" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "リアルタイム・ロード" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "リアルタイム・トラフィック" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "リアルタイム・無線LAN" @@ -4105,7 +4082,7 @@ msgstr "" msgid "Rebind protection" msgstr "DNSリバインディング・プロテクション" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "再起動" @@ -4167,7 +4144,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "リモート IPv4アドレス または FQDN" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "削除" @@ -4233,7 +4209,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "リセット" @@ -4276,6 +4251,8 @@ msgid "Restore backup" msgstr "バックアップから復元する" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "パスワードを表示する/隠す" @@ -4285,15 +4262,15 @@ msgstr "パスワードを表示する/隠す" msgid "Revert" msgstr "元に戻す" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "変更の取り消し" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "取り消しのリクエストはステータス <code>%h</code> により失敗しました" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "設定を元に戻しています..." @@ -4322,7 +4299,8 @@ msgstr "ルート タイプ" msgid "Router Advertisement-Service" msgstr "ルーター アドバタイズメント-サービス" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "ルーター パスワード" @@ -4344,11 +4322,11 @@ msgstr "" msgid "Rule" msgstr "ルール" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "デバイスのマウントを行う前にファイルシステムチェックを行う" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "ファイルシステムチェックを行う" @@ -4356,13 +4334,14 @@ msgstr "ファイルシステムチェックを行う" msgid "SHA256" msgstr "SHA256" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "SNR" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" -msgstr "SSHアクセス" +msgstr "SSH アクセス" #: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 msgid "SSH server address" @@ -4376,16 +4355,17 @@ msgstr "SSH サーバーポート" msgid "SSH username" msgstr "SSH ユーザー名" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" -msgstr "SSHキー" +msgstr "SSH キー" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:196 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:89 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4396,6 +4376,7 @@ msgstr "スワップ" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "保存" @@ -4412,6 +4393,10 @@ msgstr "mtdblock を保存" msgid "Save mtdblock contents" msgstr "mtdblock の保存" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "公開鍵を保存中…" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "スキャン" @@ -4420,7 +4405,7 @@ msgstr "スキャン" msgid "Scan request failed" msgstr "スキャン要求が失敗しました" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "スケジュールタスク" @@ -4433,7 +4418,7 @@ msgstr "追加されるセクション" msgid "Section removed" msgstr "削除されるセクション" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "詳細情報は \"mount\" のmanページを参照してください" @@ -4481,6 +4466,14 @@ msgstr "サービスタイプ" msgid "Services" msgstr "サービス" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "セッションの期限切れ" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "VPN をデフォルト ルートとして設定します。" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4503,11 +4496,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "DHCPサーバーを設定" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "Short GI" @@ -4527,22 +4520,22 @@ msgstr "空のチェインを表示" msgid "Shutdown this interface" msgstr "インターフェースを終了します" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "信号強度" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "信号:" @@ -4550,17 +4543,13 @@ msgstr "信号:" msgid "Size" msgstr "サイズ" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "サイズ (.ipk)" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "DNS クエリ キャッシュのサイズ" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 msgid "Size of the ZRam device in megabytes" -msgstr "" +msgstr "ZRam デバイスのサイズ (MB) です。" #: modules/luci-base/luasrc/view/cbi/footer.htm:18 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 @@ -4581,12 +4570,7 @@ msgstr "ナビゲーションへ移動" msgid "Slot time" msgstr "スロット時間" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "ソフトウェア" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4612,7 +4596,7 @@ msgstr "" "ファームウェア更新は手動で行っていただく必要があります。wikiを参照して、この" "デバイスのインストール手順を参照してください。" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4622,7 +4606,7 @@ msgstr "送信元" msgid "Specifies the directory the device is attached to" msgstr "デバイスが接続するディレクトリを設定します" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "<em>Dropbear</em> の待ち受けポートを設定してください。" @@ -4668,7 +4652,7 @@ msgstr "開始" msgid "Start priority" msgstr "優先順位" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "設定の適用を開始しています..." @@ -4676,7 +4660,7 @@ msgstr "設定の適用を開始しています..." msgid "Starting wireless scan..." msgstr "無線LANのスキャンを開始しています..." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "スタートアップ" @@ -4688,7 +4672,7 @@ msgstr "IPv4 静的ルーティング" msgid "Static IPv6 Routes" msgstr "IPv6 静的ルーティング" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "静的リース" @@ -4696,11 +4680,11 @@ msgstr "静的リース" msgid "Static Routes" msgstr "静的ルーティング" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "静的アドレス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4717,8 +4701,7 @@ msgstr "非アクティブなステーションの制限" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "ステータス" @@ -4743,7 +4726,7 @@ msgstr "ログの抑制" msgid "Suppress logging of the routine operation of these protocols" msgstr "これらのプロトコルの、ルーチン的操作についてのログを抑制します。" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "スワップ" @@ -4775,7 +4758,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "スイッチポート マスク" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4793,7 +4776,7 @@ msgid "Synchronizing..." msgstr "同期中..." #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4813,7 +4796,7 @@ msgstr "システム プロパティ" msgid "System log buffer size" msgstr "システムログ バッファサイズ" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4831,7 +4814,7 @@ msgstr "TFTPサーバー・ルート" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "送信レート" @@ -4915,7 +4898,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "設定ファイルは以下のエラーにより読み込めませんでした:" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4968,6 +4951,18 @@ msgstr "以下の変更が取り消されました" msgid "The following rules are currently active on this system." msgstr "このシステムでは、現在以下のルールが有効になっています。" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "入力された SSH 公開鍵は既に追加されています。" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" +"入力された SSH 公開鍵は無効です。正しい RSA または ECDSA 鍵を入力してくださ" +"い。" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "設定されたネットワーク名はユニークなものではありません" @@ -5021,13 +5016,13 @@ msgstr "選択中のプロトコルを使用する場合、デバイスを設定 msgid "The submitted security token is invalid or already expired!" msgstr "送信されたセキュリティ トークンは無効もしくは期限切れです!" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "システムは設定領域を消去中です。完了後、自動的に再起動します。" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " "few minutes before you try to reconnect. It might be necessary to renew the " @@ -5039,6 +5034,10 @@ msgstr "" "わる可能性があるため、再接続時にあなたのコンピュータのIPアドレスを変更しなけ" "ればならない場合があります。" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "システム パスワードの変更に成功しました。" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -5048,12 +5047,16 @@ msgstr "" "マットではありません。このプラットフォームに適合したイメージファイルかどう" "か、確認してください。" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "テーマ" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "リース中のIPアドレスはありません。" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "適用する変更はありません。" @@ -5077,7 +5080,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5167,7 +5170,7 @@ msgstr "" "このリストは現在システムで動作しているプロセスとそのステータスを表示していま" "す。" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "このページでは、現在アクティブなネットワーク接続を表示します。" @@ -5193,6 +5196,10 @@ msgstr "Group Temporal Key (GTK) 再生成間隔" msgid "Timezone" msgstr "タイムゾーン" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "ログイン…" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5203,12 +5210,12 @@ msgstr "" "ださい。設定のリセットを行う場合、\"設定リセット\"をクリックしてください。(た" "だし、squashfsをお使いの場合のみ使用可能です)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "合計" @@ -5223,7 +5230,7 @@ msgstr "Traceroute" msgid "Traffic" msgstr "トラフィック" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "転送" @@ -5258,7 +5265,7 @@ msgstr "トリガーモード" msgid "Tunnel ID" msgstr "トンネル ID" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "トンネルインターフェース" @@ -5273,12 +5280,12 @@ msgid "Tx-Power" msgstr "送信電力" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "タイプ" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5332,36 +5339,36 @@ msgstr "AFTR ホスト名を解決できません" msgid "Unable to resolve peer host name" msgstr "ピアのホスト名を解決できません" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "不明" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "不明なエラーです。パスワードは変更されていません!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "不明なエラー (%s)" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "Unmanaged" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "アンマウント" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "名称未設定の公開鍵" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "保存されていない変更" @@ -5381,10 +5388,6 @@ msgstr "サポートされていないプロトコルタイプ" msgid "Up" msgstr "上へ" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "リストを更新" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5406,7 +5409,7 @@ msgstr "アップロード完了" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "起動時間" @@ -5522,7 +5525,7 @@ msgstr "ゲートウェイ メトリックを使用する" msgid "Use routing table" msgstr "ルーティング テーブルの使用" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5563,11 +5566,11 @@ msgstr "ユーザー秘密鍵(PEM エンコード)" msgid "Username" msgstr "ユーザー名" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "VDSL" @@ -5617,11 +5620,6 @@ msgstr "DHCPリクエスト送信時のベンダークラスを設定" msgid "Verify" msgstr "確認" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "バージョン" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "仮想ダイナミックインターフェース" @@ -5673,7 +5671,7 @@ msgstr "変更を適用中です..." msgid "Waiting for command to complete..." msgstr "コマンド実行中です..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "設定を適用中です... %d 秒" @@ -5706,16 +5704,16 @@ msgstr "WireGuard VPN" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "無線" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "無線アダプタ" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "無線ネットワーク" @@ -5730,13 +5728,13 @@ msgstr "無線LANセキュリティ" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "無線LAN機能は無効になっています" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "無線LAN機能がアソシエーションされていません" @@ -5760,6 +5758,10 @@ msgstr "受信したDNSリクエストをsyslogへ記録します" msgid "Write system log to file" msgstr "システムログをファイルに書き込む" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "はい" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5775,7 +5777,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "JavaScriptを有効にしない場合、LuCIは正しく動作しません。" @@ -5810,9 +5812,9 @@ msgstr "ZRam サイズ" msgid "any" msgstr "全て" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5829,7 +5831,7 @@ msgstr "自動" msgid "baseT" msgstr "baseT" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "ブリッジ" @@ -5848,24 +5850,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "指定したインターフェースでブリッジを作成します" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "dB" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "dBm" @@ -5907,7 +5909,7 @@ msgstr "全二重" msgid "half-duplex" msgstr "半二重" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "エンコードされた値(16進数)" @@ -5929,44 +5931,44 @@ msgstr "ターゲットがネットワークの場合" msgid "input" msgstr "入力" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "kB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "kB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "kbit/s" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "8 文字以上 63 文字以下のキー" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "5 文字または 13 文字のキー" @@ -5992,19 +5994,10 @@ msgstr "いいえ" msgid "no link" msgstr "リンクなし" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "空ではない値" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "なし" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -6016,7 +6009,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "オフ" @@ -6024,15 +6017,17 @@ msgstr "オフ" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "オン" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" msgstr "" +"以下を満たす1つ:\n" +" - %s" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:71 msgid "open" @@ -6046,11 +6041,11 @@ msgstr "出力" msgid "overlay" msgstr "オーバーレイ" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "正の値(10進数)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "正の整数値" @@ -6064,7 +6059,7 @@ msgstr "ランダム" msgid "relay mode" msgstr "リレー モード" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "routed" @@ -6098,7 +6093,7 @@ msgstr "tagged" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "ユニークな値" @@ -6125,159 +6120,159 @@ msgstr "設定しない -又は- 作成:" msgid "untagged" msgstr "untagged" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "有効な IP アドレス" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "有効な IP アドレスまたはプレフィクス" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "有効な IPv4 CIDR" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "有効な IPv4 アドレス" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "有効な IPv4 アドレスまたはネットワーク" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "有効な IPv4 アドレス:ポート" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "有効な IPv4 ネットワーク" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "有効な IPv4 または IPv6 CIDR" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "有効な IPv4 プレフィクス値 (0 - 32)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "有効な IPv6 CIDR" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "有効な IPv6 アドレス" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "有効な IPv6 アドレスまたはプレフィクス" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "有効な IPv6 ホスト ID" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "有効な IPv6 ネットワーク" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "有効な IPv6 プレフィクス値 (0 - 128)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "有効な MAC アドレス" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "有効な UCI 識別子" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "有効な UCI 識別子またはホスト名、 IP アドレス" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "有効なアドレス:ポート" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "有効な日付 (YYYY-MM-DD)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "有効な10進数の値" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "有効な WEP キー(16進数)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "有効な WPA キー(16進数)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "有効なホスト:ポート" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "有効なホスト名" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "有効なホスト名または IP アドレス" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "有効な整数値" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "有効なネットワーク(アドレス/ネットマスク 表記)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "有効なポートまたはポート範囲(port1-port2)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "有効なポート番号" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "有効な時刻 (HH:MM:SS)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "%d 以上 %d 文字以下の値" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "%f 以上 %f 以下の値" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "%f 以上の値" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "%f 以下の値" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr " %d 文字以上の値" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "%d 文字以下の値" @@ -6290,24 +6285,3 @@ msgstr "はい" #: modules/luci-base/luasrc/view/cbi/delegator.htm:20 msgid "« Back" msgstr "« 戻る" - -#~ msgid "Disable DNS setup" -#~ msgstr "DNSセットアップを無効にする" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4及びIPv6" - -#~ msgid "IPv4 only" -#~ msgstr "IPv4のみ" - -#~ msgid "IPv6 only" -#~ msgstr "IPv6のみ" - -#~ msgid "Lease validity time" -#~ msgstr "リース有効時間" - -#~ msgid "Multicast address" -#~ msgstr "マルチキャスト アドレス" - -#~ msgid "Protocol family" -#~ msgstr "プロトコルファミリ" diff --git a/modules/luci-base/po/ko/base.po b/modules/luci-base/po/ko/base.po index 2470e6fc7e..0c0b2825a9 100644 --- a/modules/luci-base/po/ko/base.po +++ b/modules/luci-base/po/ko/base.po @@ -13,10 +13,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.4\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -49,16 +53,16 @@ msgstr "" msgid "-- Additional Field --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "" @@ -82,11 +86,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1 분 부하:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "15 분 부하:" @@ -98,7 +102,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "5 분 부하:" @@ -152,7 +156,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-주소" @@ -177,11 +181,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 설정" @@ -190,12 +194,12 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 설정" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 이름" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-주소" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -225,19 +229,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -251,37 +259,37 @@ msgstr "" msgid "ARP retry threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " "to dial into the provider network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -296,8 +304,6 @@ msgstr "" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "관리 도구" @@ -311,8 +317,8 @@ msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "" "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Route 경로" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Active 연결수" @@ -339,6 +345,13 @@ msgstr "" msgid "Add" msgstr "추가" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" @@ -355,8 +368,8 @@ msgstr "추가적인 Hosts 파일들" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "주소" @@ -372,7 +385,7 @@ msgstr "관리" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -380,7 +393,7 @@ msgstr "관리" msgid "Advanced Settings" msgstr "고급 설정" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -388,7 +401,7 @@ msgstr "" msgid "Alert" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -411,7 +424,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "<abbr title=\"Secure Shell\">SSH</abbr> 암호 인증을 허용합니다" @@ -437,15 +450,15 @@ msgstr "" msgid "Allow localhost" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "암호를 이용한 root 접근 허용" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "암호를 이용한 <em>root</em> 사용자 접근을 허용합니다" @@ -468,64 +481,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -571,15 +584,15 @@ msgstr "" msgid "Any zone" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -600,11 +613,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "연결된 station 들" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -635,8 +648,8 @@ msgstr "인증이 필요합니다" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "자동 Refresh" @@ -679,29 +692,25 @@ msgstr "" msgid "Available" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "이용 가능한 패키지" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "평균:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -712,7 +721,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "" @@ -742,7 +751,7 @@ msgstr "" msgid "Backup" msgstr "백업" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Firmware 백업 / Flash" @@ -773,12 +782,14 @@ msgstr "" "필수 기본 파일 그리고 사용자가 패턴 정의로 백업하도록 지정한 것로 이루어져 있" "습니다." -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -787,7 +798,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "" @@ -795,7 +806,7 @@ msgstr "" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "" @@ -803,7 +814,7 @@ msgstr "" msgid "Bridge interfaces" msgstr "Bridge 인터페이스" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "" @@ -819,18 +830,10 @@ msgstr "" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "버퍼된 양" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" -"Build/distribution 지정 feed 목록입니다. 이 파일의 내용은 sysupgrade 시 초기" -"화됩니다." - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -845,6 +848,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "" @@ -867,6 +871,12 @@ msgstr "" msgid "Chain" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -876,20 +886,24 @@ msgstr "변경 사항" msgid "Changes applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "장비 접근을 위한 관리자 암호를 변경합니다" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "" @@ -972,6 +986,11 @@ msgstr "" msgid "Client ID to send when requesting DHCP" msgstr "DHCP 요청시 전송할 Client ID" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -989,16 +1008,16 @@ msgstr "목록 닫기..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1029,8 +1048,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "설정" @@ -1042,15 +1059,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "다시 확인" @@ -1059,8 +1076,8 @@ msgid "Connect" msgstr "연결" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "연결 시간" @@ -1076,7 +1093,7 @@ msgstr "" msgid "Connections" msgstr "연결" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1133,18 +1150,6 @@ msgstr "임의의 인터페이스" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" -"개인이 운영하는 feed 같은 정보를 입력할 수 있는 custom feed 목록입니다. 이 파" -"일은 sysupgrade 시 입력된 정보가 유지됩니다." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "Custom feed 들" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1169,7 +1174,7 @@ msgstr "DHCP 서버" msgid "DHCP and DNS" msgstr "DHCP 와 DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "DHCP client" @@ -1189,16 +1194,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "" @@ -1226,16 +1231,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1247,7 +1252,7 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1261,6 +1266,10 @@ msgstr "" msgid "Default %d" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1298,6 +1307,11 @@ msgstr "" msgid "Delete" msgstr "삭제" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "이 네트워크를 삭제합니다" @@ -1306,16 +1320,11 @@ msgstr "이 네트워크를 삭제합니다" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "설명" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "디자인" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "" @@ -1323,8 +1332,8 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1341,7 +1350,7 @@ msgstr "장치 설정" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1409,18 +1418,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1430,10 +1442,6 @@ msgstr "" msgid "Distance to farthest network member in meters." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "Distribution feed 들" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "" @@ -1461,6 +1469,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "" @@ -1483,10 +1495,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "패키지 다운로드 후 설치" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "백업 다운로드" @@ -1495,15 +1503,15 @@ msgstr "백업 다운로드" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1675,8 +1683,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "이 bridge 에 Spanning Tree Protocol 활성화합니다" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "" @@ -1684,7 +1692,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "암호화" @@ -1704,7 +1712,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "" @@ -1713,19 +1721,19 @@ msgstr "" msgid "Error" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Ethernet 스위치" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1733,11 +1741,11 @@ msgstr "" msgid "Expand hosts" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "만료 시간" @@ -1786,7 +1794,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1804,10 +1812,6 @@ msgstr "" msgid "Filesystem" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "필터" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "" @@ -1830,10 +1834,6 @@ msgstr "" msgid "Find and join network" msgstr "네트워크 검색 및 연결합니다" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "패키지 찾기" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "" @@ -1854,11 +1854,11 @@ msgstr "방화벽 설정" msgid "Firewall Status" msgstr "방화벽 상태" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Firmware 버전" @@ -1882,7 +1882,7 @@ msgstr "새로운 firmware 이미지로 flash" msgid "Flash operations" msgstr "Flash 작업" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "" @@ -1930,7 +1930,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1942,7 +1942,7 @@ msgstr "" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "" @@ -1955,15 +1955,11 @@ msgstr "" msgid "Frame Bursting" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "이용 가능한 양" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "여유 공간" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1972,7 +1968,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "" @@ -1981,8 +1977,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "" @@ -1990,7 +1986,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "" @@ -2003,16 +1999,12 @@ msgstr "기본 설정" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "기본 설정" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "opkg 명령의 기본 옵션들" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -2029,7 +2021,7 @@ msgstr "아카이브 생성" msgid "Generic 802.11%s Wireless Controller" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "" @@ -2037,14 +2029,14 @@ msgstr "" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "암호 설정 하기" @@ -2077,7 +2069,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2088,14 +2080,6 @@ msgid "" msgstr "" "여기서 호스트이름이나 시간대와 같은 기본적인 장비 설정을 할 수 있습니다." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" -"아래에 SSH public-key 인증을 위한 공개 SSH-Key 들 (한 줄당 한개) 를 입력할 " -"수 있습니다." - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2108,7 +2092,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "호스트" @@ -2129,9 +2113,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2186,7 +2170,7 @@ msgstr "" msgid "IPv4 Firewall" msgstr "IPv4 방화벽" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2210,7 +2194,7 @@ msgstr "" msgid "IPv4 netmask" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2255,11 +2239,11 @@ msgstr "IPv6 Neighbour 들" msgid "IPv6 Settings" msgstr "IPv6 설정" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2281,7 +2265,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2428,7 +2412,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "" @@ -2448,10 +2432,6 @@ msgstr "" msgid "Initscripts" msgstr "Initscript 들" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "설치" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2464,17 +2444,13 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "설치된 패키지" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "인터페이스" @@ -2548,7 +2524,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "" @@ -2573,7 +2549,7 @@ msgstr "설정 유지" msgid "Kernel Log" msgstr "Kernel 로그" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Kernel 버전" @@ -2619,7 +2595,7 @@ msgstr "" msgid "LCP echo interval" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "" @@ -2636,7 +2612,7 @@ msgstr "언어" msgid "Language and Style" msgstr "언어와 스타일" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2644,7 +2620,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "임대 시간" @@ -2688,19 +2664,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2752,7 +2728,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "지정한 인터페이스에만 listening 하며 미지정시 모든 인터페이스에 적용됩니다" @@ -2767,7 +2743,7 @@ msgstr "" msgid "Load" msgstr "부하" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "부하 평균" @@ -2777,6 +2753,10 @@ msgstr "부하 평균" msgid "Loading" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2806,7 +2786,7 @@ msgstr "" msgid "Local Startup" msgstr "Local 시작 프로그램" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "지역 시간" @@ -2859,11 +2839,11 @@ msgstr "" msgid "Login" msgstr "로그인" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "로그아웃" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2878,9 +2858,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-주소" @@ -2916,7 +2896,7 @@ msgstr "" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "" @@ -2942,7 +2922,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -2977,16 +2957,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "임대될 수 있는 주소의 최대 숫자." -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "메모리" @@ -3029,11 +3009,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "모델" @@ -3072,7 +3052,7 @@ msgstr "" msgid "Mount Point" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3096,7 +3076,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "" @@ -3167,15 +3147,15 @@ msgstr "" msgid "Navigation" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3201,6 +3181,10 @@ msgstr "" msgid "Next »" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "" @@ -3213,9 +3197,9 @@ msgstr "" msgid "No files found" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "이용 가능한 정보가 없습니다" @@ -3235,18 +3219,18 @@ msgstr "" msgid "No network name specified" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "암호 설정을 해주세요!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "" @@ -3259,23 +3243,23 @@ msgstr "" msgid "No zone assigned" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "노이즈" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3301,8 +3285,8 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "연결되지 않음" @@ -3326,14 +3310,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "OPKG-설정" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3374,7 +3350,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -3474,7 +3450,7 @@ msgstr "" msgid "Options" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "" @@ -3482,7 +3458,7 @@ msgstr "" msgid "Out" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "" @@ -3619,7 +3595,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3627,15 +3603,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "패키지 이름" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "" @@ -3646,13 +3613,13 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "암호" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "암호 인증" @@ -3664,14 +3631,14 @@ msgstr "" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "" @@ -3696,17 +3663,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "최고치:" @@ -3738,7 +3705,7 @@ msgstr "Reset 하기" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "" @@ -3766,16 +3733,11 @@ msgstr "Pkts." msgid "Please enter your username and password." msgstr "사용자이름과 암호를 입력해 주세요." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "포트" @@ -3783,11 +3745,11 @@ msgstr "포트" msgid "Port status:" msgstr "포트 상태:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3799,7 +3761,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3818,7 +3780,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3840,7 +3802,7 @@ msgstr "" msgid "Processes" msgstr "프로세스" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3850,9 +3812,9 @@ msgstr "Prot." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "프로토콜" @@ -3880,6 +3842,14 @@ msgstr "" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3889,7 +3859,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "" @@ -3922,7 +3892,7 @@ msgstr "" msgid "RX" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "" @@ -3982,7 +3952,7 @@ msgstr "" msgid "Really switch protocol?" msgstr "정말 프로토콜 변경을 원하세요?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "실시간 연결수" @@ -3990,15 +3960,15 @@ msgstr "실시간 연결수" msgid "Realtime Graphs" msgstr "실시간 그래프" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "실시간 부하" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "실시간 트래픽" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "" @@ -4010,7 +3980,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "재부팅" @@ -4072,7 +4042,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "제거" @@ -4136,7 +4105,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "초기화" @@ -4179,6 +4147,8 @@ msgid "Restore backup" msgstr "백업 복구" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "암호 보이기/숨기기" @@ -4188,15 +4158,15 @@ msgstr "암호 보이기/숨기기" msgid "Revert" msgstr "변경 취소" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4225,7 +4195,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "라우터 암호" @@ -4247,11 +4218,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "" @@ -4259,11 +4230,12 @@ msgstr "" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "" @@ -4279,7 +4251,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "" @@ -4288,7 +4261,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4299,6 +4272,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "저장" @@ -4315,6 +4289,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Scan 하기" @@ -4323,7 +4301,7 @@ msgstr "Scan 하기" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "작업 관리" @@ -4336,7 +4314,7 @@ msgstr "추가된 section" msgid "Section removed" msgstr "삭제된 section" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "" @@ -4379,6 +4357,14 @@ msgstr "" msgid "Services" msgstr "서비스" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4401,11 +4387,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4425,22 +4411,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "이 인터페이스를 정지합니다" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "신호" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "" @@ -4448,10 +4434,6 @@ msgstr "" msgid "Size" msgstr "Size" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "크기 (.ipk)" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4479,12 +4461,7 @@ msgstr "" msgid "Slot time" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "소프트웨어" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4507,7 +4484,7 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4517,7 +4494,7 @@ msgstr "" msgid "Specifies the directory the device is attached to" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "<em>Dropbear</em> instance 의 listening 포트를 지정합니다" @@ -4563,7 +4540,7 @@ msgstr "시작" msgid "Start priority" msgstr "시작 우선순위" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4571,7 +4548,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "시작 프로그램" @@ -4583,7 +4560,7 @@ msgstr "Static IPv4 Route 경로" msgid "Static IPv6 Routes" msgstr "Static IPv6 Route 경로" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Static Lease 들" @@ -4591,11 +4568,11 @@ msgstr "Static Lease 들" msgid "Static Routes" msgstr "Static Route 경로" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4612,8 +4589,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "상태" @@ -4638,7 +4614,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4668,7 +4644,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "스위치 VLAN" @@ -4686,7 +4662,7 @@ msgid "Synchronizing..." msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4706,7 +4682,7 @@ msgstr "시스템 등록 정보" msgid "System log buffer size" msgstr "System log 버퍼 크기" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "" @@ -4724,7 +4700,7 @@ msgstr "TFTP 서버 root" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "" @@ -4802,7 +4778,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4841,6 +4817,16 @@ msgstr "다음의 변경 사항들이 취소되었습니다" msgid "The following rules are currently active on this system." msgstr "다음의 rule 들이 현재 이 시스템에 적용 중입니다." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "" @@ -4891,13 +4877,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " "few minutes before you try to reconnect. It might be necessary to renew the " @@ -4905,18 +4891,26 @@ msgid "" "settings." msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "디자인" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -4938,7 +4932,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5018,7 +5012,7 @@ msgid "" msgstr "" "이 목록은 현재 실행중인 시스템 프로세스와 해당 상태에 대한 개요를 보여줍니다." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "이 페이지는 현재 active 상태인 네트워크 연결을 보여줍니다." @@ -5044,6 +5038,10 @@ msgstr "" msgid "Timezone" msgstr "시간대" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5054,12 +5052,12 @@ msgstr "" "할 수 있습니다. Firmware 의 초기 설정 reset 을 원한다면 \"Reset 하기\" 를 클" "릭하세요. (squashfs 이미지들만 가능)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "총 이용 가능한 양" @@ -5074,7 +5072,7 @@ msgstr "" msgid "Traffic" msgstr "트래픽" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "전송량" @@ -5109,7 +5107,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "" @@ -5124,12 +5122,12 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "유형" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "" @@ -5183,36 +5181,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "알수없음" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "적용 안된 변경 사항" @@ -5232,10 +5230,6 @@ msgstr "" msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5256,7 +5250,7 @@ msgstr "Uploaded File" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "가동 시간" @@ -5372,7 +5366,7 @@ msgstr "Gateway metric 사용" msgid "Use routing table" msgstr "Routing table 사용" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5414,11 +5408,11 @@ msgstr "" msgid "Username" msgstr "사용자이름" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5468,11 +5462,6 @@ msgstr "DHCP 요청시 전송할 Vendor Class" msgid "Verify" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "버전" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5521,7 +5510,7 @@ msgstr "변경 사항이 적용되기를 기다리는 중입니다..." msgid "Waiting for command to complete..." msgstr "실행한 명령이 끝나기를 기다리는 중입니다..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5554,16 +5543,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "무선" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "무선랜 네트워크" @@ -5578,13 +5567,13 @@ msgstr "무선랜 보안" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "무선이 비활성화되어" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "무선이 연결되어 있지 않습니다" @@ -5608,6 +5597,10 @@ msgstr "받은 DNS 요청 내용을 systlog 에 기록합니다" msgid "Write system log to file" msgstr "System log 출력 파일 경로" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5623,7 +5616,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5655,9 +5648,9 @@ msgstr "" msgid "any" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5674,7 +5667,7 @@ msgstr "" msgid "baseT" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "" @@ -5693,24 +5686,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "지정한 인터페이스(들)로 구성된 bridge 를 생성합니다" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "" @@ -5752,7 +5745,7 @@ msgstr "" msgid "half-duplex" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5774,44 +5767,44 @@ msgstr "Target 이 네트워크일 경우" msgid "input" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5837,19 +5830,10 @@ msgstr "" msgid "no link" msgstr "link 없음" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5861,7 +5845,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "" @@ -5869,11 +5853,11 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5891,11 +5875,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5909,7 +5893,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "" @@ -5943,7 +5927,7 @@ msgstr "" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -5970,159 +5954,159 @@ msgstr "unspecified -혹은- create:" msgid "untagged" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6136,6 +6120,75 @@ msgstr "" msgid "« Back" msgstr "" +#~ msgid "" +#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " +#~ "authentication." +#~ msgstr "" +#~ "아래에 SSH public-key 인증을 위한 공개 SSH-Key 들 (한 줄당 한개) 를 입력" +#~ "할 수 있습니다." + +#~ msgid "Design" +#~ msgstr "디자인" + +#~ msgid "Available packages" +#~ msgstr "이용 가능한 패키지" + +#~ msgid "" +#~ "Build/distribution specific feed definitions. This file will NOT be " +#~ "preserved in any sysupgrade." +#~ msgstr "" +#~ "Build/distribution 지정 feed 목록입니다. 이 파일의 내용은 sysupgrade 시 " +#~ "초기화됩니다." + +#~ msgid "" +#~ "Custom feed definitions, e.g. private feeds. This file can be preserved " +#~ "in a sysupgrade." +#~ msgstr "" +#~ "개인이 운영하는 feed 같은 정보를 입력할 수 있는 custom feed 목록입니다. " +#~ "이 파일은 sysupgrade 시 입력된 정보가 유지됩니다." + +#~ msgid "Custom feeds" +#~ msgstr "Custom feed 들" + +#~ msgid "Distribution feeds" +#~ msgstr "Distribution feed 들" + +#~ msgid "Download and install package" +#~ msgstr "패키지 다운로드 후 설치" + +#~ msgid "Filter" +#~ msgstr "필터" + +#~ msgid "Find package" +#~ msgstr "패키지 찾기" + +#~ msgid "Free space" +#~ msgstr "여유 공간" + +#~ msgid "General options for opkg" +#~ msgstr "opkg 명령의 기본 옵션들" + +#~ msgid "Install" +#~ msgstr "설치" + +#~ msgid "Installed packages" +#~ msgstr "설치된 패키지" + +#~ msgid "OPKG-Configuration" +#~ msgstr "OPKG-설정" + +#~ msgid "Package name" +#~ msgstr "패키지 이름" + +#~ msgid "Size (.ipk)" +#~ msgstr "크기 (.ipk)" + +#~ msgid "Software" +#~ msgstr "소프트웨어" + +#~ msgid "Version" +#~ msgstr "버전" + #~ msgid "IPv4 and IPv6" #~ msgstr "IPv4 와 IPv6" diff --git a/modules/luci-base/po/ms/base.po b/modules/luci-base/po/ms/base.po index 8da7b671cc..61cfa6ad56 100644 --- a/modules/luci-base/po/ms/base.po +++ b/modules/luci-base/po/ms/base.po @@ -13,10 +13,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.1.1\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -49,16 +53,16 @@ msgstr "(tiada interface dipasang)" msgid "-- Additional Field --" msgstr "-- Gelanggang Tambahan --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Sila pilih --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- memperibadi --" @@ -82,11 +86,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "" @@ -98,7 +102,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "" @@ -153,7 +157,7 @@ msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"perkhidmatan set mengenalpasti diperpanjangkan\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "IPv4-Alamat" @@ -178,11 +182,11 @@ msgstr "IPv6 Host-Alamat atau Rangkaian (CIDR)" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "IPv6-Pintu gerbang" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Konfigurasi lampu LED" @@ -191,12 +195,12 @@ msgstr "Konfigurasi lampu LED" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "MAC-Alamat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -222,19 +226,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -248,37 +256,37 @@ msgstr "" msgid "ARP retry threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " "to dial into the provider network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -293,8 +301,6 @@ msgstr "Pusat akses" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Aksi" @@ -306,8 +312,8 @@ msgstr "Aktive IPv4-Routen" msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "Aktif IPv6-Laluan" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Sambungan Aktif" @@ -334,6 +340,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Tambah" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" @@ -350,8 +363,8 @@ msgstr "" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "" @@ -367,7 +380,7 @@ msgstr "Pentadbiran" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -375,7 +388,7 @@ msgstr "Pentadbiran" msgid "Advanced Settings" msgstr "Tetapan Lanjutan" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -383,7 +396,7 @@ msgstr "" msgid "Alert" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -406,7 +419,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Membenarkan pengesahan kata laluan SSH" @@ -432,15 +445,15 @@ msgstr "Izinkan senarai saja" msgid "Allow localhost" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "" @@ -463,64 +476,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -566,15 +579,15 @@ msgstr "" msgid "Any zone" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -595,11 +608,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Associated Stesen" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -630,8 +643,8 @@ msgstr "Otorisasi Diperlukan" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "" @@ -674,29 +687,25 @@ msgstr "" msgid "Available" msgstr "Boleh didapati" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -707,7 +716,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "" @@ -737,7 +746,7 @@ msgstr "Kembali ke keputusan scan" msgid "Backup" msgstr "Sandaran" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "" @@ -765,12 +774,14 @@ msgid "" "defined backup patterns." msgstr "" -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -779,7 +790,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "" @@ -787,7 +798,7 @@ msgstr "" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Bridge" @@ -795,7 +806,7 @@ msgstr "Bridge" msgid "Bridge interfaces" msgstr "Antara Muka Bridge" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "" @@ -811,16 +822,10 @@ msgstr "" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -835,6 +840,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Batal" @@ -857,6 +863,12 @@ msgstr "" msgid "Chain" msgstr "Rantai" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -866,20 +878,24 @@ msgstr "Laman" msgid "Changes applied." msgstr "Laman diterapkan." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Saluran" @@ -955,6 +971,11 @@ msgstr "Pelanggan" msgid "Client ID to send when requesting DHCP" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -972,16 +993,16 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1012,8 +1033,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Konfigurasi" @@ -1025,15 +1044,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Pengesahan" @@ -1042,8 +1061,8 @@ msgid "Connect" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "" @@ -1059,7 +1078,7 @@ msgstr "" msgid "Connections" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1116,16 +1135,6 @@ msgstr "" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1148,7 +1157,7 @@ msgstr "" msgid "DHCP and DNS" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "" @@ -1168,16 +1177,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "" @@ -1205,16 +1214,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1226,7 +1235,7 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1240,6 +1249,10 @@ msgstr "" msgid "Default %d" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1274,6 +1287,11 @@ msgstr "" msgid "Delete" msgstr "Padam" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "" @@ -1282,16 +1300,11 @@ msgstr "" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Keterangan" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Disain" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Tempat tujuan" @@ -1299,8 +1312,8 @@ msgstr "Tempat tujuan" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1317,7 +1330,7 @@ msgstr "" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1383,18 +1396,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1404,10 +1420,6 @@ msgstr "Jarak Optimasi" msgid "Distance to farthest network member in meters." msgstr "Jarak ke rangkaian terjauh ahli dalam meter." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Keanekaragaman" @@ -1437,6 +1449,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Domain diperlukan" @@ -1459,10 +1475,6 @@ msgstr "Jangan hantar permintaan DNS tanpa nama DNS" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Turun dan memasang pakej" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "" @@ -1471,15 +1483,15 @@ msgstr "" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1648,8 +1660,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "Aktifkan spanning Tree Protokol di jambatan ini" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "" @@ -1657,7 +1669,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Enkripsi" @@ -1677,7 +1689,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "" @@ -1686,19 +1698,19 @@ msgstr "" msgid "Error" msgstr "Kesalahan" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Ethernet Adapter" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Ethernet Beralih" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1706,11 +1718,11 @@ msgstr "" msgid "Expand hosts" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "" @@ -1759,7 +1771,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1777,10 +1789,6 @@ msgstr "" msgid "Filesystem" msgstr "Fail Sistem" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Penapis" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Penapis swasta" @@ -1803,10 +1811,6 @@ msgstr "" msgid "Find and join network" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Cari pakej" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Selesai" @@ -1827,11 +1831,11 @@ msgstr "Tetapan Firewall" msgid "Firewall Status" msgstr "Status Firewall" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "" @@ -1855,7 +1859,7 @@ msgstr "" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "" @@ -1903,7 +1907,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1915,7 +1919,7 @@ msgstr "" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "" @@ -1928,15 +1932,11 @@ msgstr "Fragmentasi Ambang" msgid "Frame Bursting" msgstr "Bingkai Meletup" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1945,7 +1945,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "" @@ -1954,8 +1954,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "" @@ -1963,7 +1963,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "" @@ -1976,16 +1976,12 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "Setup Umum" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -2002,7 +1998,7 @@ msgstr "" msgid "Generic 802.11%s Wireless Controller" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "" @@ -2010,14 +2006,14 @@ msgstr "" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "" @@ -2050,7 +2046,7 @@ msgstr "" msgid "Hang Up" msgstr "Menutup" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2062,12 +2058,6 @@ msgstr "" "Di sini anda boleh mengkonfigurasi aspek asas peranti anda seperti nama host " "atau zon." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2080,7 +2070,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2101,9 +2091,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2158,7 +2148,7 @@ msgstr "" msgid "IPv4 Firewall" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2182,7 +2172,7 @@ msgstr "" msgid "IPv4 netmask" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2227,11 +2217,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2253,7 +2243,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2405,7 +2395,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "" @@ -2425,10 +2415,6 @@ msgstr "" msgid "Initscripts" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Memasang" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2441,17 +2427,13 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Interface" @@ -2528,7 +2510,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "" @@ -2554,7 +2536,7 @@ msgstr "" msgid "Kernel Log" msgstr "Log Kernel" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "" @@ -2600,7 +2582,7 @@ msgstr "" msgid "LCP echo interval" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "" @@ -2617,7 +2599,7 @@ msgstr "Bahasa" msgid "Language and Style" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2625,7 +2607,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2668,19 +2650,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2732,7 +2714,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -2746,7 +2728,7 @@ msgstr "" msgid "Load" msgstr "Load" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "" @@ -2756,6 +2738,10 @@ msgstr "" msgid "Loading" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2785,7 +2771,7 @@ msgstr "" msgid "Local Startup" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Masa Tempatan" @@ -2838,11 +2824,11 @@ msgstr "" msgid "Login" msgstr "Login" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Logout" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2857,9 +2843,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "" @@ -2895,7 +2881,7 @@ msgstr "" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "" @@ -2921,7 +2907,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -2956,16 +2942,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Memori" @@ -3008,11 +2994,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Mode" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3051,7 +3037,7 @@ msgstr "" msgid "Mount Point" msgstr "Mount Point" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3077,7 +3063,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "" @@ -3148,15 +3134,15 @@ msgstr "Nama rangkaian baru" msgid "Navigation" msgstr "Navigation" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3182,6 +3168,10 @@ msgstr "" msgid "Next »" msgstr "Kemudian »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "" @@ -3194,9 +3184,9 @@ msgstr "" msgid "No files found" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "" @@ -3216,18 +3206,18 @@ msgstr "" msgid "No network name specified" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "Tidak ada peraturan dalam rantai ini" @@ -3240,23 +3230,23 @@ msgstr "" msgid "No zone assigned" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Kebisingan" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3282,8 +3272,8 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "" @@ -3307,14 +3297,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "Baik" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "OPKG-Konfigurasi" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3354,7 +3336,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -3454,7 +3436,7 @@ msgstr "" msgid "Options" msgstr "Pilihan" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "" @@ -3462,7 +3444,7 @@ msgstr "" msgid "Out" msgstr "Keluar" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "" @@ -3597,7 +3579,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3605,15 +3587,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Nama pakej" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Paket" @@ -3624,13 +3597,13 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Kata laluan" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Kata laluan pengesahan" @@ -3642,14 +3615,14 @@ msgstr "Kata Laluan Kunci Swasta" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Path ke CA-Sijil" @@ -3674,17 +3647,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "" @@ -3716,7 +3689,7 @@ msgstr "" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "" @@ -3744,16 +3717,11 @@ msgstr "Pkts." msgid "Please enter your username and password." msgstr "Sila masukkan username dan kata laluan anda." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "Dasar" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3761,11 +3729,11 @@ msgstr "Port" msgid "Port status:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3777,7 +3745,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3796,7 +3764,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3818,7 +3786,7 @@ msgstr "Teruskan" msgid "Processes" msgstr "Proses" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3828,9 +3796,9 @@ msgstr "Prot." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protokol" @@ -3858,6 +3826,14 @@ msgstr "Pseudo Ad-Hoc (ahdemo)" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3867,7 +3843,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "" @@ -3901,7 +3877,7 @@ msgstr "RTS/CTS-Ambang" msgid "RX" msgstr "RX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "" @@ -3959,7 +3935,7 @@ msgstr "" msgid "Really switch protocol?" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "" @@ -3967,15 +3943,15 @@ msgstr "" msgid "Realtime Graphs" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "" @@ -3987,7 +3963,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Reboot" @@ -4049,7 +4025,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Menghapuskan" @@ -4113,7 +4088,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Reset" @@ -4156,6 +4130,8 @@ msgid "Restore backup" msgstr "Kembalikan sandaran" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "" @@ -4165,15 +4141,15 @@ msgstr "" msgid "Revert" msgstr "Kembali" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4202,7 +4178,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "" @@ -4224,11 +4201,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "" @@ -4236,11 +4213,12 @@ msgstr "" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "" @@ -4256,7 +4234,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "" @@ -4265,7 +4244,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4276,6 +4255,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Simpan" @@ -4292,6 +4272,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Scan" @@ -4300,7 +4284,7 @@ msgstr "Scan" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Tugas Jadual" @@ -4313,7 +4297,7 @@ msgstr "" msgid "Section removed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "Rujuk \"mount\" laman manual untuk detail" @@ -4356,6 +4340,14 @@ msgstr "" msgid "Services" msgstr "Perkhidmatan" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4378,11 +4370,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4402,22 +4394,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Isyarat" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "" @@ -4425,10 +4417,6 @@ msgstr "" msgid "Size" msgstr "Saiz" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4456,12 +4444,7 @@ msgstr "Skip ke navigation" msgid "Slot time" msgstr "Slot masa" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Perisian" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4484,7 +4467,7 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4494,7 +4477,7 @@ msgstr "Sumber" msgid "Specifies the directory the device is attached to" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "" @@ -4540,7 +4523,7 @@ msgstr "Mula" msgid "Start priority" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4548,7 +4531,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "" @@ -4560,7 +4543,7 @@ msgstr "Laluan IPv4 Statik" msgid "Static IPv6 Routes" msgstr "Laluan IPv6 Statik" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Statische Einträge" @@ -4568,11 +4551,11 @@ msgstr "Statische Einträge" msgid "Static Routes" msgstr "Laluan Statik" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4586,8 +4569,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Status" @@ -4612,7 +4594,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4642,7 +4624,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4660,7 +4642,7 @@ msgid "Synchronizing..." msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4680,7 +4662,7 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "" @@ -4699,7 +4681,7 @@ msgstr "" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "" @@ -4774,7 +4756,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4817,6 +4799,16 @@ msgstr "Laman berikut telah kembali" msgid "The following rules are currently active on this system." msgstr "Peraturan berikut sedang aktif pada sistem ini." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "" @@ -4862,13 +4854,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -4881,6 +4873,10 @@ msgstr "" "anda perlu mengemas kini alamat komputer anda untuk mencapai peranti lagi, " "bergantung pada tetapan anda." +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -4889,12 +4885,16 @@ msgstr "" "Format Fail gambar yang diupload tidak disokongkan. Pastikan anda memilih " "fail format gambar yang generik untuk platform anda." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Tema" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -4916,7 +4916,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -4992,7 +4992,7 @@ msgstr "" "Senarai ini memberikan gambaran lebih pada proses sistem yang sedang " "berjalan dan statusnya." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "" "Laman ini memberikan gambaran lebih dari saat ini sambungan rangkaian yang " @@ -5020,6 +5020,10 @@ msgstr "" msgid "Timezone" msgstr "Zon masa" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5027,12 +5031,12 @@ msgid "" "reset\" (only possible with squashfs images)." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "" @@ -5047,7 +5051,7 @@ msgstr "" msgid "Traffic" msgstr "Lalu lintas" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Pemindahan" @@ -5082,7 +5086,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "" @@ -5097,12 +5101,12 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Jenis" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "" @@ -5156,36 +5160,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Perubahan yang belum disimpan" @@ -5205,10 +5209,6 @@ msgstr "" msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5226,7 +5226,7 @@ msgstr "Uploaded Fail" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Masa Aktif" @@ -5342,7 +5342,7 @@ msgstr "" msgid "Use routing table" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5379,11 +5379,11 @@ msgstr "" msgid "Username" msgstr "Username" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5433,11 +5433,6 @@ msgstr "" msgid "Verify" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Versi" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5488,7 +5483,7 @@ msgstr "" msgid "Waiting for command to complete..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5521,16 +5516,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Adapter Wayarles" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Rangkaian Wayarles" @@ -5545,13 +5540,13 @@ msgstr "Keselamatan WLAN" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "" @@ -5575,6 +5570,10 @@ msgstr "" msgid "Write system log to file" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5586,7 +5585,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5618,9 +5617,9 @@ msgstr "" msgid "any" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5637,7 +5636,7 @@ msgstr "auto" msgid "baseT" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "" @@ -5656,24 +5655,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "mencipta jambatan di antara muka tertentu" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "" @@ -5713,7 +5712,7 @@ msgstr "" msgid "half-duplex" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5735,44 +5734,44 @@ msgstr "jika target itu ialah rangkaian" msgid "input" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5798,19 +5797,10 @@ msgstr "" msgid "no link" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "tidak ada" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5822,7 +5812,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "" @@ -5830,11 +5820,11 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5852,11 +5842,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5870,7 +5860,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "" @@ -5904,7 +5894,7 @@ msgstr "" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -5931,159 +5921,159 @@ msgstr "Tidak dirinci -atau- buat:" msgid "untagged" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6097,6 +6087,39 @@ msgstr "" msgid "« Back" msgstr "« Kembali" +#~ msgid "Design" +#~ msgstr "Disain" + +#~ msgid "Download and install package" +#~ msgstr "Turun dan memasang pakej" + +#~ msgid "Filter" +#~ msgstr "Penapis" + +#~ msgid "Find package" +#~ msgstr "Cari pakej" + +#~ msgid "Install" +#~ msgstr "Memasang" + +#~ msgid "OK" +#~ msgstr "Baik" + +#~ msgid "OPKG-Configuration" +#~ msgstr "OPKG-Konfigurasi" + +#~ msgid "Package name" +#~ msgstr "Nama pakej" + +#~ msgid "Software" +#~ msgstr "Perisian" + +#~ msgid "Version" +#~ msgstr "Versi" + +#~ msgid "none" +#~ msgstr "tidak ada" + #~ msgid "No chains in this table" #~ msgstr "Tiada rantai dalam jadual ini" diff --git a/modules/luci-base/po/no/base.po b/modules/luci-base/po/no/base.po index 0fcde3cdb6..0a12d1d0be 100644 --- a/modules/luci-base/po/no/base.po +++ b/modules/luci-base/po/no/base.po @@ -8,10 +8,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -44,16 +48,16 @@ msgstr "(ingen grensesnitt tilknyttet)" msgid "-- Additional Field --" msgstr "-- Tilleggs Felt --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Vennligst velg --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- egendefinert --" @@ -77,11 +81,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1 minutts belastning:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "15 minutters belastning:" @@ -93,7 +97,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "5 minutters belastning:" @@ -149,7 +153,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Adresse" @@ -176,11 +180,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Konfigurasjon" @@ -189,12 +193,12 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Konfigurasjon" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Navn" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-Adresse" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -224,19 +228,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -250,29 +258,29 @@ msgstr "<abbr title=\"Aksesspunkt Navn\">APN</abbr>" msgid "ARP retry threshold" msgstr "APR terskel for nytt forsøk" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "<abbr title=\"Asynchronous Transfer Mode\">ATM</abbr> Broer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "" "<abbr title=\"Asynchronous Transfer Mode\">ATM</abbr> Virtuell kanal " "identifikator <abbr title=\"Virtual Channel Identifier\">(VCI)</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "" "<abbr title=\"Asynchronous Transfer Mode\">ATM</abbr> Virtuell plasserings " "identifikator <abbr title=\"Virtual Path Identifier\">(VPI)</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -282,12 +290,12 @@ msgstr "" "nettverk grensesnitt, dette kan brukes sammen med DHCP eller PPP for å koble " "seg mot en leverandørs nettverk." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "<abbr title=\"Asynchronous Transfer Mode\">ATM</abbr> enhetsnummer" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -302,8 +310,6 @@ msgstr "Aksesspunkt" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Handlinger" @@ -315,8 +321,8 @@ msgstr "Aktive <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Ruter" msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "Aktive <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Ruter" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Aktive Tilkoblinger" @@ -343,6 +349,13 @@ msgstr "Ad-Hoc (Uavhengig)" msgid "Add" msgstr "Legg til" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "Legg det lokale domenesuffikset til navn utgitt fra vertsfiler" @@ -359,8 +372,8 @@ msgstr "Tilleggs vertsfiler" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Adresse" @@ -376,7 +389,7 @@ msgstr "Administrasjon" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -384,7 +397,7 @@ msgstr "Administrasjon" msgid "Advanced Settings" msgstr "Avanserte Innstillinger" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -392,7 +405,7 @@ msgstr "" msgid "Alert" msgstr "Varsle" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -415,7 +428,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Tillat <abbr title=\"Secure Shell\">SSH</abbr> passord godkjenning" @@ -441,15 +454,15 @@ msgstr "Tillat kun oppførte" msgid "Allow localhost" msgstr "Tillat lokalvert" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "Tillat eksterne verter å koble til lokale SSH videresendt porter" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "Tillat root pålogginger med passord" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "Tillat bruker <em>root</em> å logge inn med passord" @@ -472,64 +485,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -575,15 +588,15 @@ msgstr "Antennekonfigurasjon" msgid "Any zone" msgstr "Alle soner" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -604,11 +617,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Tilkoblede Klienter" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -639,8 +652,8 @@ msgstr "Autorisasjon er nødvendig" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Automatisk oppdatering" @@ -683,29 +696,25 @@ msgstr "" msgid "Available" msgstr "Tilgjengelig" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Tilgjengelige pakker" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Gjennomsnitt:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -716,7 +725,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -746,7 +755,7 @@ msgstr "Tilbake til skanne resultat" msgid "Backup" msgstr "Sikkerhetskopi" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Sikkerhetskopiering/Firmware oppgradering" @@ -777,12 +786,14 @@ msgstr "" "konfigurasjonsfiler som er merket av opkg, essensielle enhets filer og andre " "filer valgt av bruker." -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -791,7 +802,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Bitrate" @@ -799,7 +810,7 @@ msgstr "Bitrate" msgid "Bogus NX Domain Override" msgstr "Overstyr falske NX Domener" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Bro" @@ -807,7 +818,7 @@ msgstr "Bro" msgid "Bridge interfaces" msgstr "Sammenkoble grensesnitt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "Bro enhetsnummer" @@ -823,16 +834,10 @@ msgstr "Broadcom 802.11%s Trådløs Kontroller" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Broadcom BCM%04x 802.11 Trådløs Kontroller" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "Bufret" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -847,6 +852,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Avbryt" @@ -869,6 +875,12 @@ msgstr "" msgid "Chain" msgstr "Lenke" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -878,20 +890,24 @@ msgstr "Endringer" msgid "Changes applied." msgstr "Endringer utført." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "Endrer administrator passordet for tilgang til enheten" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Kanal" @@ -974,6 +990,11 @@ msgstr "Klient" msgid "Client ID to send when requesting DHCP" msgstr "Klient ID som sendes ved DHCP spørring" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -993,16 +1014,16 @@ msgstr "Lukk liste..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1033,8 +1054,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Konfigurasjon" @@ -1046,15 +1065,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Bekreftelse" @@ -1063,8 +1082,8 @@ msgid "Connect" msgstr "Koble til" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Tilkoblet" @@ -1080,7 +1099,7 @@ msgstr "" msgid "Connections" msgstr "Tilkoblinger" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1137,16 +1156,6 @@ msgstr "Egendefinerte Grensesnitt" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1171,7 +1180,7 @@ msgstr "DHCP Server" msgid "DHCP and DNS" msgstr "DHCP og DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "DHCP klient" @@ -1191,16 +1200,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1228,16 +1237,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1249,7 +1258,7 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1263,6 +1272,10 @@ msgstr "Feilsøking" msgid "Default %d" msgstr "Standard %d" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1299,6 +1312,11 @@ msgstr "" msgid "Delete" msgstr "Fjern" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Fjern dette nettverket" @@ -1307,16 +1325,11 @@ msgstr "Fjern dette nettverket" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Beskrivelse" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Design" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Destinasjon" @@ -1324,8 +1337,8 @@ msgstr "Destinasjon" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1342,7 +1355,7 @@ msgstr "Enhet Konfigurasjon" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1410,18 +1423,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "Forkast oppstrøms RFC1918 svar" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "Viser bare pakker som inneholder" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1431,10 +1447,6 @@ msgstr "Avstand Optimalisering" msgid "Distance to farthest network member in meters." msgstr "Avstand i meter til det medlem av nettverket som er lengst unna." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Antennevariasjon" @@ -1465,6 +1477,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Ikke videresend reverserte oppslag for lokale nettverk" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Domene kreves" @@ -1489,10 +1505,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Last ned og installer pakken" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "Last ned sikkerhetskopi" @@ -1501,15 +1513,15 @@ msgstr "Last ned sikkerhetskopi" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Dropbear Instans" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1682,8 +1694,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "Aktiverer Spanning Tree Protocol på denne broen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "Innkapsling modus" @@ -1691,7 +1703,7 @@ msgstr "Innkapsling modus" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Kryptering" @@ -1711,7 +1723,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "Sletter..." @@ -1720,19 +1732,19 @@ msgstr "Sletter..." msgid "Error" msgstr "Feil" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Ethernet Tilslutning" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Ethernet Svitsj" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1740,11 +1752,11 @@ msgstr "" msgid "Expand hosts" msgstr "Utvid vertsliste" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Utgår" @@ -1794,7 +1806,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1812,10 +1824,6 @@ msgstr "Filnavn fra boot image annonsert til klienter" msgid "Filesystem" msgstr "Filsystem" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Filter" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Filtrer private" @@ -1838,10 +1846,6 @@ msgstr "" msgid "Find and join network" msgstr "Finn og koble til nettverk" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Finn pakke" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Fullfør" @@ -1862,11 +1866,11 @@ msgstr "Brannmur Innstillinger" msgid "Firewall Status" msgstr "Brannmur Status" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Firmware Versjon" @@ -1890,7 +1894,7 @@ msgstr "Flash nytt firmware image" msgid "Flash operations" msgstr "Flash operasjoner" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "Flasher..." @@ -1939,7 +1943,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Videresend DHCP trafikk" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1951,7 +1955,7 @@ msgstr "Videresend kringkastingstrafikk" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "Videresending modus" @@ -1964,15 +1968,11 @@ msgstr "Fragmenterings Terskel" msgid "Frame Bursting" msgstr "Frame Bursting" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "Ledig" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Ledig plass" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1981,7 +1981,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "GHz" @@ -1990,8 +1990,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Kun GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Gateway" @@ -1999,7 +1999,7 @@ msgstr "Gateway" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "Gateway porter" @@ -2012,16 +2012,12 @@ msgstr "Generelle Innstillinger" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "Generelt Oppsett" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -2038,7 +2034,7 @@ msgstr "Opprett arkiv" msgid "Generic 802.11%s Wireless Controller" msgstr "Generell 802.11%s Trådløs Kontroller" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "Det oppgitte passordet var ikke korrekt, passord ble ikke endret!" @@ -2046,14 +2042,14 @@ msgstr "Det oppgitte passordet var ikke korrekt, passord ble ikke endret!" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "Gå til passord konfigurasjon..." @@ -2086,7 +2082,7 @@ msgstr "" msgid "Hang Up" msgstr "Slå av" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2098,13 +2094,6 @@ msgstr "" "Her kan du konfigurere grunnleggende aspekter av enheten som f.eks. dens " "vertsnavn eller tidssone." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" -"Her kan du lime inn felles SSH-nøkler(en per linje), for SSH godkjenning." - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2117,7 +2106,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2139,9 +2128,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2196,7 +2185,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4 Brannmur" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2220,7 +2209,7 @@ msgstr "IPv4 gateway" msgid "IPv4 netmask" msgstr "IPv4 nettmaske" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2265,11 +2254,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2291,7 +2280,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "IPv6 gateway" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2442,7 +2431,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "Tidsavbrudd etter innaktivitet" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "Innkommende:" @@ -2462,10 +2451,6 @@ msgstr "Oppstartskript" msgid "Initscripts" msgstr "Oppstartsskript" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Installer" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2478,17 +2463,13 @@ msgstr "Installer pakken %q" msgid "Install protocol extensions..." msgstr "Installer protokoll utvidelser..." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "Installerte pakker" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Grensesnitt" @@ -2565,7 +2546,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "JavaScript kreves!" @@ -2590,7 +2571,7 @@ msgstr "Behold innstillinger" msgid "Kernel Log" msgstr "Kjerne Logg" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Kjerne Versjon" @@ -2636,7 +2617,7 @@ msgstr "LCP ekko feil terskel" msgid "LCP echo interval" msgstr "LCP ekko intervall" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2653,7 +2634,7 @@ msgstr "Språk" msgid "Language and Style" msgstr "Språk og Utseende" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2661,7 +2642,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2704,19 +2685,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2770,7 +2751,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Lytt kun på det angitte grensesnitt, om ingen er angitt lyttes det på alle" @@ -2785,7 +2766,7 @@ msgstr "Lytte-port for innkommende DNS-spørring" msgid "Load" msgstr "Belastning" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Belastning Gjennomsnitt" @@ -2795,6 +2776,10 @@ msgstr "Belastning Gjennomsnitt" msgid "Loading" msgstr "Laster" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2824,7 +2809,7 @@ msgstr "" msgid "Local Startup" msgstr "Lokal Oppstart" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Lokal tid" @@ -2882,11 +2867,11 @@ msgstr "Logging" msgid "Login" msgstr "Logg inn" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Logg ut" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2901,9 +2886,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-Adresse" @@ -2939,7 +2924,7 @@ msgstr "MB/s" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "MHz" @@ -2965,7 +2950,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -3000,16 +2985,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "Maksimalt antall utleide adresser." -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Minne" @@ -3052,11 +3037,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Modus" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3095,7 +3080,7 @@ msgstr "Monterings Enhet" msgid "Mount Point" msgstr "Monterings Punkt" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3121,7 +3106,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "Monterings alternativer" @@ -3192,15 +3177,15 @@ msgstr "Navnet til det nye nettverket" msgid "Navigation" msgstr "Navigasjon" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Nettmaske" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3226,6 +3211,10 @@ msgstr "Nettverk uten grensesnitt." msgid "Next »" msgstr "Neste »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "Ingen DHCP server er konfigurert for dette grensesnittet" @@ -3238,9 +3227,9 @@ msgstr "" msgid "No files found" msgstr "Ingen filer funnet" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "Ingen informasjon tilgjengelig" @@ -3260,18 +3249,18 @@ msgstr "Ingen nettverk er konfigurert på denne enheten" msgid "No network name specified" msgstr "Ingen nettverksnavn spesifisert" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "Ingen pakkelister tilgjengelig" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "Ruteren er ikke passordbeskyttet!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "Ingen regler i denne tabellen" @@ -3284,23 +3273,23 @@ msgstr "" msgid "No zone assigned" msgstr "Ingen sone tilknyttet" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Støy" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Støy:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3326,8 +3315,8 @@ msgstr "Ikke funnet" msgid "Not associated" msgstr "Ikke tilknyttet" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "Ikke tilkoblet" @@ -3351,14 +3340,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "OK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "<abbr title=\"Open PacKaGe Management\">OPKG</abbr>-Konfigurasjon" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3399,7 +3380,7 @@ msgstr "" msgid "On-State Delay" msgstr "Forsinkelse ved tilstand -På-" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "Enten Vertsnavn eller Mac-adresse må oppgis!" @@ -3499,7 +3480,7 @@ msgstr "" msgid "Options" msgstr "Alternativer" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "Andre:" @@ -3507,7 +3488,7 @@ msgstr "Andre:" msgid "Out" msgstr "Ut" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "Ugående:" @@ -3644,7 +3625,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3652,15 +3633,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "Pakken libiwinfo er nødvendig!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "Pakkelistene er eldre enn 24 timer" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Pakkenavn" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Pakker" @@ -3671,13 +3643,13 @@ msgstr "En del av sone %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Passord" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Passord godkjenning" @@ -3689,14 +3661,14 @@ msgstr "Passord for privatnøkkel" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "Passordet er endret!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Sti til CA-sertifikat" @@ -3721,17 +3693,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "Maksimalt:" @@ -3763,7 +3735,7 @@ msgstr "Foreta nullstilling" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "Phy Hastighet:" @@ -3791,16 +3763,11 @@ msgstr "Pakker." msgid "Please enter your username and password." msgstr "Skriv inn ditt brukernavn og passord." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "Policy" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3808,11 +3775,11 @@ msgstr "Port" msgid "Port status:" msgstr "Port status:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3824,7 +3791,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3845,7 +3812,7 @@ msgstr "" "Annta at peer er uten forbindelse om angitt LCP ekko feiler, bruk verdi 0 " "for å overse feil" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3867,7 +3834,7 @@ msgstr "Fortsett" msgid "Processes" msgstr "Prosesser" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3877,9 +3844,9 @@ msgstr "Prot." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protokoll" @@ -3907,6 +3874,14 @@ msgstr "Pseudo Ad-Hoc (ahdemo)" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3916,7 +3891,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "Kvalitet" @@ -3949,7 +3924,7 @@ msgstr "RTS/CTS Terskel" msgid "RX" msgstr "RX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "RX Rate" @@ -4011,7 +3986,7 @@ msgstr "Vil du nullstille alle endringer?" msgid "Really switch protocol?" msgstr "Vil du endre protokoll?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "Tilkoblinger Sanntid" @@ -4019,15 +3994,15 @@ msgstr "Tilkoblinger Sanntid" msgid "Realtime Graphs" msgstr "Grafer i sanntid" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "Belastning Sanntid" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "Trafikk Sanntid" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "Trådløst i sanntid" @@ -4039,7 +4014,7 @@ msgstr "" msgid "Rebind protection" msgstr "Binde beskyttelse" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Omstart" @@ -4101,7 +4076,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Avinstaller" @@ -4165,7 +4139,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Nullstill" @@ -4208,6 +4181,8 @@ msgid "Restore backup" msgstr "Gjenopprett sikkerhetskopi" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "Vis/Skjul passord" @@ -4217,15 +4192,15 @@ msgstr "Vis/Skjul passord" msgid "Revert" msgstr "Tilbakestill" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4254,7 +4229,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "Ruter Passord" @@ -4276,11 +4252,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "Kjør filsystem sjekk før montering av enheten" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "Kjør filsystem sjekk" @@ -4288,11 +4264,12 @@ msgstr "Kjør filsystem sjekk" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH Tilgang" @@ -4308,7 +4285,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "SSH-Nøkler" @@ -4317,7 +4295,7 @@ msgstr "SSH-Nøkler" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4328,6 +4306,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Lagre" @@ -4344,6 +4323,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Skann" @@ -4352,7 +4335,7 @@ msgstr "Skann" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Planlagte Oppgaver" @@ -4365,7 +4348,7 @@ msgstr "Seksjon lagt til" msgid "Section removed" msgstr "Seksjon fjernet" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "Se \"mount\" manpage for detaljer" @@ -4410,6 +4393,14 @@ msgstr "Tjeneste type" msgid "Services" msgstr "Tjenester" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4433,11 +4424,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "Oppsett DHCP server" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4457,22 +4448,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "Slå av dette grensesnittet" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Signal" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "Signal:" @@ -4480,10 +4471,6 @@ msgstr "Signal:" msgid "Size" msgstr "Størrelse" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4511,12 +4498,7 @@ msgstr "Gå til navigasjon" msgid "Slot time" msgstr "Slot tid" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Programvare" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4542,7 +4524,7 @@ msgstr "" "flashes manuelt. Viser til wiki for installering av firmare på forskjellige " "enheter." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4552,7 +4534,7 @@ msgstr "Kilde" msgid "Specifies the directory the device is attached to" msgstr "Hvor lagrings enheten blir tilsluttet filsystemet (f.eks. /mnt/sda1)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "Angir den lyttende porten for denne <em>Dropbear</em> instansen" @@ -4599,7 +4581,7 @@ msgstr "Start" msgid "Start priority" msgstr "Start prioritet" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4607,7 +4589,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "Oppstart" @@ -4619,7 +4601,7 @@ msgstr "Statiske IPv4 Ruter" msgid "Static IPv6 Routes" msgstr "Statiske IPv6 Ruter" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Statiske Leier" @@ -4627,11 +4609,11 @@ msgstr "Statiske Leier" msgid "Static Routes" msgstr "Statiske Ruter" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "Statisk adresse" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4648,8 +4630,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Status" @@ -4674,7 +4655,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4704,7 +4685,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4722,7 +4703,7 @@ msgid "Synchronizing..." msgstr "Synkroniser..." #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4742,7 +4723,7 @@ msgstr "System Egenskaper" msgid "System log buffer size" msgstr "System logg buffer størrelse" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4760,7 +4741,7 @@ msgstr "TFTP server roten" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "TX rate" @@ -4845,7 +4826,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4892,6 +4873,16 @@ msgstr "Følgende endringer er forkastet" msgid "The following rules are currently active on this system." msgstr "Følgende regler er aktiver på systemet." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "Det angitte nettverksnavnet er ikke unikt" @@ -4946,7 +4937,7 @@ msgstr "Den valgte protokoll må ha en enhet tilknyttet" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -4954,7 +4945,7 @@ msgstr "" "Systemet sletter konfigurasjonspartisjonen nå, enheten vil bli startet på " "nytt når dette er utført." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -4966,6 +4957,10 @@ msgstr "" "du prøver å koble til igjen. Det kan være nødvendig å fornye ip-adressen til " "datamaskinen din for å nå enheten på nytt. (avhengig av innstillingene dine)" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -4974,12 +4969,16 @@ msgstr "" "Den opplastede programvaren er av et format som ikke støttes. Sørg for at du " "velger det generelle firmware-bildet for din plattform." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Tema" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "Det er ingen aktive leieavtaler." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -5003,7 +5002,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5087,7 +5086,7 @@ msgid "" "their status." msgstr "Denne listen gir en oversikt over kjørende prosesser og deres status." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "" "Denne siden gir en oversikt over gjeldende aktive nettverkstilkoblinger." @@ -5114,6 +5113,10 @@ msgstr "" msgid "Timezone" msgstr "Tidssone" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5125,12 +5128,12 @@ msgstr "" "tilstand, klikker du på \"Utfør nullstilling\" (kun mulig på squashfs " "firmwarer)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Totalt Tilgjengelig" @@ -5145,7 +5148,7 @@ msgstr "Traceroute" msgid "Traffic" msgstr "Trafikk" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Overføring" @@ -5180,7 +5183,7 @@ msgstr "Utløsende Tilstand" msgid "Tunnel ID" msgstr "Tunnel ID" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "Tunnel grensesnitt" @@ -5195,12 +5198,12 @@ msgid "Tx-Power" msgstr "Tx-Styrke" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Type" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5254,36 +5257,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "Ukjent" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "Ukjent feil, passordet ble ikke endret!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "Uhåndtert" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Ulagrede Endringer" @@ -5303,10 +5306,6 @@ msgstr "Protokoll type er ikke støttet." msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "Oppdater lister" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5327,7 +5326,7 @@ msgstr "Opplastet Fil" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Oppetid" @@ -5443,7 +5442,7 @@ msgstr "Bruk gateway metrikk" msgid "Use routing table" msgstr "Bruk rutingtabellen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5484,11 +5483,11 @@ msgstr "" msgid "Username" msgstr "Brukernavn" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5538,11 +5537,6 @@ msgstr "Leverandør klasse som sendes ved DHCP spørring" msgid "Verify" msgstr "Bekreft" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Versjon" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5593,7 +5587,7 @@ msgstr "Venter på at endringer utføres..." msgid "Waiting for command to complete..." msgstr "Venter på at kommando fullføres..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5626,16 +5620,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "Trådløs" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Trådløs Tilslutning" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Trådløst Nettverk" @@ -5650,13 +5644,13 @@ msgstr "Trådløs Sikkerhet" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "Trådløs er deaktiver" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "Trådløs er ikke tilknyttet" @@ -5680,6 +5674,10 @@ msgstr "Skriv mottatte DNS forespørsler til syslog" msgid "Write system log to file" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5695,7 +5693,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5729,9 +5727,9 @@ msgstr "" msgid "any" msgstr "enhver" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5748,7 +5746,7 @@ msgstr "auto" msgid "baseT" msgstr "baseT" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "brokoblet" @@ -5767,24 +5765,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "Oppretter en bro mellom angitte grensesnitt" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "dB" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "dBm" @@ -5826,7 +5824,7 @@ msgstr "full-dupleks" msgid "half-duplex" msgstr "halv-dupleks" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5848,44 +5846,44 @@ msgstr "Dersom målet er et nettverk" msgid "input" msgstr "inndata" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "kB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "kB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "kbit/s" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5911,19 +5909,10 @@ msgstr "nei" msgid "no link" msgstr "ingen forbindelse" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "ingen" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5935,7 +5924,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "av" @@ -5943,11 +5932,11 @@ msgstr "av" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "på" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5965,11 +5954,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5983,7 +5972,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "rutet" @@ -6017,7 +6006,7 @@ msgstr "tagget" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -6044,159 +6033,159 @@ msgstr "uspesifisert --eller-- opprett:" msgid "untagged" msgstr "utagget" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6210,6 +6199,72 @@ msgstr "ja" msgid "« Back" msgstr "« Tilbake" +#~ msgid "" +#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " +#~ "authentication." +#~ msgstr "" +#~ "Her kan du lime inn felles SSH-nøkler(en per linje), for SSH godkjenning." + +#~ msgid "Password successfully changed!" +#~ msgstr "Passordet er endret!" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "Ukjent feil, passordet ble ikke endret!" + +#~ msgid "Design" +#~ msgstr "Design" + +#~ msgid "Available packages" +#~ msgstr "Tilgjengelige pakker" + +#~ msgid "Displaying only packages containing" +#~ msgstr "Viser bare pakker som inneholder" + +#~ msgid "Download and install package" +#~ msgstr "Last ned og installer pakken" + +#~ msgid "Filter" +#~ msgstr "Filter" + +#~ msgid "Find package" +#~ msgstr "Finn pakke" + +#~ msgid "Free space" +#~ msgstr "Ledig plass" + +#~ msgid "Install" +#~ msgstr "Installer" + +#~ msgid "Installed packages" +#~ msgstr "Installerte pakker" + +#~ msgid "No package lists available" +#~ msgstr "Ingen pakkelister tilgjengelig" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "OPKG-Configuration" +#~ msgstr "<abbr title=\"Open PacKaGe Management\">OPKG</abbr>-Konfigurasjon" + +#~ msgid "Package lists are older than 24 hours" +#~ msgstr "Pakkelistene er eldre enn 24 timer" + +#~ msgid "Package name" +#~ msgstr "Pakkenavn" + +#~ msgid "Software" +#~ msgstr "Programvare" + +#~ msgid "Update lists" +#~ msgstr "Oppdater lister" + +#~ msgid "Version" +#~ msgstr "Versjon" + +#~ msgid "none" +#~ msgstr "ingen" + #~ msgid "Disable DNS setup" #~ msgstr "Deaktiver DNS oppsett" diff --git a/modules/luci-base/po/pl/base.po b/modules/luci-base/po/pl/base.po index 5cb633330e..342a9b8233 100644 --- a/modules/luci-base/po/pl/base.po +++ b/modules/luci-base/po/pl/base.po @@ -14,10 +14,14 @@ msgstr "" "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.6\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "%s jest nieotagowany w wielu grupach VLAN!" @@ -50,16 +54,16 @@ msgstr "(brak podłączonych interfejsów)" msgid "-- Additional Field --" msgstr "-- Dodatkowe pole --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Proszę wybrać --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- własne --" @@ -83,11 +87,11 @@ msgstr "-- dopasuj po uuid --" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Obciążenie 1 min.:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "Obciążenie 15 min.:" @@ -99,7 +103,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "464XLAT (CLAT)" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "Obciążenie 5 min.:" @@ -155,7 +159,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Adres <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" @@ -181,11 +185,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "Brama <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "Sufiks <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>(hex)" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Konfiguracja diod <abbr title=\"Light Emitting Diode\">LED</abbr>" @@ -194,12 +198,12 @@ msgstr "Konfiguracja diod <abbr title=\"Light Emitting Diode\">LED</abbr>" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Nazwa diody <abbr title=\"Light Emitting Diode\">LED</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "Adres <abbr title=\"Media Access Control\">MAC</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -231,19 +235,23 @@ msgstr "" "<br/>Uwaga: musisz ręcznie zrestartować usługę cron, jeśli plik crontab był " "pusty przed edycją." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "ADSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -257,27 +265,27 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "Próg powtórzeń ARP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "Mosty ATM" # Nie wiem czy to powinno się tłumaczyć wg. mnie lepiej zostawić po angielsku -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "Identyfikator kanału wirtualnego ATM (VCI)" # j.w. -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "Identyfikator ścieżki wirtualnej ATM (VPI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -287,12 +295,12 @@ msgstr "" "wirtualne interfejsy sieciowe systemu Linux, które mogą być używane w " "połączeniu z protokołem DHCP lub PPP w celu polączenia się z siecią dostawcy." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "Numer urządzenia ATM" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "ID dostawcy systemu ATU-C" @@ -308,8 +316,6 @@ msgstr "Punkt dostępowy" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Akcje" @@ -325,8 +331,8 @@ msgstr "" "Aktywne trasy routingu <abbr title=\"Internet Protocol Version 6\">IPv6</" "abbr>" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Aktywne połączenia" @@ -353,6 +359,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Dodaj" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "Dodaj lokalny sufiks domeny do nazw urządzeń z pliku hosts" @@ -369,8 +382,8 @@ msgstr "Dodatkowe pliki Hosts" msgid "Additional servers file" msgstr "Dodatkowe pliki serwera" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Adres" @@ -387,7 +400,7 @@ msgstr "Zarządzanie" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -395,7 +408,7 @@ msgstr "Zarządzanie" msgid "Advanced Settings" msgstr "Ustawienia zaawansowane" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "Agregacja siły transmisji (ACTATP)" @@ -403,7 +416,7 @@ msgstr "Agregacja siły transmisji (ACTATP)" msgid "Alert" msgstr "Alarm" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "Alias Interfejsu" @@ -427,7 +440,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "Przydzielaj adresy IP po kolei" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Pozwól na logowanie <abbr title=\"Secure Shell\">SSH</abbr>" @@ -453,16 +466,16 @@ msgstr "Pozwól tylko wymienionym" msgid "Allow localhost" msgstr "Pozwól tylko sobie (localhost)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" "Zezwalaj zdalnym hostom na łączenie się z lokalnie przekazywanymi portami SSH" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "Zezwól na logowanie roota przy pomocy hasła" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "Pozwól użytkownikowi <em>root</em> na logowanie się przy pomocy hasła" @@ -488,64 +501,64 @@ msgstr "" "Zawsze używaj kanału 40 MHz, nawet jeśli kanał dodatkowy nachodzi na inny. " "Używanie tej opcji nie jest zgodne z IEEE 802.11n-2009!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -593,15 +606,15 @@ msgstr "Ustawienia anteny" msgid "Any zone" msgstr "Dowolna strefa" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "Architektura" @@ -626,11 +639,11 @@ msgstr "" "interfejsu" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Połączone stacje" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "Połączeni" @@ -661,8 +674,8 @@ msgstr "Wymagana autoryzacja" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Automatyczne odświeżanie" @@ -705,29 +718,25 @@ msgstr "" msgid "Available" msgstr "Dostępne" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Dostępne pakiety" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Średnia:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -738,7 +747,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -768,7 +777,7 @@ msgstr "Wróć do wyników skanowania" msgid "Backup" msgstr "Kopia zapasowa" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Kopia zapasowa / aktualizacja firmware" @@ -799,14 +808,15 @@ msgstr "" "Zawiera ona zmienione pliki konfiguracyjne oznaczone przez opkg, podstawowe " "pliki systemowe, oraz pliki oznaczone do kopiowania przez użytkownika." -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" -"Powiąż tylko ze specyficznymi interfejsami, a nie z adresami wieloznacznymi." #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind the tunnel to this interface (optional)." @@ -814,7 +824,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Szybkość transmisji" @@ -822,7 +832,7 @@ msgstr "Szybkość transmisji" msgid "Bogus NX Domain Override" msgstr "Podrób statystyki NXDOMAIN" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Most" @@ -830,7 +840,7 @@ msgstr "Most" msgid "Bridge interfaces" msgstr "Interfejs mostu" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "Numer Mostu (urządzenia)" @@ -846,18 +856,10 @@ msgstr "Bezprzewodowy kontroler Broadcom 802.11%s" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Bezprzewodowy kontroler Broadcom BCM%04x 802.11" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "Buforowana" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" -"Kompiluj/rozpowszechniaj określone definicje źródeł. Ten plik NIE zostanie " -"zachowany w procesie sysupgrade" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -872,6 +874,7 @@ msgstr "Połączenie nieudane" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Anuluj" @@ -894,6 +897,12 @@ msgstr "Uwaga: Zostanie wymuszone uaktualnienie systemu" msgid "Chain" msgstr "Łańcuch" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -903,20 +912,24 @@ msgstr "Zmiany" msgid "Changes applied." msgstr "Zmiany zostały zastosowane." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "Zmiany zostały cofnięte." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "Zmienia hasło administratora" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Kanał" @@ -999,6 +1012,11 @@ msgstr "Klient" msgid "Client ID to send when requesting DHCP" msgstr "Nazwa (ID) klienta do wysłania podczas negocjacji DHCP" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -1018,16 +1036,16 @@ msgstr "Zamknij listę..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1063,8 +1081,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Konfiguracja" @@ -1076,15 +1092,15 @@ msgstr "Konfiguracja nieudana" msgid "Configuration files will be kept" msgstr "Pliki konfiguracyjne zostaną zachowane" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "Konfiguracja została zastosowana." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "Konfiguracja została wycofana!" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Potwierdzenie" @@ -1093,8 +1109,8 @@ msgid "Connect" msgstr "Połącz" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Połączony" @@ -1110,7 +1126,7 @@ msgstr "Próba połączenia nieudana" msgid "Connections" msgstr "Połączenia" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1168,18 +1184,6 @@ msgstr "Interfejs niestandardowy" msgid "Custom delegated IPv6-prefix" msgstr "Delegowany niestandardowy prefiks IPv6" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" -"Niestandardowe definicje plików danych, np. prywatne źródła. Ten plik może " -"być zachowany podczas sysupgrade. " - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "Niestandardowe źródła" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1206,7 +1210,7 @@ msgstr "Serwer DHCP" msgid "DHCP and DNS" msgstr "DHCP i DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "Klient DHCP" @@ -1226,16 +1230,16 @@ msgstr "Tryb DHCPv6" msgid "DHCPv6-Service" msgstr "Serwis DHCPv6" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1263,16 +1267,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "Status DSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1284,7 +1288,7 @@ msgstr "Interwał DTIM" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "Szybkość przesyłania danych" @@ -1298,6 +1302,10 @@ msgstr "Debug" msgid "Default %d" msgstr "Domyślne %d" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1334,6 +1342,11 @@ msgstr "" msgid "Delete" msgstr "Usuń" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Usuń tą sieć" @@ -1342,16 +1355,11 @@ msgstr "Usuń tą sieć" msgid "Delivery Traffic Indication Message Interval" msgstr "Interwał komunikatu o wskazaniu dostawy ruchu" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Opis" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Motyw" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Przeznaczenie" @@ -1359,8 +1367,8 @@ msgstr "Przeznaczenie" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1377,7 +1385,7 @@ msgstr "Konfiguracja urządzenia" msgid "Device is rebooting..." msgstr "Urządzenie jest uruchamiane ponownie ..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "Urządzenie nieosiągalne!" @@ -1445,18 +1453,21 @@ msgstr "Rozłączaj przy niskim stanie ramek ACK" msgid "Discard upstream RFC1918 responses" msgstr "Odrzuć wychodzące odpowiedzi RFC1918" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "Próba rozłączenia nie powiodła się" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "Pokazuję tylko paczki zawierające" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1466,10 +1477,6 @@ msgstr "Optymalizacja odległości" msgid "Distance to farthest network member in meters." msgstr "Odległość do najdalej oddalonego członka sieci w metrach." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "Dystrybucja źródeł" - # Jak poprzednio trzymam się konwencji #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" @@ -1501,6 +1508,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Nie przekazuj odwrotnych lookup`ów do sieci lokalnych" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Wymagana domena" @@ -1525,10 +1536,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Pobierz i zainstaluj pakiet" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "Pobierz kopię zapasową" @@ -1537,15 +1544,15 @@ msgstr "Pobierz kopię zapasową" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Usługa Dropbear" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1725,8 +1732,8 @@ msgstr "" "Włącz protokół <abbr title=\"Spanning Tree Protocol\">STP</abbr> na tym " "moście" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "Sposób enkapsulacji" @@ -1734,7 +1741,7 @@ msgstr "Sposób enkapsulacji" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Szyfrowanie" @@ -1754,7 +1761,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "Usuwanie..." @@ -1763,19 +1770,19 @@ msgstr "Usuwanie..." msgid "Error" msgstr "Błąd" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "Ilość błędów (ES)" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Karta Ethernet" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Switch Ethernet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "Wyklucz interfejsy" @@ -1783,11 +1790,11 @@ msgstr "Wyklucz interfejsy" msgid "Expand hosts" msgstr "Rozwiń hosty" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Wygasa" @@ -1838,7 +1845,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "Nie udało się zatwierdzić w ciągu %ds, czekam na wycofanie…" @@ -1856,10 +1863,6 @@ msgstr "Rozgłoszono nazwę pliku obrazu startowego do klientów" msgid "Filesystem" msgstr "System plików" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Filtr" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Filtruj prywatne" @@ -1882,10 +1885,6 @@ msgstr "" msgid "Find and join network" msgstr "Znajdź i podłącz się do sieci" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Znajdź pakiet" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Zakończ" @@ -1906,11 +1905,11 @@ msgstr "Ustawienia firewalla" msgid "Firewall Status" msgstr "Stan firewalla" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "Plik firmware" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Wersja firmware" @@ -1934,7 +1933,7 @@ msgstr "Wgraj nowy firmware" msgid "Flash operations" msgstr "Operacje aktualizacji" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "Flashowanie..." @@ -1983,7 +1982,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Przekazuj ruch DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "Próby korekcji błędów (FECS)" @@ -1995,7 +1994,7 @@ msgstr "Przekazuj broadcast`y" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "Tryb przekazywania" @@ -2008,15 +2007,11 @@ msgstr "Próg Fragmentacji" msgid "Frame Bursting" msgstr "Dzielenie ramek" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "Wolna" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Wolna przestrzeń" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -2025,7 +2020,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "GHz" @@ -2034,8 +2029,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Tylko GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Brama" @@ -2043,7 +2038,7 @@ msgstr "Brama" msgid "Gateway address is invalid" msgstr "Adres bramy jest nieprawidłowy" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "Porty bramy" @@ -2056,16 +2051,12 @@ msgstr "Ustawienia główne" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "Ustawienia podstawowe" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "Ogólne opcje dla opkg" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "Wygeneruj konfigurację" @@ -2082,7 +2073,7 @@ msgstr "Twórz archiwum" msgid "Generic 802.11%s Wireless Controller" msgstr "Ogólny bezprzewodowy kontroler 802.11%s" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "" "Hasło nie zostało zmienione, wpisane poprzednie hasło routera jest " @@ -2092,14 +2083,14 @@ msgstr "" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "Globalne opcje sieciowe" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "Przejdź do konfiguracji hasła..." @@ -2132,7 +2123,7 @@ msgstr "" msgid "Hang Up" msgstr "Rozłącz" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "Błędy kodu nagłówka (HEC)" @@ -2144,15 +2135,6 @@ msgstr "" "Tutaj możesz skonfigurować podstawowe ustawienia twojego urządzenia, np. " "nazwę hosta, strefę czasową." -# nie ma słowa "autentykacji". Uwierzytelnianie! -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" -"Tutaj wklej swoje klucze publiczne SSH (po jednym w linii), dla " -"uwierzytelniania SSH" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2167,7 +2149,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2188,9 +2170,9 @@ msgid "Host-Uniq tag content" msgstr "Zawartość znacznika Host-Uniq" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2245,7 +2227,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Firewall IPv4" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "Źródłowy IPv4" @@ -2269,7 +2251,7 @@ msgstr "Brama IPv4" msgid "IPv4 netmask" msgstr "Maska IPv4" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2314,11 +2296,11 @@ msgstr "Sąsiedztwo IPv6" msgid "IPv6 Settings" msgstr "Ustawienia IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "IPv6 Prefiks-ULA" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "Źródłowy IPv6" @@ -2340,7 +2322,7 @@ msgstr "Długość przydziału IPv6" msgid "IPv6 gateway" msgstr "Brama IPv6" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2497,7 +2479,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "Czas bezczynności" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "Przychodzący:" @@ -2517,10 +2499,6 @@ msgstr "Skrypt startowy" msgid "Initscripts" msgstr "Skrypty startowe" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Instaluj" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2534,17 +2512,13 @@ msgstr "Instaluj pakiet %q" msgid "Install protocol extensions..." msgstr "Instaluj rozszerzenia protokołów..." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "Zainstalowane pakiety" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Interfejs" @@ -2621,7 +2595,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "JavaScript jest wymagany!" @@ -2646,7 +2620,7 @@ msgstr "Zachowaj ustawienia" msgid "Kernel Log" msgstr "Log jądra" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Wersja jądra" @@ -2692,7 +2666,7 @@ msgstr "Próg błędu echa LCP" msgid "LCP echo interval" msgstr "Interwał echa LCP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2709,7 +2683,7 @@ msgstr "Język" msgid "Language and Style" msgstr "Wygląd i język" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "Opoźnienie" @@ -2717,7 +2691,7 @@ msgstr "Opoźnienie" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "Czas dzierżawy" @@ -2761,19 +2735,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "Ogranicz nasłuchiwanie do tych interfesjów, oraz loopbacku." -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "Tłumienie linii (LATN)" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "Tryb linii" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "Stan linii" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "Czas działania linii" @@ -2827,7 +2801,7 @@ msgstr "Nasłuchuj interfejs" msgid "Listen Port" msgstr "Nasłuchuj port" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Słuchaj tylko na podanym interfejsie, lub jeśli nie podano na wszystkich" @@ -2842,7 +2816,7 @@ msgstr "Port nasłuchu dla przychodzących zapytań DNS" msgid "Load" msgstr "Obciążenie" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Średnie obciążenie" @@ -2852,6 +2826,10 @@ msgstr "Średnie obciążenie" msgid "Loading" msgstr "Ładowanie" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "Lokalny adres IP jest nieprawidłowy" @@ -2881,7 +2859,7 @@ msgstr "Tylko serwis lokalny" msgid "Local Startup" msgstr "Lokalny autostart" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Czas lokalny" @@ -2940,11 +2918,11 @@ msgstr "Logowanie" msgid "Login" msgstr "Zaloguj" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Wyloguj" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "Utrata sygnału (LOSS)" @@ -2959,9 +2937,9 @@ msgid "MAC" msgstr "MAC" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "Adres MAC" @@ -2997,7 +2975,7 @@ msgstr "MB/s" msgid "MD5" msgstr "MD5" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "MHz" @@ -3025,7 +3003,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Max. Osiągalna przepustowość danych (ATTNDR)" @@ -3060,16 +3038,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "Maksymalna liczba dzierżawionych adresów." -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Pamięć" @@ -3112,11 +3090,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Tryb" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "Model" @@ -3155,7 +3133,7 @@ msgstr "Wpis montowania" msgid "Mount Point" msgstr "Punkt montowania" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3181,7 +3159,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "Opcje montowania" @@ -3252,15 +3230,15 @@ msgstr "Nazwa nowej sieci" msgid "Navigation" msgstr "Nawigacja" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Maska sieci" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3286,6 +3264,10 @@ msgstr "Sieć bez interfejsów" msgid "Next »" msgstr "Następna »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "Brak skonfigurowanego serwera DHCP dla tego interfejsu" @@ -3298,9 +3280,9 @@ msgstr "" msgid "No files found" msgstr "Nie znaleziono plików" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "Brak dostępnych informacji" @@ -3320,18 +3302,18 @@ msgstr "Brak skonfigurowanych sieci na tym urządzeniu" msgid "No network name specified" msgstr "Nie podano nazwy sieci" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "Lista pakietów nie jest dostępna" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "Nie ustawiono hasła!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "Brak zasad w tym łańcuchu" @@ -3344,23 +3326,23 @@ msgstr "Brak wyników skanowania..." msgid "No zone assigned" msgstr "Brak przypisanej strefy" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Szum" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "Margines szumów (SNR)" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Szum:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "Nieprzewidziane błedy CRC (CRC_P)" @@ -3386,8 +3368,8 @@ msgstr "Nie znaleziono" msgid "Not associated" msgstr "Nie powiązany" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "Nie podłączony" @@ -3413,14 +3395,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "OK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "Konfiguracja OPKG" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3460,7 +3434,7 @@ msgstr "" msgid "On-State Delay" msgstr "Zwłoka włączenia" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "Nazwa hosta lub adres MAC musu być podany!" @@ -3564,7 +3538,7 @@ msgstr "" msgid "Options" msgstr "Opcje" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "Inne:" @@ -3572,7 +3546,7 @@ msgstr "Inne:" msgid "Out" msgstr "Wychodzące" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "Wychodzący:" @@ -3709,7 +3683,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3717,15 +3691,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "Wymagany pakiet libiwinfo!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "Lista pakietów jest starsza niż 24 godziny" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Nazwa pakietu" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Pakiety" @@ -3736,13 +3701,13 @@ msgstr "Część strefy %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Hasło" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Uwierzytelnianie hasłem" @@ -3754,14 +3719,14 @@ msgstr "Hasło lub klucz prywatny" msgid "Password of inner Private Key" msgstr "Wewnętrzne hasło klucza prywatnego" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "Pomyślnie zmieniono hasło!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Ścieżka do certyfikatu CA" @@ -3786,17 +3751,17 @@ msgstr "Ścieżka do wewnętrznego certyfikatu Klienta" msgid "Path to inner Private Key" msgstr "Ścieżka do wewnętrznego klucza prywatnego " -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "Szczyt:" @@ -3828,7 +3793,7 @@ msgstr "Wykonaj reset" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "Szybkość Phy:" @@ -3856,16 +3821,11 @@ msgstr "Pktw." msgid "Please enter your username and password." msgstr "Proszę wprowadź swój login i hasło." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "Zasada" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3873,11 +3833,11 @@ msgstr "Port" msgid "Port status:" msgstr "Status portu:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "Tryb zarządzania energią" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "Przewidziane błedy CRC (CRCP_P)" @@ -3889,7 +3849,7 @@ msgstr "Preferuj LTE" msgid "Prefer UMTS" msgstr "Preferuj UMTS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3910,7 +3870,7 @@ msgstr "" "Przypuszczaj że klient może być martwy po zadanej ilości błedów echa LCP, " "wpisz 0 aby zignorować te błędy" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "Zapobiegaj nasłuchiwaniu na tych interfejsach." @@ -3932,7 +3892,7 @@ msgstr "Wykonaj" msgid "Processes" msgstr "Procesy" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "Profil" @@ -3942,9 +3902,9 @@ msgstr "Prot." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protokół" @@ -3972,6 +3932,14 @@ msgstr "Pseudo Ad-Hoc (ahdemo)" msgid "Public Key" msgstr "Klucz publiczny" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3981,7 +3949,7 @@ msgid "QMI Cellular" msgstr "Komórkowy QMI" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "Jakość" @@ -4016,7 +3984,7 @@ msgstr "Próg RTS/CTS" msgid "RX" msgstr "RX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "Szybkość RX" @@ -4081,7 +4049,7 @@ msgstr "Naprawdę usunąć wszelkie zmiany?" msgid "Really switch protocol?" msgstr "Naprawdę zmienić protokół?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "Połączenia w czasie rzeczywistym" @@ -4089,15 +4057,15 @@ msgstr "Połączenia w czasie rzeczywistym" msgid "Realtime Graphs" msgstr "Wykresy w czasie rzeczywistym" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "Obciążenie w czasie rzeczywistym" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "Ruch w czasie rzeczywistym" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "Wi-Fi w czasie rzeczywistym" @@ -4109,7 +4077,7 @@ msgstr "Termin reasocjacji" msgid "Rebind protection" msgstr "Przypisz ochronę" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Restart" @@ -4171,7 +4139,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "Zdalny adres IPv4 lub FQDN" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Usuń" @@ -4237,7 +4204,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Resetuj" @@ -4280,6 +4246,8 @@ msgid "Restore backup" msgstr "Przywróć kopię zapasową" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "Odsłoń/Ukryj hasło" @@ -4289,15 +4257,15 @@ msgstr "Odsłoń/Ukryj hasło" msgid "Revert" msgstr "Przywróć" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "Przywróć zmiany" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "Żądanie powrotu nie powiodło się ze statusem <code>%h</code>" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "Przywracanie konfiguracji…" @@ -4326,7 +4294,8 @@ msgstr "Typ trasy" msgid "Router Advertisement-Service" msgstr "Serwis rozgłoszeniowy routera" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "Hasło routera" @@ -4348,12 +4317,12 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "" "Sprawdź czy system plików nie zawiera błędów przed zamontowaniem urządzenia" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "Sprawdź czy system plików nie zawiera błędów" @@ -4361,11 +4330,12 @@ msgstr "Sprawdź czy system plików nie zawiera błędów" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "SNR" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Dostęp SSH" @@ -4381,7 +4351,8 @@ msgstr "Port serwera SSH" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "Klucze SSH" @@ -4390,7 +4361,7 @@ msgstr "Klucze SSH" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4401,6 +4372,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Zapisz" @@ -4417,6 +4389,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Skanuj" @@ -4425,7 +4401,7 @@ msgstr "Skanuj" msgid "Scan request failed" msgstr "Próba skanowania nie powiodła się" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Zaplanowane Zadania" @@ -4438,7 +4414,7 @@ msgstr "Dodano sekcję" msgid "Section removed" msgstr "Usunięto sekcję" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "Aby poznać szczegóły przeczytaj stronę instrukcji \"mount\"" @@ -4486,6 +4462,14 @@ msgstr "Typ serwisu" msgid "Services" msgstr "Serwisy" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4511,11 +4495,11 @@ msgstr "Ustawienie trybu nie powiodło się" msgid "Setup DHCP Server" msgstr "Ustawienia serwera DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "Ilość poważnych błedów (SES)" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4535,22 +4519,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "Wyłącz ten interfejs" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Sygnał" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "Tłumienie sygnału (SATN)" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "Sygnał:" @@ -4558,10 +4542,6 @@ msgstr "Sygnał:" msgid "Size" msgstr "Rozmiar" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "Rozmiar (.ipk)" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "Rozmiar pamięci podręcznej zapytań DNS" @@ -4589,12 +4569,7 @@ msgstr "Pomiń do nawigacji" msgid "Slot time" msgstr "Szczelina czasowa" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Oprogramowanie" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "Programowy VLAN" @@ -4620,7 +4595,7 @@ msgstr "" "być wgrany ręcznie. Sprawdź stronę wiki, aby uzyskać instrukcję dla danego " "urządzenia." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4630,7 +4605,7 @@ msgstr "Źródło" msgid "Specifies the directory the device is attached to" msgstr "Podaje katalog do którego jest podłączone urządzenie" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "Określa port nasłuchu dla tej instancji <em>Dropbear</em>" @@ -4679,7 +4654,7 @@ msgstr "Uruchomienie" msgid "Start priority" msgstr "Priorytet uruchomienia" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "Zatwierdzanie konfiguracji…" @@ -4687,7 +4662,7 @@ msgstr "Zatwierdzanie konfiguracji…" msgid "Starting wireless scan..." msgstr "Rozpoczynanie skanowania..." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "Autostart" @@ -4699,7 +4674,7 @@ msgstr "Statyczne ścieżki routingu IPv4" msgid "Static IPv6 Routes" msgstr "Statyczne ścieżki routingu IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Dzierżawy statyczne" @@ -4707,11 +4682,11 @@ msgstr "Dzierżawy statyczne" msgid "Static Routes" msgstr "Statyczne ścieżki routingu" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "Stały adres" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4729,8 +4704,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Status" @@ -4755,7 +4729,7 @@ msgstr "Pomiń rejestrowanie" msgid "Suppress logging of the routine operation of these protocols" msgstr "Pomiń rejestrowanie rutynowych operacji dla tych protokołów" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4785,7 +4759,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4803,7 +4777,7 @@ msgid "Synchronizing..." msgstr "Synchronizacja..." #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4824,7 +4798,7 @@ msgstr "Właściwości systemu" msgid "System log buffer size" msgstr "Rozmiar bufora loga systemu" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4842,7 +4816,7 @@ msgstr "Root serwera TFTP" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "Szybkość TX" @@ -4927,7 +4901,7 @@ msgstr "Archiwum kopii zapasowej nie wygląda na prawidłowe." msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4975,6 +4949,16 @@ msgstr "Następujące zmiany zostały odrzucone" msgid "The following rules are currently active on this system." msgstr "Następujące zasady są obecnie aktywne w tym systemie." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "Podana sieć nie jest unikalna" @@ -5031,14 +5015,14 @@ msgstr "Wybrany protokół potrzebuje przypisanego urządzenia" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" "System usuwa teraz partycję konfiguracji i zrestartuje się po zakończeniu." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -5051,6 +5035,10 @@ msgstr "" "ustawień może być konieczne odnowienie adresu Twojego komputera, aby dostać " "się do urządzenia." +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -5059,12 +5047,16 @@ msgstr "" "Przesłany plik obrazu nie zawiera obsługiwanego formatu. Upewnij się, że " "wybrałeś odpowiedni format obrazu dla danej platformy." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Motyw" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "Brak aktywnych dzierżaw." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "Brak zmian do zastosowania." @@ -5088,7 +5080,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5180,7 +5172,7 @@ msgstr "" "Poniższa lista przedstawia aktualnie uruchomione procesy systemowe i ich " "status." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "Poniższa strona przedstawia aktualnie aktywne połączenia sieciowe." @@ -5206,6 +5198,10 @@ msgstr "" msgid "Timezone" msgstr "Strefa czasowa" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5216,12 +5212,12 @@ msgstr "" "utworzoną kopię zapasową. Aby przywrócić ustawienia domyślne wciśnij " "\"Wykonaj reset\" (możliwe tylko w przypadku obrazu squashfs)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "Ton" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Całkowicie dostępna" @@ -5236,7 +5232,7 @@ msgstr "Trasa routowania" msgid "Traffic" msgstr "Ruch" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Transfer" @@ -5271,7 +5267,7 @@ msgstr "Rodzaj Triggeru" msgid "Tunnel ID" msgstr "Numer identyfikacyjny tunelu" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "Interfejs tunelu" @@ -5286,12 +5282,12 @@ msgid "Tx-Power" msgstr "Moc nadawania" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Typ" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5345,36 +5341,36 @@ msgstr "Nie można rozpoznać nazwy AFTR hosta" msgid "Unable to resolve peer host name" msgstr "Nie można rozpoznać nazwy peera" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "Czas niedostępnośći (UAS)" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "Nieznany" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "Nieznany błąd, hasło nie zostało zmienione!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "Nieznany błąd (%s)" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "Niezarządzalny" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "Odmontuj" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Niezapisane zmiany" @@ -5394,10 +5390,6 @@ msgstr "Nieobsługiwany typ protokołu." msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "Aktualizuj listy" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5419,7 +5411,7 @@ msgstr "Załaduj plik" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Czas pracy" @@ -5535,7 +5527,7 @@ msgstr "Użyj metryki bramy" msgid "Use routing table" msgstr "Użyj tabeli routingu" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5577,11 +5569,11 @@ msgstr "Klucz użytkownika (kodowany PEM)" msgid "Username" msgstr "Nazwa użytkownika" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "VDSL" @@ -5631,11 +5623,6 @@ msgstr "Klasa producenta do wysłania podczas żądania DHCP" msgid "Verify" msgstr "Zweryfikuj" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Wersja" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "Wirtualny interfejs dynamiczny" @@ -5686,7 +5673,7 @@ msgstr "Trwa wprowadzenie zmian..." msgid "Waiting for command to complete..." msgstr "Trwa wykonanie polecenia..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "Oczekiwanie na zastosowanie konfiguracji… %ds" @@ -5721,16 +5708,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "Sieć bezprzewodowa" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Adapter bezprzewodowy" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Sieć bezprzewodowa" @@ -5745,13 +5732,13 @@ msgstr "Zabezpieczenia sieci bezprzewodowych" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "Sieć bezprzewodowa jest wyłączona" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "Sieć bezprzewodowa jest niepołączona" @@ -5775,6 +5762,10 @@ msgstr "Zapisz otrzymane żądania DNS do syslog'a" msgid "Write system log to file" msgstr "Zapisz log systemowy do pliku" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5790,7 +5781,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5827,9 +5818,9 @@ msgstr "" msgid "any" msgstr "dowolny" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5846,7 +5837,7 @@ msgstr "auto" msgid "baseT" msgstr "baseT" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "zmostkowany" @@ -5865,24 +5856,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "utwórz most na określonych interfejsach" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "dB" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "dBm" @@ -5924,7 +5915,7 @@ msgstr "pełny-duplex" msgid "half-duplex" msgstr "pół-duplex" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5946,44 +5937,44 @@ msgstr "jeżeli celem jest sieć" msgid "input" msgstr "wejście" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "kB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "kB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "kbit/s" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -6010,19 +6001,10 @@ msgstr "nie" msgid "no link" msgstr "niepowiązane" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "żaden" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -6034,7 +6016,7 @@ msgstr "nieobecny" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "wyłączone" @@ -6042,11 +6024,11 @@ msgstr "wyłączone" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "włączone" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -6064,11 +6046,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -6082,7 +6064,7 @@ msgstr "losowy" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "routowane" @@ -6116,7 +6098,7 @@ msgstr "otagowane" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "jednostki czasu (TUs / 1.024 ms) [1000-65535]" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -6143,159 +6125,159 @@ msgstr "nieokreślone -lub- utwórz:" msgid "untagged" msgstr "nieotagowane" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6309,6 +6291,105 @@ msgstr "tak" msgid "« Back" msgstr "« Wróć" +# nie ma słowa "autentykacji". Uwierzytelnianie! +#~ msgid "" +#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " +#~ "authentication." +#~ msgstr "" +#~ "Tutaj wklej swoje klucze publiczne SSH (po jednym w linii), dla " +#~ "uwierzytelniania SSH" + +#~ msgid "Password successfully changed!" +#~ msgstr "Pomyślnie zmieniono hasło!" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "Nieznany błąd, hasło nie zostało zmienione!" + +#~ msgid "Design" +#~ msgstr "Motyw" + +#~ msgid "Available packages" +#~ msgstr "Dostępne pakiety" + +#~ msgid "Bind only to specific interfaces rather than wildcard address." +#~ msgstr "" +#~ "Powiąż tylko ze specyficznymi interfejsami, a nie z adresami " +#~ "wieloznacznymi." + +#~ msgid "" +#~ "Build/distribution specific feed definitions. This file will NOT be " +#~ "preserved in any sysupgrade." +#~ msgstr "" +#~ "Kompiluj/rozpowszechniaj określone definicje źródeł. Ten plik NIE " +#~ "zostanie zachowany w procesie sysupgrade" + +#~ msgid "" +#~ "Custom feed definitions, e.g. private feeds. This file can be preserved " +#~ "in a sysupgrade." +#~ msgstr "" +#~ "Niestandardowe definicje plików danych, np. prywatne źródła. Ten plik " +#~ "może być zachowany podczas sysupgrade. " + +#~ msgid "Custom feeds" +#~ msgstr "Niestandardowe źródła" + +#~ msgid "Displaying only packages containing" +#~ msgstr "Pokazuję tylko paczki zawierające" + +#~ msgid "Distribution feeds" +#~ msgstr "Dystrybucja źródeł" + +#~ msgid "Download and install package" +#~ msgstr "Pobierz i zainstaluj pakiet" + +#~ msgid "Filter" +#~ msgstr "Filtr" + +#~ msgid "Find package" +#~ msgstr "Znajdź pakiet" + +#~ msgid "Free space" +#~ msgstr "Wolna przestrzeń" + +#~ msgid "General options for opkg" +#~ msgstr "Ogólne opcje dla opkg" + +#~ msgid "Install" +#~ msgstr "Instaluj" + +#~ msgid "Installed packages" +#~ msgstr "Zainstalowane pakiety" + +#~ msgid "No package lists available" +#~ msgstr "Lista pakietów nie jest dostępna" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "OPKG-Configuration" +#~ msgstr "Konfiguracja OPKG" + +#~ msgid "Package lists are older than 24 hours" +#~ msgstr "Lista pakietów jest starsza niż 24 godziny" + +#~ msgid "Package name" +#~ msgstr "Nazwa pakietu" + +#~ msgid "Size (.ipk)" +#~ msgstr "Rozmiar (.ipk)" + +#~ msgid "Software" +#~ msgstr "Oprogramowanie" + +#~ msgid "Update lists" +#~ msgstr "Aktualizuj listy" + +#~ msgid "Version" +#~ msgstr "Wersja" + +#~ msgid "none" +#~ msgstr "żaden" + #~ msgid "Disable DNS setup" #~ msgstr "Wyłącz konfigurację DNS" diff --git a/modules/luci-base/po/pt-br/base.po b/modules/luci-base/po/pt-br/base.po index d0b45dc3fa..17b7e34c65 100644 --- a/modules/luci-base/po/pt-br/base.po +++ b/modules/luci-base/po/pt-br/base.po @@ -5,18 +5,22 @@ msgstr "" "POT-Creation-Date: 2009-06-10 03:41+0200\n" "PO-Revision-Date: 2018-09-20 21:19-0300\n" "Last-Translator: Luiz Angelo Daros de Luca <luizluca@gmail.com>\n" +"Language-Team: \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 2.1.1\n" -"Language-Team: \n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "%.1f dB" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "%s está sem etiqueta em múltiplas VLANs!" @@ -49,16 +53,16 @@ msgstr "(nenhuma interface conectada)" msgid "-- Additional Field --" msgstr "-- Campo Adicional --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Por favor, escolha --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- personalizado --" @@ -84,11 +88,11 @@ msgstr "" msgid "-- please select --" msgstr "-- por favor, selecione --" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Carga 1 Minuto:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "Carga 15 Minutos:" @@ -100,7 +104,7 @@ msgstr "Identificador hexadecimal de 4 caracteres" msgid "464XLAT (CLAT)" msgstr "464XLAT (CLAT)" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "Carga 5 Minutos:" @@ -162,7 +166,7 @@ msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"Identificador de Conjunto de Serviços Estendidos\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Endereço <abbr title=\"Protocolo de Internet Versão 4\">IPv4</abbr>" @@ -190,13 +194,13 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "Roteador <abbr title=\"Protocolo de Internet Versão 6\">IPv6</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6/Protocolo Internet Versão " "6\">IPv6</abbr>-Suffix (hex)" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Configuração do <abbr title=\"Diodo Emissor de Luz\">LED</abbr>" @@ -205,12 +209,12 @@ msgstr "Configuração do <abbr title=\"Diodo Emissor de Luz\">LED</abbr>" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Nome do <abbr title=\"Diodo Emissor de Luz\">LED</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "Endereço <abbr title=\"Controle de Acesso ao Meio\">MAC</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"Identificador Único do DHCP\">DUID</abbr>" @@ -242,21 +246,25 @@ msgstr "" "<br/>Nota: você precisa reiniciar manualmente o serviço da cron se o arquivo " "crontab estava vazio antes da edição." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "A43C + J43 + A43" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "A43C + J43 + A43 + V43" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" "<abbr title=\"Assymetrical Digital Subscriber Line/Linha Digital Assimétrica " "para Assinante\">ADSL</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "ANSI T1.413" @@ -272,29 +280,29 @@ msgstr "" "Limite de retentativas do <abbr title=\"Address Resolution Protocol\">ARP</" "abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "ATM (Asynchronous Transfer Mode)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "Ponte ATM" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "" "Identificador de Canal Virtual ATM (<abbr title=\"Virtual Channel Identifier" "\">VCI</abbr>)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "" "Identificador de Caminho Virtual ATM (<abbr title=\"Virtual Path Identifier" "\">VPI</abbr>)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -304,12 +312,12 @@ msgstr "" "rede virutais no Linux. Estas podem ser usadas em conjunto com o DHCP ou PPP " "para discar em um provedor de rede." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "Número do dispositivo ATM" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "Identificador de" @@ -324,8 +332,6 @@ msgstr "Ponto de Acceso (AP)" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Ações" @@ -339,8 +345,8 @@ msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "" "Rotas <abbr title=\"Protocolo de Internet Versão 6\">IPv6</abbr> ativas" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Conexões Ativas" @@ -367,6 +373,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Adicionar" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "Adiciona um sufixo de domínio local para equipamentos conhecidos" @@ -383,8 +396,8 @@ msgstr "Arquivos adicionais de equipamentos conhecidos (hosts)" msgid "Additional servers file" msgstr "Arquivo de servidores adicionais" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Endereço" @@ -400,7 +413,7 @@ msgstr "Administração" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -408,7 +421,7 @@ msgstr "Administração" msgid "Advanced Settings" msgstr "Opções Avançadas" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" "Potência de Transmissão Agregada (<abbr title=\"Aggregate Transmit Power" @@ -418,7 +431,7 @@ msgstr "" msgid "Alert" msgstr "Alerta" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "Interface Adicional" @@ -443,7 +456,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "Alocar endereços IP sequencialmente" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "Permitir autenticação <abbr title=\"Shell Seguro\">SSH</abbr> por senha" @@ -472,17 +485,17 @@ msgstr "Permitir somente os listados" msgid "Allow localhost" msgstr "Permitir computador local" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" "Permitir que equipamentos remotos conectem à portas locais encaminhadas por " "SSH" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "Permite autenticação do root com senha" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "Permite que o usuário <em>root</em> se autentique utilizando senha" @@ -509,64 +522,64 @@ msgstr "" "Permitir o uso de canais 40Mhz mesmo se o canal secundário estiver " "sobreposto. Esta opção não está de acordo com IEEE 802.11n-2009!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "Anexo" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "Anexos A + L + M (todo)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "Anexo A G.992.1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "Anexo A G.992.2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "Anexo A G.992.3" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "Anexo A G.992.5" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "Anexo B (todo)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "Anexo B G.992.1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "Anexo B G.992.3" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "Anexo B G.992.5" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "Anexo J (todo)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "Anexo L G.992.3 POTS 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "Anexo M (todo)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "Anexo M G.992.3" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "Anexo M G.992.5" @@ -613,15 +626,15 @@ msgstr "Configuração da antena" msgid "Any zone" msgstr "Qualquer zona" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "Aplicar sem verificação" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "Pedido para aplicar falhou com o estado <code>%h</code>" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "Arquitetura" @@ -646,11 +659,11 @@ msgstr "" "subprefixo para esta interface." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Estações associadas" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "Associações" @@ -681,8 +694,8 @@ msgstr "Autorização Necessária" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Atualização Automática" @@ -729,29 +742,25 @@ msgstr "Montagem Automática do Espaço de Troca (swap)" msgid "Available" msgstr "Disponível" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Pacotes disponíveis" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Média:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "B43 + B43C" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "B43 + B43C + V43" @@ -762,7 +771,7 @@ msgstr "BR / DMR / AFTR" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -792,7 +801,7 @@ msgstr "Voltar para os resultados da busca" msgid "Backup" msgstr "Cópia de Segurança" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Cópia de Segurança / Gravar Firmware" @@ -823,23 +832,23 @@ msgstr "" "de configuração alterados marcados pelo opkg, arquivos base essenciais e " "padrões para a cópia de segurança definidos pelo usuário." +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" +msgstr "" + #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind interface" msgstr "Interface Vinculada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." -msgstr "" -"Vincule somente para as explicitamenteinterfaces ao invés do endereço " -"coringa." - #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind the tunnel to this interface (optional)." msgstr "Vincule o túnel a esta interface (opcional)" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Taxa de bits" @@ -847,7 +856,7 @@ msgstr "Taxa de bits" msgid "Bogus NX Domain Override" msgstr "Substituir Domínio NX Falsos" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Ponte" @@ -855,7 +864,7 @@ msgstr "Ponte" msgid "Bridge interfaces" msgstr "Juntar interfaces em uma ponte" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "Número da ponte" @@ -871,18 +880,10 @@ msgstr "Controlador Wireless Broadcom 802.11%s" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Broadcom BCM%04x 802.11 Wireless Controlador" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "Buffered" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" -"Fonte de pacotes específico da compilação/distribuição. Esta NÃO será " -"preservada em qualquer atualização do sistema." - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -898,6 +899,7 @@ msgstr "A chamada falhou" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Cancelar" @@ -920,6 +922,12 @@ msgstr "Cuidado: A atualização do sistema será forçada" msgid "Chain" msgstr "Cadeia" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -929,20 +937,24 @@ msgstr "Alterações" msgid "Changes applied." msgstr "Alterações aplicadas." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "As mudanças foram revertidas." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "Muda a senha do administrador para acessar este dispositivo" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Canal" @@ -1031,6 +1043,11 @@ msgid "Client ID to send when requesting DHCP" msgstr "" "Identificador do cliente enviando quando a requisição do DHCP é realizada" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -1050,16 +1067,16 @@ msgstr "Fechar a lista..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1095,8 +1112,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Configuração" @@ -1108,15 +1123,15 @@ msgstr "A configuração falhou" msgid "Configuration files will be kept" msgstr "Arquivos de configuração que serão mantidos" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "A configuração foi aplicada." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "A configuração foi revertida!" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Confirmação" @@ -1125,8 +1140,8 @@ msgid "Connect" msgstr "Conectar" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Conectado" @@ -1142,7 +1157,7 @@ msgstr "A tentativa de conexão falhou" msgid "Connections" msgstr "Conexões" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1203,18 +1218,6 @@ msgstr "Interface Personalizada" msgid "Custom delegated IPv6-prefix" msgstr "Prefixo IPv6 delegado personalizado" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" -"Definições de fonte de pacotes personalizadas, ex: fontes privadas. Este " -"arquivo será preservado em uma atualização do sistema." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "Fontes de pacotes customizadas" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1241,7 +1244,7 @@ msgstr "Servidor DHCP" msgid "DHCP and DNS" msgstr "DHCP e DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "Cliente DHCP" @@ -1261,16 +1264,16 @@ msgstr "Modo DHCPv6" msgid "DHCPv6-Service" msgstr "Serviço DHCPv6" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1298,16 +1301,16 @@ msgstr "Tempo de expiração para ociosidade do DPD" msgid "DS-Lite AFTR address" msgstr "Endereço DS-Lite AFTR" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "Estado da DSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "Modo de linha DSL" @@ -1321,7 +1324,7 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "Taxa de Dados" @@ -1335,6 +1338,10 @@ msgstr "Depurar" msgid "Default %d" msgstr "Padrão %d" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1372,6 +1379,11 @@ msgstr "" msgid "Delete" msgstr "Apagar" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Apagar esta rede" @@ -1380,16 +1392,11 @@ msgstr "Apagar esta rede" msgid "Delivery Traffic Indication Message Interval" msgstr "Intervalo da Mensagem Indicativa de Envio de Tráfego" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Descrição" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Tema" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Destino" @@ -1397,8 +1404,8 @@ msgstr "Destino" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1415,7 +1422,7 @@ msgstr "Configuração do Dispositivo" msgid "Device is rebooting..." msgstr "O dispositivo está reiniciando..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "Dispositivo não alcançável!" @@ -1485,18 +1492,21 @@ msgid "Discard upstream RFC1918 responses" msgstr "" "Descartar respostas de servidores externos para redes privadas (RFC1918)" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "A tentativa de desconexão falhou" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "Dispensar" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "Mostre somente os pacotes contendo" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1506,10 +1516,6 @@ msgstr "Otimização de Distância" msgid "Distance to farthest network member in meters." msgstr "Distância para o computador mais distante da rede (em metros)." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "Fontes de pacotes da distribuição" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Diversidade" @@ -1542,6 +1548,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Não encaminhe buscas por endereço reverso das redes local" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Requerer domínio" @@ -1567,10 +1577,6 @@ msgstr "" msgid "Down" msgstr "Abaixo" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Baixe e instale o pacote" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "Baixar a cópia de segurança" @@ -1579,17 +1585,17 @@ msgstr "Baixar a cópia de segurança" msgid "Download mtdblock" msgstr "Baixar o bloco mtd" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" "Deslocamento <abbr title=\"Razão entre Sinal e Ruído/Signal to Noise Ratio" "\">SNR</abbr> do sinal recebido" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Dropbear" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1775,8 +1781,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "Ativa o protocolo STP nesta ponte" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "Modo de encapsulamento" @@ -1784,7 +1790,7 @@ msgstr "Modo de encapsulamento" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Cifragem" @@ -1804,7 +1810,7 @@ msgstr "Entre com valor personalizado" msgid "Enter custom values" msgstr "Entre com valores personalizados" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "Apagando..." @@ -1813,19 +1819,19 @@ msgstr "Apagando..." msgid "Error" msgstr "Erro" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "Segundos com erro (ES)" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Adaptador Ethernet" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Switch Ethernet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "Excluir interfaces" @@ -1833,11 +1839,11 @@ msgstr "Excluir interfaces" msgid "Expand hosts" msgstr "Expandir arquivos de equipamentos conhecidos (hosts)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Expira" @@ -1891,7 +1897,7 @@ msgid "FT protocol" msgstr "" "Protocolo de <abbr title=\"Transição Rápida/Fast Transition\">FT</abbr>" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" "A confirmação das mudanças na configuração não foram confirmadas em %d " @@ -1911,10 +1917,6 @@ msgstr "Nome do arquivo da imagem de boot anunciada para os clientes" msgid "Filesystem" msgstr "Sistema de Arquivos" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Filtro" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Filtrar endereços privados" @@ -1940,10 +1942,6 @@ msgstr "" msgid "Find and join network" msgstr "Procurar e conectar à rede" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Procurar pacote" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Terminar" @@ -1964,11 +1962,11 @@ msgstr "Configurações do Firewall" msgid "Firewall Status" msgstr "Estado do Firewall" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "Arquivo da Firmware" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Versão do Firmware" @@ -1992,7 +1990,7 @@ msgstr "Gravar nova imagem do firmware" msgid "Flash operations" msgstr "Operações na memória flash" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "Gravando na flash..." @@ -2040,7 +2038,7 @@ msgstr "Chave eletrônica do formulário não casa" msgid "Forward DHCP traffic" msgstr "Encaminhar tráfego DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" "Segundos a frente de correção de erros ( <abbr title=\"Forward Error " @@ -2054,7 +2052,7 @@ msgstr "Encaminhar tráfego broadcast" msgid "Forward mesh peer traffic" msgstr "Encaminhar o tráfego do parceiro da malha" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "Modo de encaminhamento" @@ -2067,15 +2065,11 @@ msgstr "Limiar de Fragmentação" msgid "Frame Bursting" msgstr "Explosão de Quadros (Frame Bursting)" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "Livre" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Espaço livre" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -2086,7 +2080,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "GHz" @@ -2095,8 +2089,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Somente GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Roteador" @@ -2104,7 +2098,7 @@ msgstr "Roteador" msgid "Gateway address is invalid" msgstr "O endereço do roteador padrão é inválido" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "Acesso remoto a portas encaminhadas" @@ -2117,16 +2111,12 @@ msgstr "Configurações Gerais" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "Configurações Gerais" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "Opções gerais para o opkg" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "Gerar Configuração" @@ -2145,7 +2135,7 @@ msgstr "Gerar arquivo" msgid "Generic 802.11%s Wireless Controller" msgstr "Generico 802.11%s Wireless Controlador" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "A senha de confirmação informada não casa. Senha não alterada!" @@ -2153,14 +2143,14 @@ msgstr "A senha de confirmação informada não casa. Senha não alterada!" msgid "Global Settings" msgstr "Configurações Globais" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "Opções de rede globais" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "Ir para a configuração de senha..." @@ -2195,7 +2185,7 @@ msgstr "" msgid "Hang Up" msgstr "Suspender" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" "Erros de Código de Erro de Cabeçalho (<abbr title=\"Header Error Code\">HEC</" @@ -2209,14 +2199,6 @@ msgstr "" "Aqui você pode configurar os aspectos básicos do seu equipamento, como o " "nome do equipamento ou o fuso horário." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" -"Aqui você pode colar as chaves públicas do SSH (uma por linha) para a " -"autenticação por chaves do SSH." - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2231,7 +2213,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "Equipamento" @@ -2254,9 +2236,9 @@ msgid "Host-Uniq tag content" msgstr "Conteúdo da etiqueta única do equipamento" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2313,7 +2295,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Firewall para IPv4" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "Enlace IPv4 Superior" @@ -2337,7 +2319,7 @@ msgstr "Roteador padrão IPv4" msgid "IPv4 netmask" msgstr "Máscara de rede IPv4" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2382,13 +2364,13 @@ msgstr "Vizinhos IPv6" msgid "IPv6 Settings" msgstr "Configurações IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" "Prefixo <abbr title=\"Unique Local Address/Endereço Local Único\">ULA</abbr> " "IPv6" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "Enlace IPv6 Superior" @@ -2410,7 +2392,7 @@ msgstr "Tamanho da atribuição IPv6" msgid "IPv6 gateway" msgstr "Roteador padrão do IPv6" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2571,7 +2553,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "Tempo limite de inatividade" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "Entrando:" @@ -2591,10 +2573,6 @@ msgstr "Script de iniciação" msgid "Initscripts" msgstr "Scripts de iniciação" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Instalar" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "Instale iputils-traceroute6 para rastrear rotas IPv6" @@ -2607,17 +2585,13 @@ msgstr "Instalar pacote %q" msgid "Install protocol extensions..." msgstr "Instalar extensões de protocolo..." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "Pacotes instalados" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Interface" @@ -2697,7 +2671,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "É necessário JavaScript!" @@ -2722,7 +2696,7 @@ msgstr "Manter configurações" msgid "Kernel Log" msgstr "Registro do Kernel" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Versão do Kernel" @@ -2768,7 +2742,7 @@ msgstr "Limite de falha no eco do LCP" msgid "LCP echo interval" msgstr "Intervalo do eco do LCP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2785,7 +2759,7 @@ msgstr "Idioma" msgid "Language and Style" msgstr "Idioma e Estilo" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "Latência" @@ -2793,7 +2767,7 @@ msgstr "Latência" msgid "Leaf" msgstr "Folha" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "Tempo de concessão" @@ -2838,19 +2812,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "Escute somente nestas interfaces e na interface local (loopback)." -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "Atenuação de Linha (<abbr title=\"Line Attenuation\">LATN</abbr>)" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "Modo da Linha" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "Estado da Linha" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "Tempo de Atividade da Linha" @@ -2918,7 +2892,7 @@ msgstr "Interfaces de Escuta" msgid "Listen Port" msgstr "Porta de Escuta" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Escuta apenas na interface especificada. Se não especificado, escuta em todas" @@ -2933,7 +2907,7 @@ msgstr "Porta de escuta para a entrada das consultas DNS" msgid "Load" msgstr "Carga" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Carga Média" @@ -2943,6 +2917,10 @@ msgstr "Carga Média" msgid "Loading" msgstr "Carregando" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "O endereço IP local é inválido" @@ -2972,7 +2950,7 @@ msgstr "Somente Serviço Local" msgid "Local Startup" msgstr "Iniciação Local" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Hora Local" @@ -3032,11 +3010,11 @@ msgstr "Registrando os eventos" msgid "Login" msgstr "Entrar" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Sair" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" "Segundos de Perda de Sinal (<abbr title=\"Loss of Signal Seconds\">LOSS</" @@ -3053,9 +3031,9 @@ msgid "MAC" msgstr "MAC" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "Endereço MAC" @@ -3091,7 +3069,7 @@ msgstr "MB/s" msgid "MD5" msgstr "MD5" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "MHz" @@ -3121,7 +3099,7 @@ msgstr "" msgid "Manual" msgstr "Manual" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" "Taxa de Dados Atingível Máxima (<abbr title=\"Maximum Attainable Data Rate" @@ -3160,16 +3138,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "Número máximo de endereços atribuídos." -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Memória" @@ -3212,11 +3190,11 @@ msgstr "Domínio da Mobilidade" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Modo" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "Modelo" @@ -3255,7 +3233,7 @@ msgstr "Entrada de Montagem" msgid "Mount Point" msgstr "Ponto de Montagem" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3281,7 +3259,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "Monte sistemas de arquivos não especificamente configurados" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "Opções de montagem" @@ -3352,15 +3330,15 @@ msgstr "Nome da nova rede" msgid "Navigation" msgstr "Navegação" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Máscara de rede" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3386,6 +3364,10 @@ msgstr "Rede sem interfaces." msgid "Next »" msgstr "Próximo »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "Nenhum Servidor DHCP configurado para esta interface" @@ -3398,9 +3380,9 @@ msgstr "Sem NAT-T" msgid "No files found" msgstr "Nenhum arquivo encontrado" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "Nenhuma informação disponível" @@ -3420,18 +3402,18 @@ msgstr "Nenhuma rede configurada neste dispositivo" msgid "No network name specified" msgstr "Nenhum nome de rede foi especificado" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "Nenhuma lista de pacotes disponível" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "Nenhuma senha definida!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "Sem regras nesta cadeia" @@ -3444,25 +3426,25 @@ msgstr "Ainda não existem resultados do escaneamento..." msgid "No zone assigned" msgstr "Nenhuma zona definida" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Ruído" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" "Margem de Ruído (<abbr title=\"Razão entre Sinal e Ruído/Signal to Noise " "Ratio\">SNR</abbr>)" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Ruído:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" "Erros CRC Não Preemptivos<abbr title=\"Non Pre-emptive CRC errors\">CRC_P</" @@ -3490,8 +3472,8 @@ msgstr "Não Encontrado" msgid "Not associated" msgstr "Não conectado" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "Não conectado" @@ -3515,14 +3497,6 @@ msgstr "Número de entradas DNS em cache (máximo é 10000, 0 desabilita o cache msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "OK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "Configuração-OPKG" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "Senha Ofuscada do Grupo" @@ -3563,7 +3537,7 @@ msgstr "" msgid "On-State Delay" msgstr "Atraso no estado de conexões" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "" "É necessário especificar ao menos um nome de equipamento ou endereço MAC!" @@ -3677,7 +3651,7 @@ msgstr "Opcional. Porta UDP usada para pacotes saintes ou entrantes." msgid "Options" msgstr "Opções" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "Outro:" @@ -3685,7 +3659,7 @@ msgstr "Outro:" msgid "Out" msgstr "Saída" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "Saindo:" @@ -3825,7 +3799,7 @@ msgstr "Deslocamento PSID" msgid "PSID-bits length" msgstr "Comprimento dos bits PSID" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "PTM/EFM (Modo de Transferência de Pacotes)" @@ -3833,15 +3807,6 @@ msgstr "PTM/EFM (Modo de Transferência de Pacotes)" msgid "Package libiwinfo required!" msgstr "O pacote libiwinfo é necessário!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "As listas de pacotes são mais antigas do que 24 horas" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Nome do Pacote" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Pacotes" @@ -3852,13 +3817,13 @@ msgstr "Parte da zona %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Senha" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Autenticação por senha" @@ -3870,14 +3835,14 @@ msgstr "Senha da Chave Privada" msgid "Password of inner Private Key" msgstr "Senha da Chave Privada interna" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "A senha foi alterada com sucesso!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "Senha2" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Caminho para o Certificado da AC" @@ -3902,17 +3867,17 @@ msgstr "Caminho para o Certificado do Cliente interno" msgid "Path to inner Private Key" msgstr "Caminho para a Chave Privada interna" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "Pico:" @@ -3944,7 +3909,7 @@ msgstr "Restaurar as configuração iniciais" msgid "Persistent Keep Alive" msgstr "Manutenção da Conexão Persistente" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "Taxa física:" @@ -3972,16 +3937,11 @@ msgstr "Pcts." msgid "Please enter your username and password." msgstr "Entre com o seu usuário e senha." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "Política" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Porta" @@ -3989,11 +3949,11 @@ msgstr "Porta" msgid "Port status:" msgstr "Status da porta:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "Modo de Gerenciamento de Energia" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" "Erros CRC Preemptivos<abbr title=\"Pre-emptive CRC errors\">CRCP_P</abbr>" @@ -4006,7 +3966,7 @@ msgstr "Preferir LTE" msgid "Prefer UMTS" msgstr "Preferir UMTS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "Prefixo Delegado" @@ -4027,7 +3987,7 @@ msgstr "" "Assumir que o parceiro está morto depois de uma data quantidade de falhas de " "echo do LCP. Use 0 para ignorar as falhas" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "Evite escutar nestas Interfaces." @@ -4049,7 +4009,7 @@ msgstr "Proceder" msgid "Processes" msgstr "Processos" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "Perfil" @@ -4059,9 +4019,9 @@ msgstr "Protocolo" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protocolo" @@ -4089,6 +4049,14 @@ msgstr "Ad-Hoc falso (ahdemo)" msgid "Public Key" msgstr "Chave Pública" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -4100,7 +4068,7 @@ msgid "QMI Cellular" msgstr "Celular QMI" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "Qualidade" @@ -4135,7 +4103,7 @@ msgstr "Limiar RTS/CTS" msgid "RX" msgstr "RX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "Taxa de RX" @@ -4204,7 +4172,7 @@ msgstr "Realmente limpar todas as mudanças?" msgid "Really switch protocol?" msgstr "Realmente trocar o protocolo?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "Conexões em Tempo Real" @@ -4212,15 +4180,15 @@ msgstr "Conexões em Tempo Real" msgid "Realtime Graphs" msgstr "Gráficos em Tempo Real" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "Carga em Tempo Real" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "Tráfego em Tempo Real" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "Rede sem fio em Tempo Real" @@ -4232,7 +4200,7 @@ msgstr "Limite para Reassociação" msgid "Rebind protection" msgstr "Proteção contra \"Rebind\"" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Reiniciar" @@ -4294,7 +4262,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "Endereço IPv4 remoto ou FQDN" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Remover" @@ -4364,7 +4331,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Limpar" @@ -4407,6 +4373,8 @@ msgid "Restore backup" msgstr "Restaurar cópia de segurança" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "Relevar/esconder senha" @@ -4416,16 +4384,16 @@ msgstr "Relevar/esconder senha" msgid "Revert" msgstr "Reverter" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "Reverter as mudanças" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" "O pedido para reverter as configurações falhou com o estado <code>%h</code>" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "Revertendo configurações..." @@ -4454,7 +4422,8 @@ msgstr "Tipo de rota" msgid "Router Advertisement-Service" msgstr "Serviço de Anúncio de Roteador" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "Senha do Roteador" @@ -4476,12 +4445,12 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "" "Execute a verificação do sistema de arquivos antes da montagem do dispositivo" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "Execute a verificação do sistema de arquivos" @@ -4489,11 +4458,12 @@ msgstr "Execute a verificação do sistema de arquivos" msgid "SHA256" msgstr "SHA256" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "SNR" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Acesso SSH" @@ -4509,7 +4479,8 @@ msgstr "Porta do servidor SSH" msgid "SSH username" msgstr "Usuário do SSH" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "Chaves SSH" @@ -4518,7 +4489,7 @@ msgstr "Chaves SSH" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4529,6 +4500,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Salvar" @@ -4545,6 +4517,10 @@ msgstr "Salvar o bloco mtd" msgid "Save mtdblock contents" msgstr "Salvar o conteúdo do bloco mtd" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Procurar" @@ -4553,7 +4529,7 @@ msgstr "Procurar" msgid "Scan request failed" msgstr "O pedido de escaneamento falhou" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Tarefas Agendadas" @@ -4566,7 +4542,7 @@ msgstr "Seção adicionada" msgid "Section removed" msgstr "Seção removida" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "Veja o manual (man) do comando \"mount\" para detalhes" @@ -4614,6 +4590,14 @@ msgstr "Tipo do Serviço" msgid "Services" msgstr "Serviços" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4641,13 +4625,13 @@ msgstr "A configuração do modo de operação falhou" msgid "Setup DHCP Server" msgstr "Configurar Servidor DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" "Segundos com erro severos (<abbr title=\"Severely Errored Seconds\">SES</" "abbr>)" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "Intervalo de guarda curto" @@ -4667,22 +4651,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "Desligar esta interface" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Sinal" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "Atenuação do Sinal (<abbr title=\"Signal Attenuation\">SATN</abbr>)" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "Sinal:" @@ -4690,10 +4674,6 @@ msgstr "Sinal:" msgid "Size" msgstr "Tamanho" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "Tamanho (.ipk)" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "Tamanho do cache de consultas DNS" @@ -4721,12 +4701,7 @@ msgstr "Pular para a navegação" msgid "Slot time" msgstr "Intervalo de tempo" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Software" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "VLAN em Software" @@ -4752,7 +4727,7 @@ msgstr "" "firmware deve ser gravada manualmente. Por favor, consulte a wiki para " "instruções específicas da instalação deste dispositivo." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4762,7 +4737,7 @@ msgstr "Origem" msgid "Specifies the directory the device is attached to" msgstr "Especifica o diretório que o dispositivo está conectado" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "Especifica a porta de escuta deste <em>Dropbear</em>" @@ -4816,7 +4791,7 @@ msgstr "Iniciar" msgid "Start priority" msgstr "Prioridade de iniciação" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "Iniciando a aplicação da configuração..." @@ -4824,7 +4799,7 @@ msgstr "Iniciando a aplicação da configuração..." msgid "Starting wireless scan..." msgstr "Iniciando o escaneamento da rede sem fio..." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "Iniciação" @@ -4836,7 +4811,7 @@ msgstr "Rotas Estáticas IPv4" msgid "Static IPv6 Routes" msgstr "Rotas Estáticas IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Alocações Estáticas" @@ -4844,11 +4819,11 @@ msgstr "Alocações Estáticas" msgid "Static Routes" msgstr "Rotas Estáticas" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "Endereço Estático" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4866,8 +4841,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Estado" @@ -4892,7 +4866,7 @@ msgstr "Suprimir registros (log)" msgid "Suppress logging of the routine operation of these protocols" msgstr "Suprimir registros (log) de operações rotineiras destes protocolos" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "Espaço de Troca (swap)" @@ -4924,7 +4898,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "Máscara da porta do Switch" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "Switch VLAN" @@ -4942,7 +4916,7 @@ msgid "Synchronizing..." msgstr "Sincronizando..." #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4962,7 +4936,7 @@ msgstr "Propriedades do Sistema" msgid "System log buffer size" msgstr "Tamanho do buffer de registro do sistema" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4980,7 +4954,7 @@ msgstr "Raiz do servidor TFTP" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "Taxa de TX" @@ -5068,7 +5042,7 @@ msgid "The configuration file could not be loaded due to the following error:" msgstr "" "O arquivo de configuração não pode ser carregado devido ao seguinte erro:" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -5123,6 +5097,16 @@ msgstr "As seguintes alterações foram revertidas" msgid "The following rules are currently active on this system." msgstr "As seguintes regras estão atualmente ativas neste sistema." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "O nome de rede informado não é único" @@ -5178,7 +5162,7 @@ msgstr "O protocolo selecionado necessita estar associado a um dispositivo" msgid "The submitted security token is invalid or already expired!" msgstr "A chave eletrônica enviada é inválida ou já expirou!" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -5186,7 +5170,7 @@ msgstr "" "O sistema está apagando agora a partição da configuração e irá reiniciar " "quando terminado." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " "few minutes before you try to reconnect. It might be necessary to renew the " @@ -5198,6 +5182,10 @@ msgstr "" "da sua configuração, pode ser necessário renovar o endereço do seu " "computador para poder conectar novamente ao roteador." +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -5206,12 +5194,16 @@ msgstr "" "A imagem carregada não contém um formato suportado. Confirme que você " "escolheu uma imagem para a sua plataforma." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Tema" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "Não existem alocações ativas." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "Não existem mudanças para aplicar." @@ -5235,7 +5227,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5329,7 +5321,7 @@ msgid "" msgstr "" "Esta lista fornece uma visão geral sobre os processos em execução no sistema." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "Esta página fornece informações sobre as conexões de rede ativas." @@ -5355,6 +5347,10 @@ msgstr "" msgid "Timezone" msgstr "Fuso Horário" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5366,12 +5362,12 @@ msgstr "" "clique em \"Restaurar as configurações iniciais\" (somente possível para " "imagens do tipo squashfs)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "Tom" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Total Disponível" @@ -5386,7 +5382,7 @@ msgstr "Traceroute" msgid "Traffic" msgstr "Tráfego" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Transferências" @@ -5421,7 +5417,7 @@ msgstr "Modo de disparo" msgid "Tunnel ID" msgstr "Identificador do Túnel" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "Interface de Tunelamento" @@ -5436,12 +5432,12 @@ msgid "Tx-Power" msgstr "Potência de transmissão" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Tipo" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5495,38 +5491,38 @@ msgstr "Não foi possível resolver o nome do AFTR" msgid "Unable to resolve peer host name" msgstr "Não foi possível resolver o nome do parceiro" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" "Segundos de indisponibilidade (<abbr title=\"Unavailable Seconds\">UAS</" "abbr>)" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "Desconhecido" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "Erro Desconhecido, a senha não foi alterada!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "Erro desconhecido (%s)" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "Não gerenciado" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "Desmontar" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Alterações Não Salvas" @@ -5548,10 +5544,6 @@ msgstr "Tipo de protocolo não suportado." msgid "Up" msgstr "Acima" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "Atualizar listas" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5572,7 +5564,7 @@ msgstr "Arquivo Carregado" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Tempo de atividade" @@ -5690,7 +5682,7 @@ msgstr "Use a métrica do roteador" msgid "Use routing table" msgstr "Use a tabela de roteamento" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5734,11 +5726,11 @@ msgstr "Chave do usuário (codificada em formato PEM)" msgid "Username" msgstr "Usuário" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "VDSL" @@ -5788,11 +5780,6 @@ msgstr "Classe do fabricante para enviar quando requisitar o DHCP" msgid "Verify" msgstr "Verificar" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Versão" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "Interface virtual dinâmica" @@ -5843,7 +5830,7 @@ msgstr "Esperando a aplicação das mudanças..." msgid "Waiting for command to complete..." msgstr "Esperando o término do comando..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "Esperando que a configuração seja aplicada...%ds" @@ -5879,16 +5866,16 @@ msgstr "VPN WireGuard" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "Rede sem fio" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Dispositivo de Rede sem Fio" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Rede sem Fio" @@ -5903,13 +5890,13 @@ msgstr "Segurança da Rede sem Fio" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "Rede sem fio está desabilitada" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "Rede sem fio está não conectada" @@ -5933,6 +5920,10 @@ msgstr "Escreva as requisições DNS para o servidor de registro (syslog)" msgid "Write system log to file" msgstr "Escrever registro do sistema (log) no arquivo" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5949,7 +5940,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5986,9 +5977,9 @@ msgstr "" msgid "any" msgstr "qualquer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -6005,7 +5996,7 @@ msgstr "automático" msgid "baseT" msgstr "baseT" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "em ponte" @@ -6024,24 +6015,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "cria uma ponte sobre determinada(s) interface(s)" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "dB" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "dBm" @@ -6083,7 +6074,7 @@ msgstr "full-duplex" msgid "half-duplex" msgstr "half-duplex" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -6105,44 +6096,44 @@ msgstr "se o destino for uma rede" msgid "input" msgstr "entrada" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "kB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "kB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "kbit/s" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -6170,19 +6161,10 @@ msgstr "não" msgid "no link" msgstr "sem link" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "nenhum" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -6194,7 +6176,7 @@ msgstr "não presente" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "desligado" @@ -6202,11 +6184,11 @@ msgstr "desligado" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "ligado" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -6224,11 +6206,11 @@ msgstr "saída" msgid "overlay" msgstr "sobreposição" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -6242,7 +6224,7 @@ msgstr "aleatório" msgid "relay mode" msgstr "modo retransmissor" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "roteado" @@ -6276,7 +6258,7 @@ msgstr "etiquetado" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "unidades de tempo (TUs / 1.024 ms) [1000-65535]" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -6303,159 +6285,159 @@ msgstr "não especificado -ou- criar:" msgid "untagged" msgstr "não etiquetado" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6469,6 +6451,104 @@ msgstr "sim" msgid "« Back" msgstr "« Voltar" +#~ msgid "" +#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " +#~ "authentication." +#~ msgstr "" +#~ "Aqui você pode colar as chaves públicas do SSH (uma por linha) para a " +#~ "autenticação por chaves do SSH." + +#~ msgid "Password successfully changed!" +#~ msgstr "A senha foi alterada com sucesso!" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "Erro Desconhecido, a senha não foi alterada!" + +#~ msgid "Design" +#~ msgstr "Tema" + +#~ msgid "Available packages" +#~ msgstr "Pacotes disponíveis" + +#~ msgid "Bind only to specific interfaces rather than wildcard address." +#~ msgstr "" +#~ "Vincule somente para as explicitamenteinterfaces ao invés do endereço " +#~ "coringa." + +#~ msgid "" +#~ "Build/distribution specific feed definitions. This file will NOT be " +#~ "preserved in any sysupgrade." +#~ msgstr "" +#~ "Fonte de pacotes específico da compilação/distribuição. Esta NÃO será " +#~ "preservada em qualquer atualização do sistema." + +#~ msgid "" +#~ "Custom feed definitions, e.g. private feeds. This file can be preserved " +#~ "in a sysupgrade." +#~ msgstr "" +#~ "Definições de fonte de pacotes personalizadas, ex: fontes privadas. Este " +#~ "arquivo será preservado em uma atualização do sistema." + +#~ msgid "Custom feeds" +#~ msgstr "Fontes de pacotes customizadas" + +#~ msgid "Displaying only packages containing" +#~ msgstr "Mostre somente os pacotes contendo" + +#~ msgid "Distribution feeds" +#~ msgstr "Fontes de pacotes da distribuição" + +#~ msgid "Download and install package" +#~ msgstr "Baixe e instale o pacote" + +#~ msgid "Filter" +#~ msgstr "Filtro" + +#~ msgid "Find package" +#~ msgstr "Procurar pacote" + +#~ msgid "Free space" +#~ msgstr "Espaço livre" + +#~ msgid "General options for opkg" +#~ msgstr "Opções gerais para o opkg" + +#~ msgid "Install" +#~ msgstr "Instalar" + +#~ msgid "Installed packages" +#~ msgstr "Pacotes instalados" + +#~ msgid "No package lists available" +#~ msgstr "Nenhuma lista de pacotes disponível" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "OPKG-Configuration" +#~ msgstr "Configuração-OPKG" + +#~ msgid "Package lists are older than 24 hours" +#~ msgstr "As listas de pacotes são mais antigas do que 24 horas" + +#~ msgid "Package name" +#~ msgstr "Nome do Pacote" + +#~ msgid "Size (.ipk)" +#~ msgstr "Tamanho (.ipk)" + +#~ msgid "Software" +#~ msgstr "Software" + +#~ msgid "Update lists" +#~ msgstr "Atualizar listas" + +#~ msgid "Version" +#~ msgstr "Versão" + +#~ msgid "none" +#~ msgstr "nenhum" + #~ msgid "Disable DNS setup" #~ msgstr "Desabilita a configuração do DNS" diff --git a/modules/luci-base/po/pt/base.po b/modules/luci-base/po/pt/base.po index 4146a1a1e1..c40d719248 100644 --- a/modules/luci-base/po/pt/base.po +++ b/modules/luci-base/po/pt/base.po @@ -13,10 +13,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -49,16 +53,16 @@ msgstr "(não existem interfaces ligadas)" msgid "-- Additional Field --" msgstr "-- Campo Adicional --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Por favor escolha --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- personalizado --" @@ -82,11 +86,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Carga de 1 Minuto:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "Carga de 15 minutos:" @@ -98,7 +102,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "Carga 5 Minutos:" @@ -158,7 +162,7 @@ msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"Identificador de Conjunto de Serviços Estendidos\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Endereço <abbr title=\"Protocolo de Internet Versão 4\">IPv4</abbr>" @@ -186,11 +190,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "Gateway <abbr title=\"Protocolo de Internet Versão 6\">IPv6</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Configuração do <abbr title=\"Diodo Emissor de Luz\">LED</abbr>" @@ -199,12 +203,12 @@ msgstr "Configuração do <abbr title=\"Diodo Emissor de Luz\">LED</abbr>" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Nome da <abbr title=\"Diodo Emissor de Luz\">LED</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "Endereço <abbr title=\"Controle de Acesso ao Meio\">MAC</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -234,19 +238,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -260,25 +268,25 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "Limiar de tentativas ARP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "Bridges ATM" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "Identificador Canais Virtuais ATM (VCI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "Identificador de Caminho Virtual ATM (VPI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -288,12 +296,12 @@ msgstr "" "interface de Rede Virtual Linux que pode ser usada em conjugação com o DHCP " "ou PPP para marcar para a rede ISP." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "Número de Dispositivo ATM" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -308,8 +316,6 @@ msgstr "Access Point (AP)" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Acções" @@ -323,8 +329,8 @@ msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "" "Rotas-<abbr title=\"Protocolo de Internet Versão 6\">IPv6</abbr> ativas" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Ligações Ativas" @@ -351,6 +357,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Adicionar" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" @@ -369,8 +382,8 @@ msgstr "Ficheiro Adicional de Hosts" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Endereço" @@ -386,7 +399,7 @@ msgstr "Administração" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -394,7 +407,7 @@ msgstr "Administração" msgid "Advanced Settings" msgstr "Definições Avançadas" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -402,7 +415,7 @@ msgstr "" msgid "Alert" msgstr "Alerta" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -425,7 +438,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "Permitir autenticação <abbr title=\"Shell Seguro\">SSH</abbr> por senha" @@ -452,16 +465,16 @@ msgstr "Permitir somente os listados" msgid "Allow localhost" msgstr "Permitir localhost" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" "Permitir que hosts remotos se conectem às portas encaminhadas do SSH local" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "Permitir o login como root só com password" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "Permitir que o utilizador <em>root</em> faça login só com password" @@ -485,64 +498,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -588,15 +601,15 @@ msgstr "Configuração das Antenas" msgid "Any zone" msgstr "Qualquer zona" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -617,11 +630,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Estações Associadas" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -652,8 +665,8 @@ msgstr "Autorização Requerida" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Actualização Automática" @@ -696,29 +709,25 @@ msgstr "" msgid "Available" msgstr "Disponível" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Pacotes disponíveis" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Média:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -729,7 +738,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -759,7 +768,7 @@ msgstr "Voltar aos resultados do scan" msgid "Backup" msgstr "Backup" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Backup / Flashar Firmware" @@ -790,12 +799,14 @@ msgstr "" "configuração alterados e marcados pelo opkg, ficheiros base essenciais e " "padrões de backup definidos pelo utilizador." -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -804,7 +815,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Taxa de bits" @@ -812,7 +823,7 @@ msgstr "Taxa de bits" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Bridge" @@ -820,7 +831,7 @@ msgstr "Bridge" msgid "Bridge interfaces" msgstr "Ativar brigde nas interfaces" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "Número de unidade da bridge" @@ -836,16 +847,10 @@ msgstr "Controlador Wireless Broadcom 802.11%s" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Controlador Wireless Broadcom BCM%04x 802.11" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -860,6 +865,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Cancelar" @@ -882,6 +888,12 @@ msgstr "" msgid "Chain" msgstr "Cadeia" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -891,20 +903,24 @@ msgstr "Alterações" msgid "Changes applied." msgstr "Alterações aplicadas." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "Altera a password de administrador para acesso ao dispositivo" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Canal" @@ -987,6 +1003,11 @@ msgstr "Cliente" msgid "Client ID to send when requesting DHCP" msgstr "ID de cliente a enviar para pedidos de DHCP" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -1006,16 +1027,16 @@ msgstr "Fechar lista..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1046,8 +1067,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Configuração" @@ -1059,15 +1078,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Confirmação" @@ -1076,8 +1095,8 @@ msgid "Connect" msgstr "Ligar" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Ligado" @@ -1093,7 +1112,7 @@ msgstr "" msgid "Connections" msgstr "Ligações" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1150,16 +1169,6 @@ msgstr "Interface Personalizada" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1184,7 +1193,7 @@ msgstr "Servidor DHCP" msgid "DHCP and DNS" msgstr "DHCP e DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "Cliente DHCP" @@ -1204,16 +1213,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1241,16 +1250,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1262,7 +1271,7 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1276,6 +1285,10 @@ msgstr "Depurar" msgid "Default %d" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1313,6 +1326,11 @@ msgstr "" msgid "Delete" msgstr "Apagar" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Apagar esta rede" @@ -1321,16 +1339,11 @@ msgstr "Apagar esta rede" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Descrição" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Tema" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Destino" @@ -1338,8 +1351,8 @@ msgstr "Destino" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1356,7 +1369,7 @@ msgstr "Configuração do Dispositivo" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1424,18 +1437,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "Descartar respostas RFC1918 a montante" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "Mostrar somente pacotes contendo" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1445,10 +1461,6 @@ msgstr "Optimização de Distância" msgid "Distance to farthest network member in meters." msgstr "Distância para o último host da rede em metros." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Diversidade" @@ -1480,6 +1492,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Não encaminhar lookups reversos para as redes locais" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Requerer domínio" @@ -1504,10 +1520,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Descarregar e instalar pacote" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "Descarregar backup" @@ -1516,15 +1528,15 @@ msgstr "Descarregar backup" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Instância do Dropbear" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1698,8 +1710,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "Ativa o Spanning Tree nesta bridge" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "Modo de encapsulamento" @@ -1707,7 +1719,7 @@ msgstr "Modo de encapsulamento" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Encriptação" @@ -1727,7 +1739,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "A apagar..." @@ -1736,19 +1748,19 @@ msgstr "A apagar..." msgid "Error" msgstr "Erro" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Adaptador Ethernet" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Switch Ethernet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1756,11 +1768,11 @@ msgstr "" msgid "Expand hosts" msgstr "Expandir hosts" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Expira" @@ -1812,7 +1824,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1830,10 +1842,6 @@ msgstr "Nome de ficheiro da imagem de boot a anunciar aos clientes" msgid "Filesystem" msgstr "Sistema de ficheiros" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Filtro" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Filtrar endereços privados" @@ -1856,10 +1864,6 @@ msgstr "" msgid "Find and join network" msgstr "Procurar e ligar rede" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Procurar pacote" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Terminar" @@ -1880,11 +1884,11 @@ msgstr "Definições da Firewall" msgid "Firewall Status" msgstr "Estado da Firewall" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Versão do Firmware" @@ -1908,7 +1912,7 @@ msgstr "Flashar nova imagem do firmware" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "A programar...." @@ -1956,7 +1960,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Encaminhar tráfego DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1968,7 +1972,7 @@ msgstr "Encaminhar trafego de broadcast" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "Modo de encaminhamento" @@ -1981,15 +1985,11 @@ msgstr "Margem de Fragmentação" msgid "Frame Bursting" msgstr "Frame Bursting" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "Livre" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Espaço livre" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1998,7 +1998,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "GHz" @@ -2007,8 +2007,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Só GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Gateway" @@ -2016,7 +2016,7 @@ msgstr "Gateway" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "Portas de gateway" @@ -2029,16 +2029,12 @@ msgstr "Definições Gerais" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "Configuração Geral" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -2055,7 +2051,7 @@ msgstr "Gerar arquivo" msgid "Generic 802.11%s Wireless Controller" msgstr "Controlador Wireless Genérico 802.11%s" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "" "A confirmação de password não corresponde, a password não foi alterada!" @@ -2064,14 +2060,14 @@ msgstr "" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "Ir para a configuração da password" @@ -2104,7 +2100,7 @@ msgstr "" msgid "Hang Up" msgstr "Suspender" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2116,14 +2112,6 @@ msgstr "" "Aqui pode configurar os aspectos básicos do seu equipamento, como o nome do " "host ou o fuso horário." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" -"Aqui pode colar as chaves SSH (uma por linha) para a autenticação SSH por " -"chave pública." - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2138,7 +2126,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2160,9 +2148,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2217,7 +2205,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Firewall IPv4" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2241,7 +2229,7 @@ msgstr "Gateway IPv4" msgid "IPv4 netmask" msgstr "Máscara IPv4" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2286,11 +2274,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2312,7 +2300,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "Gateway IPv6" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2465,7 +2453,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "Tempo de inatividade" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "Entrada:" @@ -2485,10 +2473,6 @@ msgstr "Script de inicialização" msgid "Initscripts" msgstr "Scripts de Inicialização" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Instalar" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2501,17 +2485,13 @@ msgstr "Instalar pacote %q" msgid "Install protocol extensions..." msgstr "Instalar extensões do protocolo..." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "Instalar pacotes" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Interface" @@ -2589,7 +2569,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "É necessário JavaScript!" @@ -2614,7 +2594,7 @@ msgstr "Manter definições" msgid "Kernel Log" msgstr "Registo do Kernel" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Versão do Kernel" @@ -2660,7 +2640,7 @@ msgstr "" msgid "LCP echo interval" msgstr "Intervalo de echo LCP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2677,7 +2657,7 @@ msgstr "Idioma" msgid "Language and Style" msgstr "Língua e Tema" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2685,7 +2665,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2728,19 +2708,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2794,7 +2774,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Escutar apenas na interface fornecida ou, se não especificada, em todas" @@ -2809,7 +2789,7 @@ msgstr "Porta de escuta para entrada de consultas DNS" msgid "Load" msgstr "Carga" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Carga Média" @@ -2819,6 +2799,10 @@ msgstr "Carga Média" msgid "Loading" msgstr "A carregar" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2848,7 +2832,7 @@ msgstr "" msgid "Local Startup" msgstr "Arranque Local" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Hora Local" @@ -2906,11 +2890,11 @@ msgstr "" msgid "Login" msgstr "Login" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Logout" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2925,9 +2909,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "Endereço-MAC" @@ -2963,7 +2947,7 @@ msgstr "MB/s" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "MHz" @@ -2989,7 +2973,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -3024,16 +3008,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "Número máximo de endereços concessionados." -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Memória" @@ -3076,11 +3060,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Modo" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3119,7 +3103,7 @@ msgstr "Montar Entrada" msgid "Mount Point" msgstr "Ponto de Montagem" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3145,7 +3129,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "" @@ -3216,15 +3200,15 @@ msgstr "Nome da nova rede" msgid "Navigation" msgstr "Navegação" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Mascara de rede" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3250,6 +3234,10 @@ msgstr "Rede sem interfaces." msgid "Next »" msgstr "Seguinte »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "Sem Servidor DHCP configurado nesta interface" @@ -3262,9 +3250,9 @@ msgstr "" msgid "No files found" msgstr "Não foram encontrados ficheiros" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "Sem informação disponível" @@ -3284,18 +3272,18 @@ msgstr "Nenhuma rede configurada no dispositivo" msgid "No network name specified" msgstr "Nome de rede não especificado" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "Não há listas de pacotes disponiveis" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "Sem password definida!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "Sem regras nesta cadeia" @@ -3308,23 +3296,23 @@ msgstr "" msgid "No zone assigned" msgstr "Sem zona atribuída" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Ruído" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Ruído:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3350,8 +3338,8 @@ msgstr "Não encontrado" msgid "Not associated" msgstr "Não associado" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "Não ligado" @@ -3375,14 +3363,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "OK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "Configuração-OPKG" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3423,7 +3403,7 @@ msgstr "" msgid "On-State Delay" msgstr "Atraso do On-State" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "Um nome de host ou endereço MAC deve ser especificado!" @@ -3523,7 +3503,7 @@ msgstr "" msgid "Options" msgstr "Opções" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "Outro:" @@ -3531,7 +3511,7 @@ msgstr "Outro:" msgid "Out" msgstr "Saída" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "Saída:" @@ -3666,7 +3646,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3674,15 +3654,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "O pacote libiwinfo é necessário!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "As listas de pacotes têm mais de 24 horas" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Nome do pacote" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Pacotes" @@ -3693,13 +3664,13 @@ msgstr "Parte da zona %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Senha" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Autenticação por senha" @@ -3711,14 +3682,14 @@ msgstr "Senha da Chave Privada" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "Password alterada com sucesso!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Directorio do Certificado CA" @@ -3743,17 +3714,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "Pico:" @@ -3785,7 +3756,7 @@ msgstr "Executar reset" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "" @@ -3813,16 +3784,11 @@ msgstr "Pkts." msgid "Please enter your username and password." msgstr "Insira o seu username e password." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "Política" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Porta" @@ -3830,11 +3796,11 @@ msgstr "Porta" msgid "Port status:" msgstr "Estado da porta:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3846,7 +3812,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3865,7 +3831,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3887,7 +3853,7 @@ msgstr "Proceder" msgid "Processes" msgstr "Processos" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3897,9 +3863,9 @@ msgstr "Protocolo" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protocolo" @@ -3927,6 +3893,14 @@ msgstr "Pseudo Ad-Hoc (ahdemo)" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3936,7 +3910,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "Qualidade" @@ -3969,7 +3943,7 @@ msgstr "RTS/CTS Threshold" msgid "RX" msgstr "RX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "Taxa RX" @@ -4031,7 +4005,7 @@ msgstr "Deseja mesmo limpar todas as alterações?" msgid "Really switch protocol?" msgstr "Deseja mesmo trocar o protocolo?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "Ligações em Tempo Real" @@ -4039,15 +4013,15 @@ msgstr "Ligações em Tempo Real" msgid "Realtime Graphs" msgstr "Gráficos em Tempo Real" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "Carga em Tempo Real" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "Tráfego em Tempo Real" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "Wireless em Tempo Real" @@ -4059,7 +4033,7 @@ msgstr "" msgid "Rebind protection" msgstr "Religar protecção" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Reiniciar" @@ -4121,7 +4095,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Remover" @@ -4185,7 +4158,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Reset" @@ -4228,6 +4200,8 @@ msgid "Restore backup" msgstr "Restaurar backup" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "Revelar/esconder password" @@ -4237,15 +4211,15 @@ msgstr "Revelar/esconder password" msgid "Revert" msgstr "Reverter" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4274,7 +4248,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "Password do Router" @@ -4296,12 +4271,12 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "" "Correr uma verificação do sistema de ficheiros antes de montar um dispositivo" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "Correr uma verificação do sistema de ficheiros" @@ -4309,11 +4284,12 @@ msgstr "Correr uma verificação do sistema de ficheiros" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Acesso SSH" @@ -4329,7 +4305,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "Chaves-SSH" @@ -4338,7 +4315,7 @@ msgstr "Chaves-SSH" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4349,6 +4326,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Salvar" @@ -4365,6 +4343,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Procurar" @@ -4373,7 +4355,7 @@ msgstr "Procurar" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Tarefas Agendadas" @@ -4386,7 +4368,7 @@ msgstr "Secção adicionada" msgid "Section removed" msgstr "Secção removida" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "" @@ -4429,6 +4411,14 @@ msgstr "Tipo de Serviço" msgid "Services" msgstr "Serviços" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4452,11 +4442,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "Configurar Servidor DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4476,22 +4466,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "Desligar esta interface" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Sinal" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "Sinal:" @@ -4499,10 +4489,6 @@ msgstr "Sinal:" msgid "Size" msgstr "Tamanho" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4530,12 +4516,7 @@ msgstr "Ir para a navegação" msgid "Slot time" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Software" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4558,7 +4539,7 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4568,7 +4549,7 @@ msgstr "Origem" msgid "Specifies the directory the device is attached to" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "Especifica as portas de escuta desta instância <em>Dropbear</em>" @@ -4614,7 +4595,7 @@ msgstr "Iniciar" msgid "Start priority" msgstr "Prioridade de inicialização" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4622,7 +4603,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "" @@ -4634,7 +4615,7 @@ msgstr "Rotas Estáticas IPv4" msgid "Static IPv6 Routes" msgstr "Rotas Estáticas IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Atribuições Estáticas" @@ -4642,11 +4623,11 @@ msgstr "Atribuições Estáticas" msgid "Static Routes" msgstr "Rotas Estáticas" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "Endereço estático" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4660,8 +4641,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Status" @@ -4686,7 +4666,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4716,7 +4696,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4734,7 +4714,7 @@ msgid "Synchronizing..." msgstr "A sincronizar..." #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4754,7 +4734,7 @@ msgstr "Propriedades do Sistema" msgid "System log buffer size" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4772,7 +4752,7 @@ msgstr "Raíz do servidor TFTP" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "" @@ -4851,7 +4831,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4898,6 +4878,16 @@ msgstr "Foram recuperadas as seguintes alterações " msgid "The following rules are currently active on this system." msgstr "As seguintes regras estão actualmente acivas neste sistema." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "O nome dado não é único" @@ -4953,7 +4943,7 @@ msgstr "O protocolo escolhido precisa de um dispositivo atribuído." msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -4961,7 +4951,7 @@ msgstr "" "O sistema está agora a limpar a partição de configuração e irá reiniciar-se " "quando terminar." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -4974,6 +4964,10 @@ msgstr "" "da sua configuração, ode ser necessário renovar o endereço do seu computador " "para poder ligar novamente ao router." +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -4982,12 +4976,16 @@ msgstr "" "A imagem carregada não contém um formato suportado. Confirme que escolhe uma " "imagem genérica para a sua plataforma." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Tema" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "Não há concessões ativas." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -5011,7 +5009,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5090,7 +5088,7 @@ msgid "" msgstr "" "Esta lista fornece uma visão geral sobre os processos em execução no sistema." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "Esta página fornece informações sobre as ligações de rede ativas." @@ -5116,6 +5114,10 @@ msgstr "" msgid "Timezone" msgstr "Fuso Horário" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5126,12 +5128,12 @@ msgstr "" "de backup gerado anteriormente. Para voltar as definições originais do " "firmware, clique \" Fazer reset\" (só possível com imagens squashfs)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Total Disponível" @@ -5146,7 +5148,7 @@ msgstr "Traceroute" msgid "Traffic" msgstr "Tráfego" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Transferências" @@ -5181,7 +5183,7 @@ msgstr "Modo de Trigger" msgid "Tunnel ID" msgstr "ID do Túnel" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "Interface de Túnel" @@ -5196,12 +5198,12 @@ msgid "Tx-Power" msgstr "Potência de Tx" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Tipo" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5255,36 +5257,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "Desconhecido" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "Erro Desconhecido, a password não foi alterada!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "Não gerido" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Alterações não Guardadas" @@ -5304,10 +5306,6 @@ msgstr "Tipo de protocolo não suportado." msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "Actualizar listas" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5325,7 +5323,7 @@ msgstr "Ficheiro carregado" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Uptime" @@ -5441,7 +5439,7 @@ msgstr "" msgid "Use routing table" msgstr "Usar tabela de roteamento" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5478,11 +5476,11 @@ msgstr "" msgid "Username" msgstr "Utilizador" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5532,11 +5530,6 @@ msgstr "" msgid "Verify" msgstr "Verificar" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Versão" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5587,7 +5580,7 @@ msgstr "A aguardar que as mudanças sejam aplicadas..." msgid "Waiting for command to complete..." msgstr "A aguardar que o comando termine..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5620,16 +5613,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "Rede Wireless" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Adaptador Wireless" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Rede Wireless" @@ -5644,13 +5637,13 @@ msgstr "Segurança Wireless" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "Wireless desativada" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "Wireless não associada" @@ -5674,6 +5667,10 @@ msgstr "Escrever os pedidos de DNS para o syslog" msgid "Write system log to file" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5690,7 +5687,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5724,9 +5721,9 @@ msgstr "" msgid "any" msgstr "qualquer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5743,7 +5740,7 @@ msgstr "automático" msgid "baseT" msgstr "baseT" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "" @@ -5762,24 +5759,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "cria uma bridge sobre determinada(s) interface(s)" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "dB" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "dBm" @@ -5821,7 +5818,7 @@ msgstr "full-duplex" msgid "half-duplex" msgstr "half-duplex" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5843,44 +5840,44 @@ msgstr "se o destino for uma rede" msgid "input" msgstr "entrada" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "kB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "kB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "kbit/s" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5907,19 +5904,10 @@ msgstr "não" msgid "no link" msgstr "sem link" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "nenhum" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5931,7 +5919,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "desligado" @@ -5939,11 +5927,11 @@ msgstr "desligado" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "ligado" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5961,11 +5949,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5979,7 +5967,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "" @@ -6013,7 +6001,7 @@ msgstr "" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -6040,159 +6028,159 @@ msgstr "" msgid "untagged" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6206,6 +6194,73 @@ msgstr "sim" msgid "« Back" msgstr "« Voltar" +#~ msgid "" +#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " +#~ "authentication." +#~ msgstr "" +#~ "Aqui pode colar as chaves SSH (uma por linha) para a autenticação SSH por " +#~ "chave pública." + +#~ msgid "Password successfully changed!" +#~ msgstr "Password alterada com sucesso!" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "Erro Desconhecido, a password não foi alterada!" + +#~ msgid "Design" +#~ msgstr "Tema" + +#~ msgid "Available packages" +#~ msgstr "Pacotes disponíveis" + +#~ msgid "Displaying only packages containing" +#~ msgstr "Mostrar somente pacotes contendo" + +#~ msgid "Download and install package" +#~ msgstr "Descarregar e instalar pacote" + +#~ msgid "Filter" +#~ msgstr "Filtro" + +#~ msgid "Find package" +#~ msgstr "Procurar pacote" + +#~ msgid "Free space" +#~ msgstr "Espaço livre" + +#~ msgid "Install" +#~ msgstr "Instalar" + +#~ msgid "Installed packages" +#~ msgstr "Instalar pacotes" + +#~ msgid "No package lists available" +#~ msgstr "Não há listas de pacotes disponiveis" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "OPKG-Configuration" +#~ msgstr "Configuração-OPKG" + +#~ msgid "Package lists are older than 24 hours" +#~ msgstr "As listas de pacotes têm mais de 24 horas" + +#~ msgid "Package name" +#~ msgstr "Nome do pacote" + +#~ msgid "Software" +#~ msgstr "Software" + +#~ msgid "Update lists" +#~ msgstr "Actualizar listas" + +#~ msgid "Version" +#~ msgstr "Versão" + +#~ msgid "none" +#~ msgstr "nenhum" + #~ msgid "Disable DNS setup" #~ msgstr "Desativar configuração de DNS" diff --git a/modules/luci-base/po/ro/base.po b/modules/luci-base/po/ro/base.po index 9ce725dd0f..709f83d7a1 100644 --- a/modules/luci-base/po/ro/base.po +++ b/modules/luci-base/po/ro/base.po @@ -12,10 +12,14 @@ msgstr "" "20)) ? 1 : 2);;\n" "X-Generator: Pootle 2.0.6\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -48,16 +52,16 @@ msgstr "(nici o interfata atasata)" msgid "-- Additional Field --" msgstr "-- Camp suplimentar --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Te rog sa alegi --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- particularizat --" @@ -81,11 +85,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Incarcarea in ultimul minut" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "Incarcarea in ultimele 15 minute" @@ -97,7 +101,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "Incarcarea in ultimele 5 minute" @@ -153,7 +157,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "Adresa <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" @@ -179,11 +183,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Poarta Acces" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Configurare" @@ -192,12 +196,12 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Configurare" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Nume" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-Addresa" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -225,19 +229,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -251,25 +259,25 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "ARP prag reincercare" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "Punti ATM" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "ATM Indentificator Canal Virtual (VCI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "ATM Indentificator Cale Virtual(VPI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -279,12 +287,12 @@ msgstr "" "virtuale de rețea Linux care pot fi utilizate în asociere cu DHCP sau PPP " "pentru a forma în rețeaua furnizorului." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "ATM numar echipament" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -299,8 +307,6 @@ msgstr "Punct de Acces" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Actiune" @@ -312,8 +318,8 @@ msgstr "Rute active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "Rute active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Conexiuni active" @@ -340,6 +346,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Adauga" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "Adauga un sufix local numelor servite din fisierele de tip hosts" @@ -356,8 +369,8 @@ msgstr "Fisiere de tip hosts aditionale" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Adresa" @@ -373,7 +386,7 @@ msgstr "Administrare" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -381,7 +394,7 @@ msgstr "Administrare" msgid "Advanced Settings" msgstr "Setari avansate" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -389,7 +402,7 @@ msgstr "" msgid "Alert" msgstr "Alerta" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -412,7 +425,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "Permite autentificarea prin parola a <abbr title=\"Secure Shell\">SSH</abbr> " @@ -439,15 +452,15 @@ msgstr "Permite doar cele listate" msgid "Allow localhost" msgstr "Permite localhost" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "Permite statiilor externe sa se conecteze la porturile SSH locale" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "Permite autentificarea contului root cu parola" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "Permite contului <em>root</em> sa se autentifice cu parola" @@ -471,64 +484,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -574,15 +587,15 @@ msgstr "Configurarea Antenei" msgid "Any zone" msgstr "Orice Zona" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -603,11 +616,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Statiile asociate" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -638,8 +651,8 @@ msgstr "Necesita Autorizare" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Reimprospatare automata" @@ -682,29 +695,25 @@ msgstr "" msgid "Available" msgstr "Disponibil" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Pachete disponibile" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Medie:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -715,7 +724,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -745,7 +754,7 @@ msgstr "Inapoi la rezultatele scanarii" msgid "Backup" msgstr "Salveaza" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Salveaza / Scrie Firmware" @@ -773,12 +782,14 @@ msgid "" "defined backup patterns." msgstr "" -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -787,7 +798,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Bitrate" @@ -795,7 +806,7 @@ msgstr "Bitrate" msgid "Bogus NX Domain Override" msgstr "Bogus NX Domain Override" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Punte" @@ -803,7 +814,7 @@ msgstr "Punte" msgid "Bridge interfaces" msgstr "Leaga interfetele" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "Numarul unitatii in punte" @@ -819,16 +830,10 @@ msgstr "Broadcom 802.11%s Controller Fara Fir" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Broadcom BCM%04x 802.11 Controller Fara Fir" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "Incarcat" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -843,6 +848,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Anuleaza" @@ -865,6 +871,12 @@ msgstr "" msgid "Chain" msgstr "Lant" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -874,20 +886,24 @@ msgstr "Modificari" msgid "Changes applied." msgstr "Modificari aplicate." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "Schimba parola administratorului pentru accesarea dispozitivului" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Canal" @@ -965,6 +981,11 @@ msgstr "" msgid "Client ID to send when requesting DHCP" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -982,16 +1003,16 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1022,8 +1043,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Configurare" @@ -1035,15 +1054,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Confirmare" @@ -1052,8 +1071,8 @@ msgid "Connect" msgstr "Conectare" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Conectat" @@ -1069,7 +1088,7 @@ msgstr "" msgid "Connections" msgstr "Conexiuni" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1126,16 +1145,6 @@ msgstr "" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1158,7 +1167,7 @@ msgstr "Server DHCP" msgid "DHCP and DNS" msgstr "DHCP si DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "" @@ -1178,16 +1187,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1215,16 +1224,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1236,7 +1245,7 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1250,6 +1259,10 @@ msgstr "" msgid "Default %d" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1284,6 +1297,11 @@ msgstr "" msgid "Delete" msgstr "Sterge" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Sterge aceasta retea" @@ -1292,16 +1310,11 @@ msgstr "Sterge aceasta retea" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Descriere" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Destinatie" @@ -1309,8 +1322,8 @@ msgstr "Destinatie" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1327,7 +1340,7 @@ msgstr "Configurarea dispozitivului" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1395,18 +1408,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1416,10 +1432,6 @@ msgstr "Optimizarea distantei" msgid "Distance to farthest network member in meters." msgstr "Distanta catre cel mai departat membru din retea in metri." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Diversitate" @@ -1444,6 +1456,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Domeniul necesar" @@ -1466,10 +1482,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Descarca si instaleaza pachetul" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "Descarca backup" @@ -1478,15 +1490,15 @@ msgstr "Descarca backup" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Instanta dropbear" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1654,8 +1666,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "Modul de incapsulare" @@ -1663,7 +1675,7 @@ msgstr "Modul de incapsulare" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Criptare" @@ -1683,7 +1695,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "Stergere..." @@ -1692,19 +1704,19 @@ msgstr "Stergere..." msgid "Error" msgstr "Eroare" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Adaptor de retea ethernet" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Switch-ul ethernet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1712,11 +1724,11 @@ msgstr "" msgid "Expand hosts" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Expira" @@ -1765,7 +1777,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1783,10 +1795,6 @@ msgstr "" msgid "Filesystem" msgstr "Sistem de fisiere" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Filtreaza" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Filtreaza privatele" @@ -1809,10 +1817,6 @@ msgstr "" msgid "Find and join network" msgstr "Gaseste si alatura in retea" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Gaseste pachet" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Termina" @@ -1833,11 +1837,11 @@ msgstr "Setarile firewall-ului" msgid "Firewall Status" msgstr "Status la firewall" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Versiunea de firmware" @@ -1861,7 +1865,7 @@ msgstr "" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "" @@ -1910,7 +1914,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1922,7 +1926,7 @@ msgstr "" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "" @@ -1935,15 +1939,11 @@ msgstr "" msgid "Frame Bursting" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "Liber" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Spatiu liber" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1952,7 +1952,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "" @@ -1961,8 +1961,8 @@ msgstr "" msgid "GPRS only" msgstr "Doar GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Gateway" @@ -1970,7 +1970,7 @@ msgstr "Gateway" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "Porturile gateway" @@ -1983,16 +1983,12 @@ msgstr "Setari principale" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "Configurare generala" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -2009,7 +2005,7 @@ msgstr "" msgid "Generic 802.11%s Wireless Controller" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "Confirmarea parolei nu se potriveste cu prima, parola neschimbata !" @@ -2017,14 +2013,14 @@ msgstr "Confirmarea parolei nu se potriveste cu prima, parola neschimbata !" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "" @@ -2057,7 +2053,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2069,12 +2065,6 @@ msgstr "" "Aici poti configura aspectele de baza ale dispozitivului cum ar fi numele " "sau fusul orar." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2087,7 +2077,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2108,9 +2098,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2165,7 +2155,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Firewall IPv4" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2189,7 +2179,7 @@ msgstr "" msgid "IPv4 netmask" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2234,11 +2224,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2260,7 +2250,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2407,7 +2397,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "Intrare:" @@ -2427,10 +2417,6 @@ msgstr "Script de initializare" msgid "Initscripts" msgstr "Scripturi de initializare" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Instalati" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2443,17 +2429,13 @@ msgstr "Instalati pachetul %q" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "Pachete instalate" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Interfata" @@ -2530,7 +2512,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "Ai nevoie de JavaScript !" @@ -2555,7 +2537,7 @@ msgstr "Pastrati setarile" msgid "Kernel Log" msgstr "Log-ul kernelului" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Versiunea de kernel" @@ -2601,7 +2583,7 @@ msgstr "" msgid "LCP echo interval" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "" @@ -2618,7 +2600,7 @@ msgstr "Limba" msgid "Language and Style" msgstr "Limba si stilul interfetei" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2626,7 +2608,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2669,19 +2651,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2733,7 +2715,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -2747,7 +2729,7 @@ msgstr "" msgid "Load" msgstr "Incarcarea" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Incarcarea medie" @@ -2757,6 +2739,10 @@ msgstr "Incarcarea medie" msgid "Loading" msgstr "Incarcare" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2786,7 +2772,7 @@ msgstr "" msgid "Local Startup" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Ora locala" @@ -2839,11 +2825,11 @@ msgstr "" msgid "Login" msgstr "Autentificare" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Iesire" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2858,9 +2844,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "" @@ -2896,7 +2882,7 @@ msgstr "" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "" @@ -2922,7 +2908,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -2957,16 +2943,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Memorie" @@ -3009,11 +2995,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Mod" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3052,7 +3038,7 @@ msgstr "" msgid "Mount Point" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3076,7 +3062,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "" @@ -3147,15 +3133,15 @@ msgstr "Numele interfetei noi" msgid "Navigation" msgstr "Navigare" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Netmask" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3181,6 +3167,10 @@ msgstr "" msgid "Next »" msgstr "Mai departe »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "Nici un server DHCP configurat pentru aceasta interfata" @@ -3193,9 +3183,9 @@ msgstr "" msgid "No files found" msgstr "Nici un fisier gasit" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "Nici o informatie disponibila" @@ -3215,18 +3205,18 @@ msgstr "Nici o retea configurata pe acest dispozitiv" msgid "No network name specified" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "Nici o parola setata !" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "" @@ -3239,23 +3229,23 @@ msgstr "" msgid "No zone assigned" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Zgomot" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Zgomot:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3281,8 +3271,8 @@ msgstr "Nu a fost gasit" msgid "Not associated" msgstr "Nu este asociat." -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "Nu este conectat" @@ -3306,14 +3296,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "OK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "Configuratia-OPKG" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3348,7 +3330,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -3448,7 +3430,7 @@ msgstr "" msgid "Options" msgstr "Optiuni" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "Altele:" @@ -3456,7 +3438,7 @@ msgstr "Altele:" msgid "Out" msgstr "Iesire" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "" @@ -3591,7 +3573,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3599,15 +3581,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "Pachetul libiwinfo este necesar !" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Numele pachetului" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Pachete" @@ -3618,13 +3591,13 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Parola" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Autentificarea cu parola" @@ -3636,14 +3609,14 @@ msgstr "Parola cheii private" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "Parola schimbata cu succes !" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Calea catre certificatul CA" @@ -3668,17 +3641,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "Maxim:" @@ -3710,7 +3683,7 @@ msgstr "Reseteaza" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "Rata phy:" @@ -3738,16 +3711,11 @@ msgstr "Packete." msgid "Please enter your username and password." msgstr "Introdu utilizatorul si parola." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3755,11 +3723,11 @@ msgstr "Port" msgid "Port status:" msgstr "Stare port:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3771,7 +3739,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3790,7 +3758,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3812,7 +3780,7 @@ msgstr "Continua" msgid "Processes" msgstr "Procese" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3822,9 +3790,9 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protocol" @@ -3852,6 +3820,14 @@ msgstr "" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3861,7 +3837,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "Calitate" @@ -3894,7 +3870,7 @@ msgstr "" msgid "RX" msgstr "RX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "" @@ -3954,7 +3930,7 @@ msgstr "" msgid "Really switch protocol?" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "Conexiuni in timp real" @@ -3962,15 +3938,15 @@ msgstr "Conexiuni in timp real" msgid "Realtime Graphs" msgstr "Grafice in timp real" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "Incarcarea in timp real" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "Traficul in timp real" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "" @@ -3982,7 +3958,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Rebooteaza" @@ -4044,7 +4020,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Elimina" @@ -4108,7 +4083,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Reset" @@ -4151,6 +4125,8 @@ msgid "Restore backup" msgstr "Reface backup-ul" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "Arata / ascunde parola" @@ -4160,15 +4136,15 @@ msgstr "Arata / ascunde parola" msgid "Revert" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4197,7 +4173,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "Parola routerului" @@ -4217,11 +4194,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "" @@ -4229,11 +4206,12 @@ msgstr "" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Acces SSH" @@ -4249,7 +4227,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "Cheile SSH" @@ -4258,7 +4237,7 @@ msgstr "Cheile SSH" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4269,6 +4248,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Salveaza" @@ -4285,6 +4265,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Scan" @@ -4293,7 +4277,7 @@ msgstr "Scan" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Operatiuni programate" @@ -4306,7 +4290,7 @@ msgstr "Sectiune adaugata" msgid "Section removed" msgstr "Sectiune eliminata" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "" @@ -4349,6 +4333,14 @@ msgstr "Tip de serviciu" msgid "Services" msgstr "Servicii" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4372,11 +4364,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "Seteaza serverul DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4396,22 +4388,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "Opreste aceasta interfata" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Semnal" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "Semnal:" @@ -4419,10 +4411,6 @@ msgstr "Semnal:" msgid "Size" msgstr "Marime" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4450,12 +4438,7 @@ msgstr "" msgid "Slot time" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Software" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4478,7 +4461,7 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4488,7 +4471,7 @@ msgstr "Sursa" msgid "Specifies the directory the device is attached to" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "" @@ -4534,7 +4517,7 @@ msgstr "Start" msgid "Start priority" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4542,7 +4525,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "Pornire" @@ -4554,7 +4537,7 @@ msgstr "Rute statice IPv4" msgid "Static IPv6 Routes" msgstr "Rute statice IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "" @@ -4562,11 +4545,11 @@ msgstr "" msgid "Static Routes" msgstr "Rute statice" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4580,8 +4563,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Status" @@ -4606,7 +4588,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4636,7 +4618,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4654,7 +4636,7 @@ msgid "Synchronizing..." msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4674,7 +4656,7 @@ msgstr "Proprietati sistem" msgid "System log buffer size" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "" @@ -4692,7 +4674,7 @@ msgstr "" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "" @@ -4765,7 +4747,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4804,6 +4786,16 @@ msgstr "" msgid "The following rules are currently active on this system." msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "" @@ -4849,13 +4841,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " "few minutes before you try to reconnect. It might be necessary to renew the " @@ -4863,18 +4855,26 @@ msgid "" "settings." msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -4896,7 +4896,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -4970,7 +4970,7 @@ msgid "" "their status." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "" @@ -4996,6 +4996,10 @@ msgstr "" msgid "Timezone" msgstr "Fusul orar" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5003,12 +5007,12 @@ msgid "" "reset\" (only possible with squashfs images)." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Total disponibil" @@ -5023,7 +5027,7 @@ msgstr "" msgid "Traffic" msgstr "Trafic" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Transfer" @@ -5058,7 +5062,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "Interfata de tunel" @@ -5073,12 +5077,12 @@ msgid "Tx-Power" msgstr "Puterea TX" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Tip" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5132,36 +5136,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "Necunoscut" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "Eroare necunoscuta, parola neschimbata !" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "Neadministrate" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Modificari nesalvate" @@ -5181,10 +5185,6 @@ msgstr "Tipul de protocol neacceptat." msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5202,7 +5202,7 @@ msgstr "Fisier incarcat" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Uptime" @@ -5318,7 +5318,7 @@ msgstr "" msgid "Use routing table" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5355,11 +5355,11 @@ msgstr "" msgid "Username" msgstr "Utilizator" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5409,11 +5409,6 @@ msgstr "" msgid "Verify" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Versiune" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5464,7 +5459,7 @@ msgstr "" msgid "Waiting for command to complete..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5497,16 +5492,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "Wireless" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Adaptorul wireless" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Retea wireless" @@ -5521,13 +5516,13 @@ msgstr "Securitate wireless" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "Wireless-ul este dezactivat" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "Wireless-ul este ne-asociat" @@ -5551,6 +5546,10 @@ msgstr "Scrie cererile DNS primite in syslog" msgid "Write system log to file" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5562,7 +5561,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5594,9 +5593,9 @@ msgstr "" msgid "any" msgstr "oricare" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5613,7 +5612,7 @@ msgstr "auto" msgid "baseT" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "" @@ -5632,24 +5631,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "" @@ -5689,7 +5688,7 @@ msgstr "" msgid "half-duplex" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5711,44 +5710,44 @@ msgstr "daca tinta este o retea" msgid "input" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5774,19 +5773,10 @@ msgstr "nu" msgid "no link" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5798,7 +5788,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "" @@ -5806,11 +5796,11 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5828,11 +5818,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5846,7 +5836,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "rutat" @@ -5880,7 +5870,7 @@ msgstr "etichetat" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -5907,159 +5897,159 @@ msgstr "" msgid "untagged" msgstr "neetichetat" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6073,6 +6063,48 @@ msgstr "da" msgid "« Back" msgstr "« Inapoi" +#~ msgid "Password successfully changed!" +#~ msgstr "Parola schimbata cu succes !" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "Eroare necunoscuta, parola neschimbata !" + +#~ msgid "Available packages" +#~ msgstr "Pachete disponibile" + +#~ msgid "Download and install package" +#~ msgstr "Descarca si instaleaza pachetul" + +#~ msgid "Filter" +#~ msgstr "Filtreaza" + +#~ msgid "Find package" +#~ msgstr "Gaseste pachet" + +#~ msgid "Free space" +#~ msgstr "Spatiu liber" + +#~ msgid "Install" +#~ msgstr "Instalati" + +#~ msgid "Installed packages" +#~ msgstr "Pachete instalate" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "OPKG-Configuration" +#~ msgstr "Configuratia-OPKG" + +#~ msgid "Package name" +#~ msgstr "Numele pachetului" + +#~ msgid "Software" +#~ msgstr "Software" + +#~ msgid "Version" +#~ msgstr "Versiune" + #~ msgid "Disable DNS setup" #~ msgstr "Dezactiveaza configuratia DNS" diff --git a/modules/luci-base/po/ru/base.po b/modules/luci-base/po/ru/base.po index 826f3d2b76..62d625c030 100644 --- a/modules/luci-base/po/ru/base.po +++ b/modules/luci-base/po/ru/base.po @@ -1,24 +1,28 @@ msgid "" msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: LuCI: base\n" "POT-Creation-Date: 2010-05-09 01:01+0300\n" -"PO-Revision-Date: 2018-10-25 19:04+0300\n" +"PO-Revision-Date: 2018-11-20 20:01+0300\n" +"Last-Translator: Anton Kikin <a.kikin@tano-systems.com>\n" "Language-Team: http://cyber-place.ru\n" +"Language: ru\n" "MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.2\n" -"Last-Translator: Anton Kikin <a.kikin@tano-systems.com>\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"Language: ru\n" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "%.1f дБ" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "%d бит" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "%s не тегирован в множестве VLAN!" @@ -51,16 +55,16 @@ msgstr "(нет связанных интерфейсов)" msgid "-- Additional Field --" msgstr "-- Дополнительно --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Сделайте выбор --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- пользовательский --" @@ -84,11 +88,11 @@ msgstr "-- проверка по uuid --" msgid "-- please select --" msgstr "-- сделайте выбор --" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Загрузка за 1 минуту:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "Загрузка за 15 минут:" @@ -100,7 +104,7 @@ msgstr "4-х значный шестнадцатеричный ID" msgid "464XLAT (CLAT)" msgstr "464XLAT (CLAT)" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "Загрузка за 5 минут:" @@ -156,7 +160,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Расширенный идентификатор обслуживания\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Интернет протокол версии 4\">IPv4</abbr>-адрес" @@ -182,11 +186,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Интернет протокол версии 6\">IPv6</abbr>-шлюз" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "<abbr title=\"Интернет протокол версии 6\">IPv6</abbr>-суффикс (hex)" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "Настройка <abbr title=\"Светодиод\">LED</abbr> индикации" @@ -195,12 +199,12 @@ msgstr "Настройка <abbr title=\"Светодиод\">LED</abbr> инд� msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Имя <abbr title=\"Светодиод\">LED</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Управление доступом к носителю\">MAC</abbr>-адрес" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"Уникальный идентификатор DHCP\">DUID</abbr>" @@ -233,19 +237,23 @@ msgstr "" "<br />Внимание: вы должны вручную перезапустить службу cron, если этот файл " "был пустым перед внесением ваших изменений." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "Время сессии истекло, требуется повторная аутентификация." + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "A43C + J43 + A43" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "A43C + J43 + A43 + V43" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "ADSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "ANSI T1.413" @@ -259,25 +267,25 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "Порог повтора ARP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "ATM (режим асинхронной передачи)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "ATM мосты" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "ATM идентификатор виртуального канала (VCI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "ATM идентификатор виртуального пути (VPI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -287,12 +295,12 @@ msgstr "" "как виртуальные сетевые интерфейсы Linux, которые могут использоваться " "совместно с DHCP или PPP для набора номера в сети провайдера." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "ATM номер устройства" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "ATU-C идентификатор производителя" @@ -307,8 +315,6 @@ msgstr "Точка доступа" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Действия" @@ -322,8 +328,8 @@ msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "" "Активные <abbr title=\"Интернет протокол версии 6\">IPv6</abbr>-маршруты" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Активные соединения" @@ -350,6 +356,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Добавить" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "Добавить ключ" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" @@ -367,8 +380,8 @@ msgstr "Дополнительный hosts файл" msgid "Additional servers file" msgstr "Дополнительные файлы серверов" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Адрес" @@ -384,7 +397,7 @@ msgstr "Управление" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -392,7 +405,7 @@ msgstr "Управление" msgid "Advanced Settings" msgstr "Дополнительные настройки" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "Aggregate Transmit Power (ACTATP)" @@ -400,7 +413,7 @@ msgstr "Aggregate Transmit Power (ACTATP)" msgid "Alert" msgstr "Тревога" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "Псевдоним" @@ -424,7 +437,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "Выделять IP-адреса последовательно" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "Разрешить <abbr title=\"Secure Shell\">SSH</abbr> аутентификацию с помощью " @@ -454,17 +467,17 @@ msgstr "Разрешить только перечисленные" msgid "Allow localhost" msgstr "Разрешить локальный хост" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" "Разрешить удаленным хостам подключаться к локальным перенаправленным портам " "SSH" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "Root входит по паролю" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "" "Разрешить пользователю <em>root</em> входить в систему с помощью пароля" @@ -492,64 +505,64 @@ msgstr "" "Всегда использовать каналы 40 МГц, даже если вторичный канал перекрывается. " "Использование этой опции не соответствует стандарту IEEE 802.11n-2009!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "Annex" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "Annex A + L + M (all)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "Annex A G.992.1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "Annex A G.992.2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "Annex A G.992.3" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "Annex A G.992.5" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "Annex B (all)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "Annex B G.992.1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "Annex B G.992.3" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "Annex B G.992.5" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "Annex J (all)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "Annex L G.992.3 POTS 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "Annex M (all)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "Annex M G.992.3" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "Annex M G.992.5" @@ -597,15 +610,15 @@ msgstr "Настройка антенн" msgid "Any zone" msgstr "Любая зона" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "Применить без проверки" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "Ошибка <code>%h</code> запроса на применение" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "Архитектура" @@ -629,11 +642,11 @@ msgstr "" "исправления для этого интерфейса." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Подключенные клиенты" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "Ассоциации" @@ -664,8 +677,8 @@ msgstr "Выполните аутентификацию" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Автообновление" @@ -714,29 +727,25 @@ msgstr "Hotplug раздела подкачки" msgid "Available" msgstr "Доступно" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Доступные пакеты" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Средняя:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "B43 + B43C" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "B43 + B43C + V43" @@ -747,7 +756,7 @@ msgstr "BR / DMR / AFTR" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -777,7 +786,7 @@ msgstr "Назад к результатам поиска" msgid "Backup" msgstr "Резервное копирование" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Резервное копирование / Перепрошивка" @@ -808,23 +817,25 @@ msgstr "" "состоит из измененных config файлов, отмеченных opkg, необходимых базовых " "файлов, а также шаблонов резервного копирования, определенных пользователем." +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" +msgstr "" +"Привязывать динамически к интерфейсам, а не по шаблону адреса (рекомендуется " +"по умолчанию для Linux)" + #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind interface" msgstr "Открытый интерфейс" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." -msgstr "" -"Соединение только с определенными интерфейсами, не использующими " -"подстановочные адреса (wildcard)." - #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind the tunnel to this interface (optional)." msgstr "Открытый туннель для этого интерфейса (необязательно)." #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Скорость" @@ -832,7 +843,7 @@ msgstr "Скорость" msgid "Bogus NX Domain Override" msgstr "Переопределение поддельного NX-домена" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Мост" @@ -840,7 +851,7 @@ msgstr "Мост" msgid "Bridge interfaces" msgstr "Объединить в мост" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "Номер моста" @@ -856,18 +867,10 @@ msgstr "Беспроводной 802.11%s контроллер Broadcom" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Беспроводной 802.11 контроллер Broadcom BCM%04x" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "Буферизировано" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" -"Build/distribution оригинальные feed-ы. Изменения в этом файле НЕ сохранятся " -"при перепрошивке sysupgrade-совместимым образом." - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -883,6 +886,7 @@ msgstr "Ошибка вызова" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Отменить" @@ -905,6 +909,12 @@ msgstr "Внимание: выбрано принудительное обнов msgid "Chain" msgstr "Цепочка" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "Изменить пароль" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -914,20 +924,24 @@ msgstr "Изменения" msgid "Changes applied." msgstr "Изменения приняты." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "Изменения были возвращены назад." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "Изменить пароль администратора для доступа к устройству" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "Изменение пароля..." + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Канал" @@ -1017,6 +1031,11 @@ msgstr "Клиент" msgid "Client ID to send when requesting DHCP" msgstr "ID клиента при DHCP-запросе" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "Закрыть" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -1036,16 +1055,16 @@ msgstr "Закрыть список..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1080,8 +1099,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Настройка config файла" @@ -1093,15 +1110,15 @@ msgstr "Ошибка конфигурации" msgid "Configuration files will be kept" msgstr "Конфигурационные файлы будут сохранены" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "Конфигурация применена" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "Конфигурация возвращена назад!" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Подтверждение пароля" @@ -1110,8 +1127,8 @@ msgid "Connect" msgstr "Соединить" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Подключен" @@ -1127,7 +1144,7 @@ msgstr "Ошибка попытки соединения" msgid "Connections" msgstr "Соединения" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1187,18 +1204,6 @@ msgstr "Пользовательский интерфейс" msgid "Custom delegated IPv6-prefix" msgstr "Установленный пользователем IPv6-prefix" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" -"Custom-ные feed-ы — это пользовательские feed-ы. Этот файл может быть " -"сохранен при перепрошивке sysupgrade-совместимым образом." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "Список custom-ных feed-ов" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1225,7 +1230,7 @@ msgstr "DHCP-сервер" msgid "DHCP and DNS" msgstr "DHCP и DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "DHCP-клиент" @@ -1245,16 +1250,16 @@ msgstr "DHCPv6 режим" msgid "DHCPv6-Service" msgstr "DHCPv6 сервис" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1282,16 +1287,16 @@ msgstr "DPD время простоя" msgid "DS-Lite AFTR address" msgstr "DS-Lite AFTR-адрес" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "Состояние DSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "DSL линейный режим" @@ -1303,7 +1308,7 @@ msgstr "Интервал DTIM" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "Скорость передачи данных" @@ -1317,6 +1322,10 @@ msgstr "Отладка" msgid "Default %d" msgstr "По умолчанию %d" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "Маршрут по умолчанию" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1354,6 +1363,11 @@ msgstr "" msgid "Delete" msgstr "Удалить" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "Удалить ключ" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Удалить эту сеть" @@ -1362,16 +1376,11 @@ msgstr "Удалить эту сеть" msgid "Delivery Traffic Indication Message Interval" msgstr "Интервал сообщений, регламентирующий доставку трафика" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Описание" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Тема" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Направление" @@ -1379,8 +1388,8 @@ msgstr "Направление" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1397,7 +1406,7 @@ msgstr "Настройка устройства" msgid "Device is rebooting..." msgstr "Перезагрузка..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "Устройство недоступно!" @@ -1465,18 +1474,21 @@ msgstr "Не ассоциировать при низком подтвержде msgid "Discard upstream RFC1918 responses" msgstr "Отбрасывать ответы внешней сети RFC1918" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "Отключить" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "Ошибка попытки отключения" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "Отклонить" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "Показываются только пакеты, содержащие" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1486,10 +1498,6 @@ msgstr "Оптимизация расстояния" msgid "Distance to farthest network member in meters." msgstr "Расстояние до самого удалённого сетевого узла в метрах." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "Список feed-ов дистрибутива" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Разновидность антенн" @@ -1520,6 +1528,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "Не перенаправлять обратные DNS-запросы для локальных сетей" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "Вы действительно хотите удалить следующий SSH-ключ?" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Требуется домен" @@ -1544,10 +1556,6 @@ msgstr "" msgid "Down" msgstr "Вниз" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Загрузить и установить пакет" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "Загрузить резервную копию" @@ -1556,15 +1564,15 @@ msgstr "Загрузить резервную копию" msgid "Download mtdblock" msgstr "Скачать MTD раздел" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "SNR offset внутренней сети" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Экземпляр Dropbear" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1743,8 +1751,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "Включает Spanning Tree Protocol на этом мосту" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "Режим инкапсуляции" @@ -1752,7 +1760,7 @@ msgstr "Режим инкапсуляции" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Шифрование" @@ -1772,7 +1780,7 @@ msgstr "Введите пользовательское значение" msgid "Enter custom values" msgstr "Введите пользовательские значения" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "Стирание..." @@ -1781,19 +1789,19 @@ msgstr "Стирание..." msgid "Error" msgstr "Ошибка" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "Ошибочные секунды (ES)" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Ethernet-адаптер" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Ethernet-коммутатор" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "Исключите интерфейсы" @@ -1801,11 +1809,11 @@ msgstr "Исключите интерфейсы" msgid "Expand hosts" msgstr "Расширять имена узлов" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" -msgstr "" +msgstr "Ожидаемое значение %s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Истекает" @@ -1856,7 +1864,7 @@ msgstr "FT над the Air" msgid "FT protocol" msgstr "FT протокол" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" "Не удалось подтвердить применение в течении %d сек., ожидание отката..." @@ -1875,10 +1883,6 @@ msgstr "Имя загрузочного образа, извещаемого к� msgid "Filesystem" msgstr "Файловая система" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Фильтр" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Фильтровать частные" @@ -1904,10 +1908,6 @@ msgstr "" msgid "Find and join network" msgstr "Найти и присоединиться к сети" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Найти пакет" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Завершить" @@ -1928,11 +1928,11 @@ msgstr "Настройки межсетевого экрана" msgid "Firewall Status" msgstr "Состояние межсетевого экрана" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "Файл прошивки" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Версия прошивки" @@ -1956,7 +1956,7 @@ msgstr "Установить новый образ прошивки" msgid "Flash operations" msgstr "Операции с прошивкой" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "Прошивка..." @@ -2004,7 +2004,7 @@ msgstr "Несоответствие маркеров формы" msgid "Forward DHCP traffic" msgstr "Перенаправлять трафик DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "Секунды прямой коррекции ошибок (FECS)" @@ -2016,7 +2016,7 @@ msgstr "Перенаправлять широковещательный траф msgid "Forward mesh peer traffic" msgstr "Перенаправлять запросы трафика Mesh" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "Режим перенаправления" @@ -2029,15 +2029,11 @@ msgstr "Порог фрагментации" msgid "Frame Bursting" msgstr "Пакетная передача кадров" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "Свободно" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Свободное место" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -2048,7 +2044,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "ГГц" @@ -2057,8 +2053,8 @@ msgstr "ГГц" msgid "GPRS only" msgstr "Только GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Шлюз" @@ -2066,7 +2062,7 @@ msgstr "Шлюз" msgid "Gateway address is invalid" msgstr "Неверный адрес шлюза" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "Порты шлюза" @@ -2079,16 +2075,12 @@ msgstr "Основные настройки" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "Основные настройки" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "Основные настройки opkg" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "Создать config" @@ -2105,7 +2097,7 @@ msgstr "Создать архив" msgid "Generic 802.11%s Wireless Controller" msgstr "Беспроводной 802.11%s контроллер" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "Введённые пароли не совпадают, пароль не изменён!" @@ -2113,14 +2105,14 @@ msgstr "Введённые пароли не совпадают, пароль н msgid "Global Settings" msgstr "Основные настройки" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "Основные настройки сети" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "Перейти к настройке пароля..." @@ -2153,7 +2145,7 @@ msgstr "HT режим (802.11n)" msgid "Hang Up" msgstr "Перезапустить" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "Ошибки контроля ошибок заголовка (HEC)" @@ -2165,14 +2157,6 @@ msgstr "" "Здесь вы можете настроить основные параметры вашего устройства, такие как " "имя хоста или часовой пояс." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" -"Здесь вы можете добавить открытые SSH ключи (один ключ на строку) для SSH " -"аутентификации." - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2185,7 +2169,7 @@ msgid "Hide empty chains" msgstr "Скрыть пустые цепочки" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "Хост" @@ -2206,9 +2190,9 @@ msgid "Host-Uniq tag content" msgstr "Содержимое Host-Uniq тега" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2263,7 +2247,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Межсетевой экран IPv4" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "Основной IPv4" @@ -2287,9 +2271,9 @@ msgstr "IPv4-адрес шлюза" msgid "IPv4 netmask" msgstr "Маска сети IPv4" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" -msgstr "" +msgstr "Сеть IPv4 в формате адрес/маска подсети" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 msgid "IPv4 prefix" @@ -2332,11 +2316,11 @@ msgstr "IPv6 соседи (neighbours)" msgid "IPv6 Settings" msgstr "Настройки IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "IPv6 ULA-Prefix" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "Основной IPv6" @@ -2358,9 +2342,9 @@ msgstr "IPv6 назначение длины" msgid "IPv6 gateway" msgstr "IPv6-адрес шлюза" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" -msgstr "" +msgstr "Сеть IPv6 в формате адрес/маска подсети" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 @@ -2518,7 +2502,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "Промежуток времени бездействия" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "Входящий:" @@ -2538,10 +2522,6 @@ msgstr "Скрипт инициализации" msgid "Initscripts" msgstr "Скрипты инициализации" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Установить" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "Для поддержки IPv6, установите пакет iputils-traceroute6" @@ -2554,17 +2534,13 @@ msgstr "Установить пакет %q" msgid "Install protocol extensions..." msgstr "Установить расширения протокола..." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "Установленные пакеты" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Интерфейс" @@ -2642,7 +2618,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "Требуется JavaScript!" @@ -2667,7 +2643,7 @@ msgstr "Сохранить настройки" msgid "Kernel Log" msgstr "Журнал ядра" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Версия ядра" @@ -2713,7 +2689,7 @@ msgstr "Порог ошибок эхо-запросов LCP" msgid "LCP echo interval" msgstr "Интервал эхо-запросов LCP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2730,7 +2706,7 @@ msgstr "Язык" msgid "Language and Style" msgstr "Язык и тема" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "Задержка" @@ -2738,7 +2714,7 @@ msgstr "Задержка" msgid "Leaf" msgstr "Лист" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "Время аренды адреса" @@ -2781,19 +2757,19 @@ msgstr "Ограничение сервиса DNS, для подсетей ин� msgid "Limit listening to these interfaces, and loopback." msgstr "Ограничьте прослушивание этих интерфейсов и замыкание на себя." -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "Затухание линии (LATN)" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "Режим линии" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "Состояние Линии" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "Время бесперебойной работы линии" @@ -2857,7 +2833,7 @@ msgstr "Интерфейс для входящих соединений" msgid "Listen Port" msgstr "Порт для входящих соединений" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Принимать подключения только на указанном интерфейсе или, если интерфейс не " @@ -2873,7 +2849,7 @@ msgstr "Порт для входящих DNS-запросов" msgid "Load" msgstr "Загрузка" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Средняя загрузка" @@ -2883,6 +2859,10 @@ msgstr "Средняя загрузка" msgid "Loading" msgstr "Загрузка" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "Загрузка SSH ключей..." + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "Неверный локальный IP-адрес" @@ -2912,7 +2892,7 @@ msgstr "Только локальный DNS" msgid "Local Startup" msgstr "Запуск пакетов и служб пользователя, при включении устройства" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Дата и время" @@ -2972,11 +2952,11 @@ msgstr "Настройка журнала" msgid "Login" msgstr "Войти" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Выйти" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "Потеря сигнала в секундах (LOSS)" @@ -2991,9 +2971,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-адрес" @@ -3029,7 +3009,7 @@ msgstr "МБ/с" msgid "MD5" msgstr "MD5" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "МГц" @@ -3057,7 +3037,7 @@ msgstr "" msgid "Manual" msgstr "Вручную" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Max. Attainable Data Rate (ATTNDR)" @@ -3094,16 +3074,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "Максимальное количество арендованных адресов" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Мбит/с" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Оперативная память (RAM)" @@ -3146,11 +3126,11 @@ msgstr "Мобильный домен" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Режим" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "Модель" @@ -3189,7 +3169,7 @@ msgstr "Настройка config файла fstab (/etc/config/fstab)" msgid "Mount Point" msgstr "Точка монтирования" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3215,7 +3195,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "Монтирование несконфигурированного раздела" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "Опции монтирования" @@ -3286,15 +3266,15 @@ msgstr "Имя новой сети" msgid "Navigation" msgstr "Навигация" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Маска сети" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3320,6 +3300,10 @@ msgstr "Сеть без интерфейсов." msgid "Next »" msgstr "Следующий »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "Нет" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "DHCP-сервер не настроен для этого интерфейса" @@ -3332,9 +3316,9 @@ msgstr "Без NAT-T" msgid "No files found" msgstr "Файлы не найдены" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "Нет доступной информации" @@ -3354,18 +3338,18 @@ msgstr "Не настроена сеть на устройстве" msgid "No network name specified" msgstr "Не задано имя сети" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "Список пакетов не доступен" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "Пароль не установлен!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "Нет публичных ключей" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "Нет правил в данной цепочке" @@ -3378,23 +3362,23 @@ msgstr "Результаты сканирования пока недоступ� msgid "No zone assigned" msgstr "Зона не присвоена" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Шум" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "Соотношение сигнал/шум (SNR)" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Шум:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "Non Pre-emtive CRC errors (CRC_P)" @@ -3420,8 +3404,8 @@ msgstr "Не найдено" msgid "Not associated" msgstr "Не связанный" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "Не подключено" @@ -3447,14 +3431,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "Количество параллельных потоков используемых для компрессии" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "OK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "Настройка OPKG" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "Obfuscated Group Password" @@ -3495,7 +3471,7 @@ msgstr "" msgid "On-State Delay" msgstr "Задержка включенного состояния" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "Должен быть указан либо MAC-адрес, либо имя хоста!" @@ -3609,7 +3585,7 @@ msgstr "" msgid "Options" msgstr "Опции" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "Другие:" @@ -3617,7 +3593,7 @@ msgstr "Другие:" msgid "Out" msgstr "Вне" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "Исходящий:" @@ -3754,7 +3730,7 @@ msgstr "PSID смещение" msgid "PSID-bits length" msgstr "PSID длина в битах" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "PTM/EFM (Packet Transfer Mode)" @@ -3762,15 +3738,6 @@ msgstr "PTM/EFM (Packet Transfer Mode)" msgid "Package libiwinfo required!" msgstr "Требуется пакет libiwinfo!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "Список пакетов обновлялся более 24 часов назад" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Имя пакета" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Пакеты" @@ -3781,13 +3748,13 @@ msgstr "Часть зоны %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Пароль" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "С помощью пароля" @@ -3799,14 +3766,14 @@ msgstr "Пароль к Приватному ключу" msgid "Password of inner Private Key" msgstr "Пароль к внутреннему Приватному ключу" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "Пароль успешно изменён!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "Пароль2" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "Перетащите файл SSH ключа или вставьте содержимое..." + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Путь к CA-Сертификату" @@ -3831,17 +3798,17 @@ msgstr "Путь к внутренним Client-Сертификатам" msgid "Path to inner Private Key" msgstr "Путь к внутреннему Приватному ключу" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "Пиковая:" @@ -3873,7 +3840,7 @@ msgstr "Выполнить сброс" msgid "Persistent Keep Alive" msgstr "Постоянно держать включенным" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "Скорость:" @@ -3901,16 +3868,11 @@ msgstr "Пакетов" msgid "Please enter your username and password." msgstr "Введите логин и пароль." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "Пожалуйста обновите список пакетов" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "Политика" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Порт" @@ -3918,11 +3880,11 @@ msgstr "Порт" msgid "Port status:" msgstr "Состояние порта:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "Режим управления питанием" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "Pre-emtive CRC errors (CRCP_P)" @@ -3934,7 +3896,7 @@ msgstr "Предпочитать LTE" msgid "Prefer UMTS" msgstr "Предпочитать UMTS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "Делегированный префикс" @@ -3955,7 +3917,7 @@ msgstr "" "Предполагать, что узел недоступен после указанного количества ошибок " "получения эхо-пакета LCP, введите '0' для игнорирования ошибок" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "Запретить прослушивание этих интерфейсов." @@ -3977,7 +3939,7 @@ msgstr "Продолжить" msgid "Processes" msgstr "Процессы" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "Профиль" @@ -3987,9 +3949,9 @@ msgstr "Прот." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Протокол" @@ -4017,6 +3979,18 @@ msgstr "Псевдо Ad-Hoc (ahdemo)" msgid "Public Key" msgstr "Публичный ключ" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" +"Публичные SSH ключи позволяют выполнять беспарольный SSH вход с большим " +"уровнем безопасности по сравнению с использованием входа по паролю. Чтобы " +"загрузить новый публичный SSH ключ, вставьте строку публичного OpenSSH ключа " +"или перетащите <code>.pub</code> файл в поле ввода ключа." + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -4028,7 +4002,7 @@ msgid "QMI Cellular" msgstr "QMI сотовый" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "Качество" @@ -4063,7 +4037,7 @@ msgstr "Порог RTS/CTS" msgid "RX" msgstr "Получение (RX)" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "Скорость получения" @@ -4131,7 +4105,7 @@ msgstr "Действительно сбросить все изменения?" msgid "Really switch protocol?" msgstr "Вы действительно хотите изменить протокол?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "Соединения в реальном времени" @@ -4139,15 +4113,15 @@ msgstr "Соединения в реальном времени" msgid "Realtime Graphs" msgstr "Графики в реальном времени" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "Загрузка в реальном времени" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "Трафик в реальном времени" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "Беспроводная сеть в реальном времени" @@ -4159,7 +4133,7 @@ msgstr "Срок Реассоциации" msgid "Rebind protection" msgstr "Защита от DNS Rebinding" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Перезагрузка" @@ -4222,7 +4196,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "Удалённый IPv4-адрес или FQDN" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Удалить" @@ -4294,7 +4267,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Сбросить" @@ -4337,6 +4309,8 @@ msgid "Restore backup" msgstr "Восстановить резервную копию" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "Показать/скрыть пароль" @@ -4346,15 +4320,15 @@ msgstr "Показать/скрыть пароль" msgid "Revert" msgstr "Вернуть" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "Вернуть изменения" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "Ошибка <code>%h</code> отмены конфигурации" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "Отмена конфигурации..." @@ -4383,7 +4357,8 @@ msgstr "Тип маршрута" msgid "Router Advertisement-Service" msgstr "Доступные режимы работы" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "Пароль маршрутизатора" @@ -4405,11 +4380,11 @@ msgstr "" msgid "Rule" msgstr "Правило" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "Проверять файловую систему перед монтированием раздела" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "Проверить" @@ -4417,11 +4392,12 @@ msgstr "Проверить" msgid "SHA256" msgstr "SHA256" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "SNR" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "Доступ по SSH" @@ -4437,7 +4413,8 @@ msgstr "Порт сервера SSH" msgid "SSH username" msgstr "SSH логин" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "SSH-ключи" @@ -4446,17 +4423,18 @@ msgstr "SSH-ключи" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 msgid "SWAP" -msgstr "" +msgstr "Разделы подкачки (swap)" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Сохранить" @@ -4473,6 +4451,10 @@ msgstr "Сохранить MTD раздел" msgid "Save mtdblock contents" msgstr "Сохранить содержимое MTD раздела" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "Сохранение ключей..." + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Поиск" @@ -4481,7 +4463,7 @@ msgstr "Поиск" msgid "Scan request failed" msgstr "Ошибка запроса на сканирование" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Запланированные задания" @@ -4494,7 +4476,7 @@ msgstr "Строки добавлены" msgid "Section removed" msgstr "Строки удалены" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "Для подробной информации обратитесь к справке по 'mount' (man mount)" @@ -4542,6 +4524,14 @@ msgstr "Тип службы" msgid "Services" msgstr "Сервисы" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "Сессия истекла" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "Установить VPN в качестве маршрута по умолчанию" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4565,11 +4555,11 @@ msgstr "Ошибка установки режима работы" msgid "Setup DHCP Server" msgstr "Настроить сервер DHCP" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "Секунды с большим числом ошибок (SES)." -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "Short GI" @@ -4589,22 +4579,22 @@ msgstr "Показать пустые цепочки" msgid "Shutdown this interface" msgstr "Выключить этот интерфейс" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Сигнал" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "Затухание сигнала (SATN)" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "Сигнал:" @@ -4612,10 +4602,6 @@ msgstr "Сигнал:" msgid "Size" msgstr "Размер" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "Размер (.ipk)" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "Размер кэша DNS запроса" @@ -4643,12 +4629,7 @@ msgstr "Перейти к навигации" msgid "Slot time" msgstr "Время слота" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Программное обеспечение" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "Программное обеспечение VLAN" @@ -4674,7 +4655,7 @@ msgstr "" "должна быть установлена вручную. Обратитесь к wiki для получения конкретных " "инструкций для вашего устройства." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4684,7 +4665,7 @@ msgstr "Источник" msgid "Specifies the directory the device is attached to" msgstr "Папка, к которой монтируется раздел устройства" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "Порт данного процесса <em>Dropbear</em>" @@ -4737,7 +4718,7 @@ msgstr "Старт" msgid "Start priority" msgstr "Приоритет" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "Применение конфигурации..." @@ -4745,7 +4726,7 @@ msgstr "Применение конфигурации..." msgid "Starting wireless scan..." msgstr "Начато сканирование беспроводных сетей..." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "Загрузка" @@ -4757,7 +4738,7 @@ msgstr "Статические маршруты IPv4" msgid "Static IPv6 Routes" msgstr "Статические маршруты IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Постоянные аренды" @@ -4765,11 +4746,11 @@ msgstr "Постоянные аренды" msgid "Static Routes" msgstr "Статические маршруты" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "Статический адрес" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4786,8 +4767,7 @@ msgstr "Максимально допустимое время бездейст� #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Состояние" @@ -4812,7 +4792,7 @@ msgstr "Подавить логирование" msgid "Suppress logging of the routine operation of these protocols" msgstr "Подавить логирование стандартной работы этих протоколов" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "Раздел подкачки (swap)" @@ -4844,7 +4824,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "Изменить маску порта" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "Изменить VLAN" @@ -4862,7 +4842,7 @@ msgid "Synchronizing..." msgstr "Синхронизация..." #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4882,7 +4862,7 @@ msgstr "Свойства системы" msgid "System log buffer size" msgstr "Размер системного журнала" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4900,7 +4880,7 @@ msgstr "TFTP сервер root" msgid "TX" msgstr "Передача (TX)" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "Cкорость передачи" @@ -4985,7 +4965,7 @@ msgstr "Архив резервной копии не является прав� msgid "The configuration file could not be loaded due to the following error:" msgstr "Не удалось загрузить config файл из-за следующей ошибки:" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -5037,6 +5017,17 @@ msgstr "Следующие настройки были отвергнуты" msgid "The following rules are currently active on this system." msgstr "На данном устройстве активны следующие правила." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "Указанный публичный SSH ключ уже добавлен." + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" +"Указанный публичный SSH ключ неверный. Укажите правильный RSA или ECDSA ключ." + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "Заданное имя сети не является уникальным" @@ -5092,13 +5083,13 @@ msgstr "Для выбранного протокола необходимо за msgid "The submitted security token is invalid or already expired!" msgstr "Представленный маркер безопасности недействителен или уже истек!" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "Идёт удаление настроек раздела с последующей перезагрузкой системы." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " "few minutes before you try to reconnect. It might be necessary to renew the " @@ -5110,6 +5101,10 @@ msgstr "" "потребуется обновить адрес компьютера, чтобы снова подключиться к " "устройству, в зависимости от настроек." +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "Пароль администратора успешно изменен." + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -5118,12 +5113,16 @@ msgstr "" "Загруженный файл прошивки не поддерживается. Проверьте, что вы загрузили " "подходящую прошивку для чипа вашего устройства." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Тема" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "Нет активных арендованных адресов." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "Нет изменений для применения." @@ -5147,7 +5146,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5239,7 +5238,7 @@ msgid "" "their status." msgstr "Страница содержит работающие процессы и их состояние." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "" "Страница содержит список всех активных на данный момент сетевых соединений." @@ -5266,6 +5265,10 @@ msgstr "Интервал регенерации ключей GTK" msgid "Timezone" msgstr "Часовой пояс" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "Аутентификация..." + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5277,12 +5280,12 @@ msgstr "" "прошивки к исходному состоянию нажмите 'Выполнить сброс' (возможно только " "для squashfs-образов)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "Тон" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Всего доступно" @@ -5297,7 +5300,7 @@ msgstr "Трассировка" msgid "Traffic" msgstr "Трафик" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Передача" @@ -5332,7 +5335,7 @@ msgstr "Режим работы" msgid "Tunnel ID" msgstr "Идентификатор туннеля" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "Интерфейс туннеля" @@ -5347,12 +5350,12 @@ msgid "Tx-Power" msgstr "Мощность передатчика" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Тип" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5406,36 +5409,36 @@ msgstr "Не удалось разрешить AFTR имя хоста" msgid "Unable to resolve peer host name" msgstr "Не удалось разрешить имя хоста пира" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "Секунды неготовности (UAS)" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "Неизвестно" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "Неизвестная ошибка, пароль не был изменен!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "Неизвестная ошибка (%s)" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "Неуправляемый" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "Отмонтировать" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "Ключ без имени" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Непринятые изменения" @@ -5455,10 +5458,6 @@ msgstr "Неподдерживаемый тип протокола." msgid "Up" msgstr "Вверх" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "Обновить списки" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5480,7 +5479,7 @@ msgstr "Загруженный файл" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Время работы" @@ -5596,7 +5595,7 @@ msgstr "Использовать метрику шлюза" msgid "Use routing table" msgstr "Использовать таблицу маршрутизации" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5641,11 +5640,11 @@ msgstr "Ключ пользователя (PEM encoded)" msgid "Username" msgstr "Имя пользователя" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "VDSL" @@ -5696,11 +5695,6 @@ msgstr "" msgid "Verify" msgstr "Проверить" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Версия" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "Виртуальный динамический винтерфейс" @@ -5751,7 +5745,7 @@ msgstr "Ожидание применения изменений..." msgid "Waiting for command to complete..." msgstr "Ожидание завершения выполнения команды..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "Ожидание применения конфигурации... %d сек" @@ -5788,16 +5782,16 @@ msgstr "WireGuard VPN" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "Wi-Fi" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Беспроводной адаптер" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Беспроводная сеть" @@ -5812,13 +5806,13 @@ msgstr "Безопасность беспроводной сети" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "Беспроводная сеть отключена" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "Беспроводная сеть не связана" @@ -5842,6 +5836,10 @@ msgstr "Записывать полученные DNS-запросы в сист msgid "Write system log to file" msgstr "Записывать системные события в файл" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "Да" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5857,7 +5855,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5894,9 +5892,9 @@ msgstr "Размер ZRam" msgid "any" msgstr "любой" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5913,7 +5911,7 @@ msgstr "авто" msgid "baseT" msgstr "baseT" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "соед. мостом" @@ -5932,24 +5930,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "Создаёт мост для выбранных сетевых интерфейсов" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "дБ" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "дБм" @@ -5991,9 +5989,9 @@ msgstr "полный дуплекс" msgid "half-duplex" msgstr "полудуплекс" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" -msgstr "" +msgstr "значение в шестнадцатеричном представлении" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:162 msgid "hidden" @@ -6013,46 +6011,46 @@ msgstr "если сеть" msgid "input" msgstr "ввод" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "кБ" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "кБ/с" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "кбит/с" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" -msgstr "" +msgstr "ключ длиной от 8 до 63 символов" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" -msgstr "" +msgstr "ключ длиной 5 или 13 символов" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" @@ -6076,18 +6074,9 @@ msgstr "нет" msgid "no link" msgstr "нет соединения" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "ничего" +msgstr "не пустое значение" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 @@ -6100,7 +6089,7 @@ msgstr "не существует" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "выключено" @@ -6108,15 +6097,17 @@ msgstr "выключено" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "включено" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" msgstr "" +"одно из:\n" +"- %s" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:71 msgid "open" @@ -6130,13 +6121,13 @@ msgstr "вывод" msgid "overlay" msgstr "overlay" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" -msgstr "" +msgstr "положительное десятичное число" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" -msgstr "" +msgstr "положительное целое число" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 msgid "random" @@ -6148,7 +6139,7 @@ msgstr "случайно" msgid "relay mode" msgstr "режим передачи" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "маршрутизируемый" @@ -6182,9 +6173,9 @@ msgstr "с тегом" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "единицы измерения времени (TUs / 1.024 ms) [1000-65535]" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" -msgstr "" +msgstr "уникальное значение" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:69 msgid "unknown" @@ -6209,161 +6200,161 @@ msgstr "не определено -или- создать:" msgid "untagged" msgstr "без тега" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" -msgstr "" +msgstr "верный IP-адрес" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" -msgstr "" +msgstr "верный IP-адрес или префикс" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" -msgstr "" +msgstr "верная IPv4 CIDR" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" -msgstr "" +msgstr "верный IPv4 адрес" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" -msgstr "" +msgstr "верный IPv4 адрес или сеть" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" -msgstr "" +msgstr "верный IPv4 адрес:порт" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" -msgstr "" +msgstr "верная IPv4 сеть" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" -msgstr "" +msgstr "верная IPv4 или IPv6 CIDR" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" -msgstr "" +msgstr "верное значение IPv4 префикса (0-32)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" -msgstr "" +msgstr "верная IPv6 CIDR" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" -msgstr "" +msgstr "верный IPv6 адрес" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" -msgstr "" +msgstr "верный IPv6 адрес или префикс" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" -msgstr "" +msgstr "верный IPv6 идентификатор хоста" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" -msgstr "" +msgstr "верная IPv6 ctnm" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" -msgstr "" +msgstr "верное значение IPv6 префикса (0-128)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" -msgstr "" +msgstr "верный MAC адрес" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" -msgstr "" +msgstr "верный UCI идентификатор" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" -msgstr "" +msgstr "верный UCI идентификатор, имя хоста или IP-адрес" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" -msgstr "" +msgstr "верный адрес:порт" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" -msgstr "" +msgstr "верная дата (ГГГГ-ММ-ДД)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" -msgstr "" +msgstr "верное десятичное число" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" -msgstr "" +msgstr "верное шестнадцатеричное значение WEP ключа" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" -msgstr "" +msgstr "верное шестнадцатеричное значение WPA ключа" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" -msgstr "" +msgstr "верное имя хоста:порт" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" -msgstr "" +msgstr "верное имя хоста" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" -msgstr "" +msgstr "верное имя хоста или IP-адрес" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" -msgstr "" +msgstr "верное целое число" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" -msgstr "" +msgstr "верная сеть в формате адрес/маска подсети" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" +msgstr "верный символ номера телефона (0-9, \"*\", \"#\", \"!\" or \".\")" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" -msgstr "" +msgstr "верный порт или диапазон портов (порт1-порт2)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" -msgstr "" +msgstr "верное значение порта" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" -msgstr "" +msgstr "верное время (ЧЧ:ММ:СС)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" -msgstr "" +msgstr "значение длиной от %d до %d символов" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" -msgstr "" +msgstr "значение в диапазоне от %f до %f" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" -msgstr "" +msgstr "значение больше или равное %f" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" -msgstr "" +msgstr "значение меньше или равное %f" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" -msgstr "" +msgstr "значение длиной %d или менее символов" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" -msgstr "" +msgstr "значение длиной %d или более символов" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 @@ -6375,6 +6366,129 @@ msgstr "да" msgid "« Back" msgstr "« Назад" +#~ msgid "Apply unchecked" +#~ msgstr "Применить без проверки" + +#~ msgid "" +#~ "The device could not be reached within %d seconds after applying the " +#~ "pending changes, which caused the configuration to be rolled back for " +#~ "safety reasons. If you believe that the configuration changes are correct " +#~ "nonetheless, perform an unchecked configuration apply. Alternatively, you " +#~ "can dismiss this warning and edit changes before attempting to apply " +#~ "again, or revert all pending changes to keep the currently working " +#~ "configuration state." +#~ msgstr "" +#~ "Устройство недоступно в течение %d секунд после применения изменений. Это " +#~ "привело к откату конфигурации из соображений безопасности. Если вы " +#~ "считаете, что конфигурация верна, выполните настройку без проверки. Кроме " +#~ "того, вы можете отклонить это предупреждение и отредактировать изменения " +#~ "перед попыткой применить конфигурацию снова или откатить все изменения, " +#~ "чтобы сохранить рабочее состояние конфигурации." + +#~ msgid "Waiting for configuration to get applied… %ds" +#~ msgstr "Ожидание применения конфигурации... %d сек" + +#~ msgid "" +#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " +#~ "authentication." +#~ msgstr "" +#~ "Здесь вы можете добавить открытые SSH ключи (один ключ на строку) для SSH " +#~ "аутентификации." + +#~ msgid "Password successfully changed!" +#~ msgstr "Пароль успешно изменён!" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "Неизвестная ошибка, пароль не был изменен!" + +#~ msgid "Design" +#~ msgstr "Тема" + +#~ msgid "Available packages" +#~ msgstr "Доступные пакеты" + +#~ msgid "Bind only to specific interfaces rather than wildcard address." +#~ msgstr "" +#~ "Соединение только с определенными интерфейсами, не использующими " +#~ "подстановочные адреса (wildcard)." + +#~ msgid "" +#~ "Build/distribution specific feed definitions. This file will NOT be " +#~ "preserved in any sysupgrade." +#~ msgstr "" +#~ "Build/distribution оригинальные feed-ы. Изменения в этом файле НЕ " +#~ "сохранятся при перепрошивке sysupgrade-совместимым образом." + +#~ msgid "" +#~ "Custom feed definitions, e.g. private feeds. This file can be preserved " +#~ "in a sysupgrade." +#~ msgstr "" +#~ "Custom-ные feed-ы — это пользовательские feed-ы. Этот файл может быть " +#~ "сохранен при перепрошивке sysupgrade-совместимым образом." + +#~ msgid "Custom feeds" +#~ msgstr "Список custom-ных feed-ов" + +#~ msgid "Displaying only packages containing" +#~ msgstr "Показываются только пакеты, содержащие" + +#~ msgid "Distribution feeds" +#~ msgstr "Список feed-ов дистрибутива" + +#~ msgid "Download and install package" +#~ msgstr "Загрузить и установить пакет" + +#~ msgid "Filter" +#~ msgstr "Фильтр" + +#~ msgid "Find package" +#~ msgstr "Найти пакет" + +#~ msgid "Free space" +#~ msgstr "Свободное место" + +#~ msgid "General options for opkg" +#~ msgstr "Основные настройки opkg" + +#~ msgid "Install" +#~ msgstr "Установить" + +#~ msgid "Installed packages" +#~ msgstr "Установленные пакеты" + +#~ msgid "No package lists available" +#~ msgstr "Список пакетов не доступен" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "OPKG-Configuration" +#~ msgstr "Настройка OPKG" + +#~ msgid "Package lists are older than 24 hours" +#~ msgstr "Список пакетов обновлялся более 24 часов назад" + +#~ msgid "Package name" +#~ msgstr "Имя пакета" + +#~ msgid "Please update package lists first" +#~ msgstr "Пожалуйста обновите список пакетов" + +#~ msgid "Size (.ipk)" +#~ msgstr "Размер (.ipk)" + +#~ msgid "Software" +#~ msgstr "Программное обеспечение" + +#~ msgid "Update lists" +#~ msgstr "Обновить списки" + +#~ msgid "Version" +#~ msgstr "Версия" + +#~ msgid "none" +#~ msgstr "ничего" + #~ msgid "Disable DNS setup" #~ msgstr "Отключить DNS настройки" diff --git a/modules/luci-base/po/sk/base.po b/modules/luci-base/po/sk/base.po index 14fe2e3fc5..671d43c457 100644 --- a/modules/luci-base/po/sk/base.po +++ b/modules/luci-base/po/sk/base.po @@ -1,17 +1,22 @@ msgid "" msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: PACKAGE VERSION\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" +"Language: \n" "MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -44,16 +49,16 @@ msgstr "" msgid "-- Additional Field --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "" @@ -77,11 +82,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "" @@ -93,7 +98,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "" @@ -147,7 +152,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "" @@ -172,11 +177,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "" @@ -185,12 +190,12 @@ msgstr "" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -216,19 +221,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -242,37 +251,37 @@ msgstr "" msgid "ARP retry threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " "to dial into the provider network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -287,8 +296,6 @@ msgstr "" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "" @@ -300,8 +307,8 @@ msgstr "" msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "" @@ -328,6 +335,13 @@ msgstr "" msgid "Add" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" @@ -344,8 +358,8 @@ msgstr "" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "" @@ -361,7 +375,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -369,7 +383,7 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -377,7 +391,7 @@ msgstr "" msgid "Alert" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -400,7 +414,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" @@ -426,15 +440,15 @@ msgstr "" msgid "Allow localhost" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "" @@ -457,64 +471,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -560,15 +574,15 @@ msgstr "" msgid "Any zone" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -589,11 +603,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -624,8 +638,8 @@ msgstr "" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "" @@ -668,29 +682,25 @@ msgstr "" msgid "Available" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -701,7 +711,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "" @@ -731,7 +741,7 @@ msgstr "" msgid "Backup" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "" @@ -759,12 +769,14 @@ msgid "" "defined backup patterns." msgstr "" -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -773,7 +785,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "" @@ -781,7 +793,7 @@ msgstr "" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "" @@ -789,7 +801,7 @@ msgstr "" msgid "Bridge interfaces" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "" @@ -805,16 +817,10 @@ msgstr "" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -829,6 +835,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "" @@ -851,6 +858,12 @@ msgstr "" msgid "Chain" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -860,20 +873,24 @@ msgstr "" msgid "Changes applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "" @@ -948,6 +965,11 @@ msgstr "" msgid "Client ID to send when requesting DHCP" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -965,16 +987,16 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1005,8 +1027,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "" @@ -1018,15 +1038,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "" @@ -1035,8 +1055,8 @@ msgid "Connect" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "" @@ -1052,7 +1072,7 @@ msgstr "" msgid "Connections" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1109,16 +1129,6 @@ msgstr "" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1141,7 +1151,7 @@ msgstr "" msgid "DHCP and DNS" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "" @@ -1161,16 +1171,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "" @@ -1198,16 +1208,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1219,7 +1229,7 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1233,6 +1243,10 @@ msgstr "" msgid "Default %d" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1267,6 +1281,11 @@ msgstr "" msgid "Delete" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "" @@ -1275,16 +1294,11 @@ msgstr "" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "" @@ -1292,8 +1306,8 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1310,7 +1324,7 @@ msgstr "" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1376,18 +1390,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1397,10 +1414,6 @@ msgstr "" msgid "Distance to farthest network member in meters." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "" @@ -1425,6 +1438,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "" @@ -1447,10 +1464,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "" @@ -1459,15 +1472,15 @@ msgstr "" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1635,8 +1648,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "" @@ -1644,7 +1657,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "" @@ -1664,7 +1677,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "" @@ -1673,19 +1686,19 @@ msgstr "" msgid "Error" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1693,11 +1706,11 @@ msgstr "" msgid "Expand hosts" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "" @@ -1746,7 +1759,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1764,10 +1777,6 @@ msgstr "" msgid "Filesystem" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "" @@ -1790,10 +1799,6 @@ msgstr "" msgid "Find and join network" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "" @@ -1814,11 +1819,11 @@ msgstr "" msgid "Firewall Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "" @@ -1842,7 +1847,7 @@ msgstr "" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "" @@ -1890,7 +1895,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1902,7 +1907,7 @@ msgstr "" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "" @@ -1915,15 +1920,11 @@ msgstr "" msgid "Frame Bursting" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1932,7 +1933,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "" @@ -1941,8 +1942,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "" @@ -1950,7 +1951,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "" @@ -1963,16 +1964,12 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -1989,7 +1986,7 @@ msgstr "" msgid "Generic 802.11%s Wireless Controller" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "" @@ -1997,14 +1994,14 @@ msgstr "" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "" @@ -2037,7 +2034,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2047,12 +2044,6 @@ msgid "" "the timezone." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2065,7 +2056,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2086,9 +2077,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2143,7 +2134,7 @@ msgstr "" msgid "IPv4 Firewall" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2167,7 +2158,7 @@ msgstr "" msgid "IPv4 netmask" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2212,11 +2203,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2238,7 +2229,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2385,7 +2376,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "" @@ -2405,10 +2396,6 @@ msgstr "" msgid "Initscripts" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2421,17 +2408,13 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "" @@ -2505,7 +2488,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "" @@ -2530,7 +2513,7 @@ msgstr "" msgid "Kernel Log" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "" @@ -2576,7 +2559,7 @@ msgstr "" msgid "LCP echo interval" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "" @@ -2593,7 +2576,7 @@ msgstr "" msgid "Language and Style" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2601,7 +2584,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2644,19 +2627,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2708,7 +2691,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -2722,7 +2705,7 @@ msgstr "" msgid "Load" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "" @@ -2732,6 +2715,10 @@ msgstr "" msgid "Loading" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2761,7 +2748,7 @@ msgstr "" msgid "Local Startup" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "" @@ -2814,11 +2801,11 @@ msgstr "" msgid "Login" msgstr "" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2833,9 +2820,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "" @@ -2871,7 +2858,7 @@ msgstr "" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "" @@ -2897,7 +2884,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -2932,16 +2919,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "" @@ -2984,11 +2971,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3027,7 +3014,7 @@ msgstr "" msgid "Mount Point" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3051,7 +3038,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "" @@ -3122,15 +3109,15 @@ msgstr "" msgid "Navigation" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3156,6 +3143,10 @@ msgstr "" msgid "Next »" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "" @@ -3168,9 +3159,9 @@ msgstr "" msgid "No files found" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "" @@ -3190,18 +3181,18 @@ msgstr "" msgid "No network name specified" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "" @@ -3214,23 +3205,23 @@ msgstr "" msgid "No zone assigned" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3256,8 +3247,8 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "" @@ -3281,14 +3272,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3323,7 +3306,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -3423,7 +3406,7 @@ msgstr "" msgid "Options" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "" @@ -3431,7 +3414,7 @@ msgstr "" msgid "Out" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "" @@ -3566,7 +3549,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3574,15 +3557,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "" @@ -3593,13 +3567,13 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "" @@ -3611,14 +3585,14 @@ msgstr "" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "" @@ -3643,17 +3617,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "" @@ -3685,7 +3659,7 @@ msgstr "" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "" @@ -3713,16 +3687,11 @@ msgstr "" msgid "Please enter your username and password." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "" @@ -3730,11 +3699,11 @@ msgstr "" msgid "Port status:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3746,7 +3715,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3765,7 +3734,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3787,7 +3756,7 @@ msgstr "" msgid "Processes" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3797,9 +3766,9 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "" @@ -3827,6 +3796,14 @@ msgstr "" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3836,7 +3813,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "" @@ -3869,7 +3846,7 @@ msgstr "" msgid "RX" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "" @@ -3927,7 +3904,7 @@ msgstr "" msgid "Really switch protocol?" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "" @@ -3935,15 +3912,15 @@ msgstr "" msgid "Realtime Graphs" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "" @@ -3955,7 +3932,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "" @@ -4017,7 +3994,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "" @@ -4081,7 +4057,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "" @@ -4124,6 +4099,8 @@ msgid "Restore backup" msgstr "" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "" @@ -4133,15 +4110,15 @@ msgstr "" msgid "Revert" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4170,7 +4147,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "" @@ -4190,11 +4168,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "" @@ -4202,11 +4180,12 @@ msgstr "" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "" @@ -4222,7 +4201,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "" @@ -4231,7 +4211,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "" @@ -4242,6 +4222,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "" @@ -4258,6 +4239,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "" @@ -4266,7 +4251,7 @@ msgstr "" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "" @@ -4279,7 +4264,7 @@ msgstr "" msgid "Section removed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "" @@ -4322,6 +4307,14 @@ msgstr "" msgid "Services" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4344,11 +4337,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4368,22 +4361,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "" @@ -4391,10 +4384,6 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4422,12 +4411,7 @@ msgstr "" msgid "Slot time" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4450,7 +4434,7 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4460,7 +4444,7 @@ msgstr "" msgid "Specifies the directory the device is attached to" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "" @@ -4506,7 +4490,7 @@ msgstr "" msgid "Start priority" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4514,7 +4498,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "" @@ -4526,7 +4510,7 @@ msgstr "" msgid "Static IPv6 Routes" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "" @@ -4534,11 +4518,11 @@ msgstr "" msgid "Static Routes" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4552,8 +4536,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "" @@ -4578,7 +4561,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4608,7 +4591,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4626,7 +4609,7 @@ msgid "Synchronizing..." msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4646,7 +4629,7 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "" @@ -4664,7 +4647,7 @@ msgstr "" msgid "TX" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "" @@ -4737,7 +4720,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4776,6 +4759,16 @@ msgstr "" msgid "The following rules are currently active on this system." msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "" @@ -4821,13 +4814,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " "few minutes before you try to reconnect. It might be necessary to renew the " @@ -4835,18 +4828,26 @@ msgid "" "settings." msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -4868,7 +4869,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -4940,7 +4941,7 @@ msgid "" "their status." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "" @@ -4966,6 +4967,10 @@ msgstr "" msgid "Timezone" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -4973,12 +4978,12 @@ msgid "" "reset\" (only possible with squashfs images)." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "" @@ -4993,7 +4998,7 @@ msgstr "" msgid "Traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "" @@ -5028,7 +5033,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "" @@ -5043,12 +5048,12 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "" @@ -5102,36 +5107,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "" @@ -5151,10 +5156,6 @@ msgstr "" msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5172,7 +5173,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "" @@ -5288,7 +5289,7 @@ msgstr "" msgid "Use routing table" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5325,11 +5326,11 @@ msgstr "" msgid "Username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5379,11 +5380,6 @@ msgstr "" msgid "Verify" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5432,7 +5428,7 @@ msgstr "" msgid "Waiting for command to complete..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5465,16 +5461,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "" @@ -5489,13 +5485,13 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "" @@ -5519,6 +5515,10 @@ msgstr "" msgid "Write system log to file" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5530,7 +5530,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5562,9 +5562,9 @@ msgstr "" msgid "any" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5581,7 +5581,7 @@ msgstr "" msgid "baseT" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "" @@ -5600,24 +5600,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "" @@ -5657,7 +5657,7 @@ msgstr "" msgid "half-duplex" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5679,44 +5679,44 @@ msgstr "" msgid "input" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5742,19 +5742,10 @@ msgstr "" msgid "no link" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5766,7 +5757,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "" @@ -5774,11 +5765,11 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5796,11 +5787,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5814,7 +5805,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "" @@ -5848,7 +5839,7 @@ msgstr "" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -5875,159 +5866,159 @@ msgstr "" msgid "untagged" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" diff --git a/modules/luci-base/po/sv/base.po b/modules/luci-base/po/sv/base.po index 4d9500eb2f..ba9d003d7b 100644 --- a/modules/luci-base/po/sv/base.po +++ b/modules/luci-base/po/sv/base.po @@ -11,10 +11,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "%s är inte taggad i flera VLAN!" @@ -47,16 +51,16 @@ msgstr "(inga gränssnitt har bifogats)" msgid "-- Additional Field --" msgstr "-- Ytterligare fält --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Vänligen välj --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- anpassad --" @@ -80,11 +84,11 @@ msgstr "-- matcha enligt uuid --" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Belastning senaste minuten:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "Belastning senaste 15 minutrarna:" @@ -96,7 +100,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "Belastning senaste 5 minutrarna:" @@ -150,7 +154,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-adress" @@ -178,11 +182,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-gateway" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Lysdiod\">LED</abbr>-konfiguration" @@ -191,12 +195,12 @@ msgstr "<abbr title=\"Lysdiod\">LED</abbr>-konfiguration" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -224,19 +228,23 @@ msgstr "" "<br/>Notera att: du måste starta om cron-tjänsten om crontab-filen var tom " "innan den ändrades." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "A43C + J43 + A43" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "A43C + J43 + A43 + V43" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "ADSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "ANSI T1.413" @@ -250,37 +258,37 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "ATM-bryggor" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " "to dial into the provider network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -295,8 +303,6 @@ msgstr "Accesspunkt" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Åtgärder" @@ -308,8 +314,8 @@ msgstr "Aktiva <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-rutter" msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "Aktiva <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-rutter" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Aktiva anslutningar" @@ -336,6 +342,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Lägg till" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" @@ -352,8 +365,8 @@ msgstr "Ytterligare värdfiler" msgid "Additional servers file" msgstr "Ytterligare server-filer" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Adress" @@ -369,7 +382,7 @@ msgstr "Administration" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -377,7 +390,7 @@ msgstr "Administration" msgid "Advanced Settings" msgstr "Avancerade inställningar" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -385,7 +398,7 @@ msgstr "" msgid "Alert" msgstr "Varning" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -409,7 +422,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "Allokera IP sekventiellt" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Tillåt <abbr title=\"Secure Shell\">SSH</abbr> lösenordsautentisering" @@ -435,17 +448,17 @@ msgstr "Tillåt enbart listade" msgid "Allow localhost" msgstr "Tillåt localhost" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" "Tillåt fjärrstyrda värdar att ansluta via SSH till lokalt vidarebefordrade " "portar" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "Tillåt root-inloggningar med lösenord" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "Tillåt <em>root</em>-användaren att logga in med lösenord" @@ -468,64 +481,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -571,15 +584,15 @@ msgstr "Konfiguration av antenn" msgid "Any zone" msgstr "Någon zon" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -600,11 +613,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Associerade stationer" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -635,8 +648,8 @@ msgstr "Tillstånd krävs" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Uppdatera automatiskt" @@ -679,29 +692,25 @@ msgstr "Montera Swap automatiskt" msgid "Available" msgstr "Tillgänglig" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Tillgängliga paket" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Snitt:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "B43 + B43C" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "B43 + B43C + V43" @@ -712,7 +721,7 @@ msgstr "BR / DMR / AFTR" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -742,7 +751,7 @@ msgstr "Backa till skanningsresultat" msgid "Backup" msgstr "Säkerhetskopiera" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Säkerhetskopiera / Flasha inre mjukvara" @@ -770,21 +779,23 @@ msgid "" "defined backup patterns." msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" +msgstr "" + #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind interface" msgstr "Bind gränssnitt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." -msgstr "" - #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind the tunnel to this interface (optional)." msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Bithastighet" @@ -792,7 +803,7 @@ msgstr "Bithastighet" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Brygga" @@ -800,7 +811,7 @@ msgstr "Brygga" msgid "Bridge interfaces" msgstr "Brygga gränssnitt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "" @@ -816,16 +827,10 @@ msgstr "Broadcom 802.11%s Trådlös kontroller" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Broadcom BCM%04x 802.11 Trådlös kontroller" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "Buffrad" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -841,6 +846,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Avbryt" @@ -863,6 +869,12 @@ msgstr "" msgid "Chain" msgstr "Kedja" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -872,20 +884,24 @@ msgstr "Ändringar" msgid "Changes applied." msgstr "Tillämpade ändringar" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "Ändrar administratörens lösenord för att få tillgång till enheten" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Kanal" @@ -962,6 +978,11 @@ msgstr "Klient" msgid "Client ID to send when requesting DHCP" msgstr "Klient-ID att skicka vid DHCP-förfrågning" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -979,16 +1000,16 @@ msgstr "Stäng ner lista..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1019,8 +1040,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Konfiguration" @@ -1032,15 +1051,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Bekräftelse" @@ -1049,8 +1068,8 @@ msgid "Connect" msgstr "Anslut" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Ansluten" @@ -1066,7 +1085,7 @@ msgstr "" msgid "Connections" msgstr "Anslutningar" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1123,16 +1142,6 @@ msgstr "Anpassat gränssnitt" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "Anpassade flöden" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1155,7 +1164,7 @@ msgstr "DHCP-server" msgid "DHCP and DNS" msgstr "DHCP och DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "DHCP-klient" @@ -1175,16 +1184,16 @@ msgstr "DHCPv6-läge" msgid "DHCPv6-Service" msgstr "DHCPv6-tjänst" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1212,16 +1221,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "DSL-status" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1233,7 +1242,7 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "Datahastighet" @@ -1247,6 +1256,10 @@ msgstr "Avlusa" msgid "Default %d" msgstr "Standard %d" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1281,6 +1294,11 @@ msgstr "" msgid "Delete" msgstr "Radera" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Ta bort det här nätverket" @@ -1289,16 +1307,11 @@ msgstr "Ta bort det här nätverket" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Beskrivning" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Plats" @@ -1306,8 +1319,8 @@ msgstr "Plats" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1324,7 +1337,7 @@ msgstr "Enhetskonfiguration" msgid "Device is rebooting..." msgstr "Enheten startar om..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "Enheten kan inte nås" @@ -1392,18 +1405,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1413,10 +1429,6 @@ msgstr "Avståndsoptimering" msgid "Distance to farthest network member in meters." msgstr "Avstånd till nätverksmledlemmen längst bort i metrar." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Mångfald" @@ -1443,6 +1455,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Domän krävs" @@ -1467,10 +1483,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Ladda ner och installera paket" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "Ladda ner säkerhetskopia" @@ -1479,15 +1491,15 @@ msgstr "Ladda ner säkerhetskopia" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Dropbear-instans" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1655,8 +1667,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "" @@ -1664,7 +1676,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Kryptering" @@ -1684,7 +1696,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "Raderar..." @@ -1693,19 +1705,19 @@ msgstr "Raderar..." msgid "Error" msgstr "Fel" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Ethernet-adapter" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "Inkludera inte dessa gränssnitt" @@ -1713,11 +1725,11 @@ msgstr "Inkludera inte dessa gränssnitt" msgid "Expand hosts" msgstr "Expandera värdar" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Löper ut" @@ -1766,7 +1778,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1784,10 +1796,6 @@ msgstr "" msgid "Filesystem" msgstr "Filsystem" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Filtrera" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Filtrera privata" @@ -1810,10 +1818,6 @@ msgstr "" msgid "Find and join network" msgstr "Hitta och anslut till nätverk" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Hitta paket" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Avsluta" @@ -1834,11 +1838,11 @@ msgstr "Inställningar för brandvägg" msgid "Firewall Status" msgstr "Status för brandvägg" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Version för inre mjukvara" @@ -1862,7 +1866,7 @@ msgstr "" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "Skriver..." @@ -1910,7 +1914,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "Vidarebefordra DHCP-trafik" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1922,7 +1926,7 @@ msgstr "" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "Vidarebefordringsläge" @@ -1935,15 +1939,11 @@ msgstr "" msgid "Frame Bursting" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "Fritt" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Fritt utrymme" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1952,7 +1952,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "GHz" @@ -1961,8 +1961,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "Endast GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Gateway" @@ -1970,7 +1970,7 @@ msgstr "Gateway" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "Gateway-portar" @@ -1983,16 +1983,12 @@ msgstr "Generella inställningar" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "Generella alternativ för opkg" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "Generera konfig" @@ -2009,7 +2005,7 @@ msgstr "Generera arkiv" msgid "Generic 802.11%s Wireless Controller" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "Angiven lösenordsbekräftelse matchade inte, lösenordet ändrades inte!" @@ -2017,14 +2013,14 @@ msgstr "Angiven lösenordsbekräftelse matchade inte, lösenordet ändrades inte msgid "Global Settings" msgstr "Globala inställningar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "Globala nätverksalternativ" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "Gå till lösenordskonfiguration..." @@ -2057,7 +2053,7 @@ msgstr "HT-läge (802.11n)" msgid "Hang Up" msgstr "Lägg på" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2067,12 +2063,6 @@ msgid "" "the timezone." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2085,7 +2075,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "Värd" @@ -2106,9 +2096,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2163,7 +2153,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4-brandvägg" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2187,7 +2177,7 @@ msgstr "IPv4-gateway" msgid "IPv4 netmask" msgstr "IPv4-nätmask" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2232,11 +2222,11 @@ msgstr "IPV6-grannar" msgid "IPv6 Settings" msgstr "IPv6-inställningar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2258,7 +2248,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "IPv6-gateway" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2405,7 +2395,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "Ankommande" @@ -2425,10 +2415,6 @@ msgstr "Initskript" msgid "Initscripts" msgstr "Initskripten" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Installera" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "Installera iputils-traceroute6 för IPv6-traceroute" @@ -2441,17 +2427,13 @@ msgstr "Installera paketet %q" msgid "Install protocol extensions..." msgstr "Installera protokoll-förlängningar..." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "Installerade paket" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Gränssnitt" @@ -2525,7 +2507,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "JavaScript krävs!" @@ -2550,7 +2532,7 @@ msgstr "Behåll inställningar" msgid "Kernel Log" msgstr "Kernel-logg" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Kernel-version" @@ -2596,7 +2578,7 @@ msgstr "" msgid "LCP echo interval" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2613,7 +2595,7 @@ msgstr "Språk" msgid "Language and Style" msgstr "Språk och Stil" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "Latens" @@ -2621,7 +2603,7 @@ msgstr "Latens" msgid "Leaf" msgstr "Löv" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "Kontraktstid" @@ -2664,19 +2646,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2728,7 +2710,7 @@ msgstr "" msgid "Listen Port" msgstr "Lyssningsportar" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Lyssna endast på det angivna gränssnittet eller, om o-specificerat på alla" @@ -2743,7 +2725,7 @@ msgstr "Lyssningsportar för ankommande DNS-förfrågningar" msgid "Load" msgstr "Belastning" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Snitt-belastning" @@ -2753,6 +2735,10 @@ msgstr "Snitt-belastning" msgid "Loading" msgstr "Laddar" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2782,7 +2768,7 @@ msgstr "Enbart lokal tjänst" msgid "Local Startup" msgstr "Lokal uppstart" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Lokal tid" @@ -2835,11 +2821,11 @@ msgstr "" msgid "Login" msgstr "Logga in" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Logga ut" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2854,9 +2840,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-adress" @@ -2892,7 +2878,7 @@ msgstr "MB/s" msgid "MD5" msgstr "MD5" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "MHz" @@ -2918,7 +2904,7 @@ msgstr "" msgid "Manual" msgstr "Manuell" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -2953,16 +2939,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Minne" @@ -3005,11 +2991,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Läge" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "Modell" @@ -3048,7 +3034,7 @@ msgstr "" msgid "Mount Point" msgstr "Monteringspunkt" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3072,7 +3058,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "Monteringsalternativ" @@ -3143,15 +3129,15 @@ msgstr "Namnet på det nya nätverket" msgid "Navigation" msgstr "Navigering" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Nätmask" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3177,6 +3163,10 @@ msgstr "Nätverk utan gränssnitt" msgid "Next »" msgstr "Nästa »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "Det finns ingen DHCP-server inställd för det här gränssnittet" @@ -3189,9 +3179,9 @@ msgstr "Ingen NAT-T" msgid "No files found" msgstr "Inga filer hittades" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "Ingen information tillgänglig" @@ -3211,18 +3201,18 @@ msgstr "Det finns inget nätverk inställt på den här enheten" msgid "No network name specified" msgstr "Inget nätverksnamn angavs" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "Ingen paketlista tillgänglig" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "Inget lösenord inställt!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "Inga regler i den här kedjan" @@ -3235,23 +3225,23 @@ msgstr "" msgid "No zone assigned" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Buller" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Buller:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3277,8 +3267,8 @@ msgstr "Hittades inte" msgid "Not associated" msgstr "Inte associerad" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "Inte ansluten" @@ -3302,14 +3292,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "OK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3344,7 +3326,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "En utav värdnamn eller MAC-adress måste anges!" @@ -3444,7 +3426,7 @@ msgstr "" msgid "Options" msgstr "Alternativ" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "Andra:" @@ -3452,7 +3434,7 @@ msgstr "Andra:" msgid "Out" msgstr "Ut" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "Utgående" @@ -3587,7 +3569,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3595,15 +3577,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "Paketet libiwinfo krävs!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "Paket-listor är äldre än 24 timmar" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Paketnamn" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Paket" @@ -3614,13 +3587,13 @@ msgstr "Del av zon %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Lösenord" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Lösenordsautentisering" @@ -3632,14 +3605,14 @@ msgstr "Den privata nyckelns lösenord" msgid "Password of inner Private Key" msgstr "Lösenordet för den inre privata nyckeln" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "Ändring av lösenordet lyckades!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "Lösenord2" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Genväg till CA-certifikat" @@ -3664,17 +3637,17 @@ msgstr "Genväg till det inre klient-certifikatet" msgid "Path to inner Private Key" msgstr "Genväg till den inre privata nyckeln" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "" @@ -3706,7 +3679,7 @@ msgstr "Utför återställning" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "" @@ -3734,16 +3707,11 @@ msgstr "Pkt." msgid "Please enter your username and password." msgstr "Vänligen ange ditt användarnamn och lösenord." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3751,11 +3719,11 @@ msgstr "Port" msgid "Port status:" msgstr "Port-status:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3767,7 +3735,7 @@ msgstr "Föredra LTE" msgid "Prefer UMTS" msgstr "Föredra UMTS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3786,7 +3754,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "Förhindra lyssning på dessa gränssnitt." @@ -3808,7 +3776,7 @@ msgstr "Fortsätt" msgid "Processes" msgstr "Processer" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "Profil" @@ -3818,9 +3786,9 @@ msgstr "Prot." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protokoll" @@ -3848,6 +3816,14 @@ msgstr "" msgid "Public Key" msgstr "Publik nyckel" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3857,7 +3833,7 @@ msgid "QMI Cellular" msgstr "QMI-telefoni" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "Kvalité" @@ -3890,7 +3866,7 @@ msgstr "" msgid "RX" msgstr "RT" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "RX-hastighet" @@ -3950,7 +3926,7 @@ msgstr "Verkligen återställa alla ändringar?" msgid "Really switch protocol?" msgstr "Verkligen byta protokoll?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "Anslutningar i realtid" @@ -3958,15 +3934,15 @@ msgstr "Anslutningar i realtid" msgid "Realtime Graphs" msgstr "Realtidsgrafer" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "Trafik i realtid" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "Trådlöst i realtid" @@ -3978,7 +3954,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Starta om" @@ -4040,7 +4016,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Ta bort" @@ -4104,7 +4079,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Återställ" @@ -4147,6 +4121,8 @@ msgid "Restore backup" msgstr "Återställ säkerhetskopian" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "Visa/göm lösenord" @@ -4156,15 +4132,15 @@ msgstr "Visa/göm lösenord" msgid "Revert" msgstr "Återgå" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4193,7 +4169,8 @@ msgstr "Typ av rutt" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "Router-lösenord" @@ -4213,11 +4190,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "Kör en filsystemskontroll innan enheten monteras" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "Kör filsystemskontrollen" @@ -4225,11 +4202,12 @@ msgstr "Kör filsystemskontrollen" msgid "SHA256" msgstr "SHA256" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "SNR" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH-åtkomst" @@ -4245,7 +4223,8 @@ msgstr "SSH-serverns port" msgid "SSH username" msgstr "Användarnamn för SSH" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "SSH-nycklar" @@ -4254,7 +4233,7 @@ msgstr "SSH-nycklar" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4265,6 +4244,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Spara" @@ -4281,6 +4261,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Skanna" @@ -4289,7 +4273,7 @@ msgstr "Skanna" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Schemalagda uppgifter" @@ -4302,7 +4286,7 @@ msgstr "Sektionen lades till" msgid "Section removed" msgstr "Sektionen togs bort" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "" @@ -4345,6 +4329,14 @@ msgstr "Typ av tjänst" msgid "Services" msgstr "Tjänster" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4367,11 +4359,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "Ställ in DHCP-server" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4391,22 +4383,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "Stäng ner det här gränssnittet" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Signal" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "Signal:" @@ -4414,10 +4406,6 @@ msgstr "Signal:" msgid "Size" msgstr "Storlek" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "Storlek (.ipk)" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4445,12 +4433,7 @@ msgstr "Hoppa över till navigering" msgid "Slot time" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Mjukvara" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4473,7 +4456,7 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4483,7 +4466,7 @@ msgstr "Källa" msgid "Specifies the directory the device is attached to" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "Anger lyssningsporten för den här <em>Dropbear</em>-instansen" @@ -4529,7 +4512,7 @@ msgstr "" msgid "Start priority" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4537,7 +4520,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "" @@ -4549,7 +4532,7 @@ msgstr "Statiska IPv4-rutter" msgid "Static IPv6 Routes" msgstr "Statiska IPv6-rutter" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "" @@ -4557,11 +4540,11 @@ msgstr "" msgid "Static Routes" msgstr "Statiska rutter" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "Statiska adresser" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4575,8 +4558,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Status" @@ -4601,7 +4583,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "Swap" @@ -4631,7 +4613,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "Byt VLAN" @@ -4649,7 +4631,7 @@ msgid "Synchronizing..." msgstr "Synkroniserar..." #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4669,7 +4651,7 @@ msgstr "Systemets egenskaper" msgid "System log buffer size" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4687,7 +4669,7 @@ msgstr "Root för TFTP-server" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "TX-hastighet" @@ -4760,7 +4742,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4799,6 +4781,16 @@ msgstr "" msgid "The following rules are currently active on this system." msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "Det angivna nätverksnamnet är inte unikt" @@ -4844,13 +4836,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " "few minutes before you try to reconnect. It might be necessary to renew the " @@ -4858,18 +4850,26 @@ msgid "" "settings." msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Tema" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "Det finns inga aktiva kontrakt." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -4891,7 +4891,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -4965,7 +4965,7 @@ msgid "" "their status." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "" @@ -4991,6 +4991,10 @@ msgstr "" msgid "Timezone" msgstr "Tidszon" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5000,12 +5004,12 @@ msgstr "" "För att återställa konfigurationsfiler så kan du ladda upp ett tidigare " "genererat säkerhetskopierings arkiv här." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "Ton" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Totalt tillgängligt" @@ -5020,7 +5024,7 @@ msgstr "Traceroute" msgid "Traffic" msgstr "Trafik" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Överför" @@ -5055,7 +5059,7 @@ msgstr "" msgid "Tunnel ID" msgstr "Tunnel-ID" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "Tunnelgränssnitt" @@ -5070,12 +5074,12 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Typ" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5129,36 +5133,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "Otillgängliga Sekunder (UAS)" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "Okänd" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "Okänt fel, lösenordet ändrades inte!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "Avmontera" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Osparade ändringar" @@ -5178,10 +5182,6 @@ msgstr "Protokolltypen stöds inte." msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "Uppdatera listor" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5199,7 +5199,7 @@ msgstr "Laddade upp fil" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Upptid" @@ -5315,7 +5315,7 @@ msgstr "" msgid "Use routing table" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5352,11 +5352,11 @@ msgstr "Användarnyckel (PEM-krypterad)" msgid "Username" msgstr "Användarnamn" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "VDSL" @@ -5406,11 +5406,6 @@ msgstr "" msgid "Verify" msgstr "Verkställ" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Version" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5459,7 +5454,7 @@ msgstr "Väntar på att ändringarna ska tillämpas..." msgid "Waiting for command to complete..." msgstr "Väntar på att kommandot ska avsluta..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5493,16 +5488,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "Trådlöst" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Trådlös adapter" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Trådlöst nätverk" @@ -5517,13 +5512,13 @@ msgstr "Trådlös säkerhet" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "Trådlöst är avstängt" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "Trådlöst är inte associerat" @@ -5547,6 +5542,10 @@ msgstr "Skriv mottagna DNS-förfrågningar till syslogg" msgid "Write system log to file" msgstr "Skriv systemlogg till fil" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5558,7 +5557,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5595,9 +5594,9 @@ msgstr "" msgid "any" msgstr "något" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5614,7 +5613,7 @@ msgstr "auto" msgid "baseT" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "bryggad" @@ -5633,24 +5632,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "skapar en brygga över angivna gränssnitt(en)" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "dB" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "dBm" @@ -5690,7 +5689,7 @@ msgstr "full-duplex" msgid "half-duplex" msgstr "halv-duplex" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5712,44 +5711,44 @@ msgstr "om målet är ett nätverk" msgid "input" msgstr "inmatning" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "kB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "kB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "kbit/s" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5775,19 +5774,10 @@ msgstr "nej" msgid "no link" msgstr "ingen länk" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5799,7 +5789,7 @@ msgstr "inte tillgängligt" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "av" @@ -5807,11 +5797,11 @@ msgstr "av" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "på" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5829,11 +5819,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5847,7 +5837,7 @@ msgstr "" msgid "relay mode" msgstr "relä-läge" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "" @@ -5881,7 +5871,7 @@ msgstr "taggad" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -5908,159 +5898,159 @@ msgstr "ospecifierat -eller- skapa:" msgid "untagged" msgstr "otaggat" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6074,6 +6064,63 @@ msgstr "ja" msgid "« Back" msgstr "« Bakåt" +#~ msgid "Password successfully changed!" +#~ msgstr "Ändring av lösenordet lyckades!" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "Okänt fel, lösenordet ändrades inte!" + +#~ msgid "Available packages" +#~ msgstr "Tillgängliga paket" + +#~ msgid "Custom feeds" +#~ msgstr "Anpassade flöden" + +#~ msgid "Download and install package" +#~ msgstr "Ladda ner och installera paket" + +#~ msgid "Filter" +#~ msgstr "Filtrera" + +#~ msgid "Find package" +#~ msgstr "Hitta paket" + +#~ msgid "Free space" +#~ msgstr "Fritt utrymme" + +#~ msgid "General options for opkg" +#~ msgstr "Generella alternativ för opkg" + +#~ msgid "Install" +#~ msgstr "Installera" + +#~ msgid "Installed packages" +#~ msgstr "Installerade paket" + +#~ msgid "No package lists available" +#~ msgstr "Ingen paketlista tillgänglig" + +#~ msgid "OK" +#~ msgstr "OK" + +#~ msgid "Package lists are older than 24 hours" +#~ msgstr "Paket-listor är äldre än 24 timmar" + +#~ msgid "Package name" +#~ msgstr "Paketnamn" + +#~ msgid "Size (.ipk)" +#~ msgstr "Storlek (.ipk)" + +#~ msgid "Software" +#~ msgstr "Mjukvara" + +#~ msgid "Update lists" +#~ msgstr "Uppdatera listor" + +#~ msgid "Version" +#~ msgstr "Version" + #~ msgid "IPv4 and IPv6" #~ msgstr "IPv4 och IPv6" diff --git a/modules/luci-base/po/templates/base.pot b/modules/luci-base/po/templates/base.pot index 60a403f28c..d665fc6685 100644 --- a/modules/luci-base/po/templates/base.pot +++ b/modules/luci-base/po/templates/base.pot @@ -1,10 +1,14 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -37,16 +41,16 @@ msgstr "" msgid "-- Additional Field --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "" @@ -70,11 +74,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "" @@ -86,7 +90,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "" @@ -140,7 +144,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "" @@ -165,11 +169,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "" @@ -178,12 +182,12 @@ msgstr "" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -209,19 +213,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -235,37 +243,37 @@ msgstr "" msgid "ARP retry threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " "to dial into the provider network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -280,8 +288,6 @@ msgstr "" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "" @@ -293,8 +299,8 @@ msgstr "" msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "" @@ -321,6 +327,13 @@ msgstr "" msgid "Add" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" @@ -337,8 +350,8 @@ msgstr "" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "" @@ -354,7 +367,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -362,7 +375,7 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -370,7 +383,7 @@ msgstr "" msgid "Alert" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -393,7 +406,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" @@ -419,15 +432,15 @@ msgstr "" msgid "Allow localhost" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "" @@ -450,64 +463,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -553,15 +566,15 @@ msgstr "" msgid "Any zone" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -582,11 +595,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -617,8 +630,8 @@ msgstr "" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "" @@ -661,29 +674,25 @@ msgstr "" msgid "Available" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -694,7 +703,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "" @@ -724,7 +733,7 @@ msgstr "" msgid "Backup" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "" @@ -752,12 +761,14 @@ msgid "" "defined backup patterns." msgstr "" -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -766,7 +777,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "" @@ -774,7 +785,7 @@ msgstr "" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "" @@ -782,7 +793,7 @@ msgstr "" msgid "Bridge interfaces" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "" @@ -798,16 +809,10 @@ msgstr "" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -822,6 +827,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "" @@ -844,6 +850,12 @@ msgstr "" msgid "Chain" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -853,20 +865,24 @@ msgstr "" msgid "Changes applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "" @@ -941,6 +957,11 @@ msgstr "" msgid "Client ID to send when requesting DHCP" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -958,16 +979,16 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -998,8 +1019,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "" @@ -1011,15 +1030,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "" @@ -1028,8 +1047,8 @@ msgid "Connect" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "" @@ -1045,7 +1064,7 @@ msgstr "" msgid "Connections" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1102,16 +1121,6 @@ msgstr "" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1134,7 +1143,7 @@ msgstr "" msgid "DHCP and DNS" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "" @@ -1154,16 +1163,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "" @@ -1191,16 +1200,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1212,7 +1221,7 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1226,6 +1235,10 @@ msgstr "" msgid "Default %d" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1260,6 +1273,11 @@ msgstr "" msgid "Delete" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "" @@ -1268,16 +1286,11 @@ msgstr "" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "" @@ -1285,8 +1298,8 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1303,7 +1316,7 @@ msgstr "" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1369,18 +1382,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1390,10 +1406,6 @@ msgstr "" msgid "Distance to farthest network member in meters." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "" @@ -1418,6 +1430,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "" @@ -1440,10 +1456,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "" @@ -1452,15 +1464,15 @@ msgstr "" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1628,8 +1640,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "" @@ -1637,7 +1649,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "" @@ -1657,7 +1669,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "" @@ -1666,19 +1678,19 @@ msgstr "" msgid "Error" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1686,11 +1698,11 @@ msgstr "" msgid "Expand hosts" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "" @@ -1739,7 +1751,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1757,10 +1769,6 @@ msgstr "" msgid "Filesystem" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "" @@ -1783,10 +1791,6 @@ msgstr "" msgid "Find and join network" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "" @@ -1807,11 +1811,11 @@ msgstr "" msgid "Firewall Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "" @@ -1835,7 +1839,7 @@ msgstr "" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "" @@ -1883,7 +1887,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1895,7 +1899,7 @@ msgstr "" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "" @@ -1908,15 +1912,11 @@ msgstr "" msgid "Frame Bursting" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1925,7 +1925,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "" @@ -1934,8 +1934,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "" @@ -1943,7 +1943,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "" @@ -1956,16 +1956,12 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -1982,7 +1978,7 @@ msgstr "" msgid "Generic 802.11%s Wireless Controller" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "" @@ -1990,14 +1986,14 @@ msgstr "" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "" @@ -2030,7 +2026,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2040,12 +2036,6 @@ msgid "" "the timezone." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2058,7 +2048,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2079,9 +2069,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2136,7 +2126,7 @@ msgstr "" msgid "IPv4 Firewall" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2160,7 +2150,7 @@ msgstr "" msgid "IPv4 netmask" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2205,11 +2195,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2231,7 +2221,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2378,7 +2368,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "" @@ -2398,10 +2388,6 @@ msgstr "" msgid "Initscripts" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2414,17 +2400,13 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "" @@ -2498,7 +2480,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "" @@ -2523,7 +2505,7 @@ msgstr "" msgid "Kernel Log" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "" @@ -2569,7 +2551,7 @@ msgstr "" msgid "LCP echo interval" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "" @@ -2586,7 +2568,7 @@ msgstr "" msgid "Language and Style" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2594,7 +2576,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2637,19 +2619,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2701,7 +2683,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -2715,7 +2697,7 @@ msgstr "" msgid "Load" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "" @@ -2725,6 +2707,10 @@ msgstr "" msgid "Loading" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2754,7 +2740,7 @@ msgstr "" msgid "Local Startup" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "" @@ -2807,11 +2793,11 @@ msgstr "" msgid "Login" msgstr "" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2826,9 +2812,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "" @@ -2864,7 +2850,7 @@ msgstr "" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "" @@ -2890,7 +2876,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -2925,16 +2911,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "" @@ -2977,11 +2963,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3020,7 +3006,7 @@ msgstr "" msgid "Mount Point" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3044,7 +3030,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "" @@ -3115,15 +3101,15 @@ msgstr "" msgid "Navigation" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3149,6 +3135,10 @@ msgstr "" msgid "Next »" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "" @@ -3161,9 +3151,9 @@ msgstr "" msgid "No files found" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "" @@ -3183,18 +3173,18 @@ msgstr "" msgid "No network name specified" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "" @@ -3207,23 +3197,23 @@ msgstr "" msgid "No zone assigned" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3249,8 +3239,8 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "" @@ -3274,14 +3264,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3316,7 +3298,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -3416,7 +3398,7 @@ msgstr "" msgid "Options" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "" @@ -3424,7 +3406,7 @@ msgstr "" msgid "Out" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "" @@ -3559,7 +3541,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3567,15 +3549,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "" @@ -3586,13 +3559,13 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "" @@ -3604,14 +3577,14 @@ msgstr "" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "" @@ -3636,17 +3609,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "" @@ -3678,7 +3651,7 @@ msgstr "" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "" @@ -3706,16 +3679,11 @@ msgstr "" msgid "Please enter your username and password." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "" @@ -3723,11 +3691,11 @@ msgstr "" msgid "Port status:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3739,7 +3707,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3758,7 +3726,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3780,7 +3748,7 @@ msgstr "" msgid "Processes" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3790,9 +3758,9 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "" @@ -3820,6 +3788,14 @@ msgstr "" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3829,7 +3805,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "" @@ -3862,7 +3838,7 @@ msgstr "" msgid "RX" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "" @@ -3920,7 +3896,7 @@ msgstr "" msgid "Really switch protocol?" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "" @@ -3928,15 +3904,15 @@ msgstr "" msgid "Realtime Graphs" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "" @@ -3948,7 +3924,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "" @@ -4010,7 +3986,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "" @@ -4074,7 +4049,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "" @@ -4117,6 +4091,8 @@ msgid "Restore backup" msgstr "" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "" @@ -4126,15 +4102,15 @@ msgstr "" msgid "Revert" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4163,7 +4139,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "" @@ -4183,11 +4160,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "" @@ -4195,11 +4172,12 @@ msgstr "" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "" @@ -4215,7 +4193,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "" @@ -4224,7 +4203,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "" @@ -4235,6 +4214,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "" @@ -4251,6 +4231,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "" @@ -4259,7 +4243,7 @@ msgstr "" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "" @@ -4272,7 +4256,7 @@ msgstr "" msgid "Section removed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "" @@ -4315,6 +4299,14 @@ msgstr "" msgid "Services" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4337,11 +4329,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4361,22 +4353,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "" @@ -4384,10 +4376,6 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4415,12 +4403,7 @@ msgstr "" msgid "Slot time" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4443,7 +4426,7 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4453,7 +4436,7 @@ msgstr "" msgid "Specifies the directory the device is attached to" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "" @@ -4499,7 +4482,7 @@ msgstr "" msgid "Start priority" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4507,7 +4490,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "" @@ -4519,7 +4502,7 @@ msgstr "" msgid "Static IPv6 Routes" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "" @@ -4527,11 +4510,11 @@ msgstr "" msgid "Static Routes" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4545,8 +4528,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "" @@ -4571,7 +4553,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4601,7 +4583,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4619,7 +4601,7 @@ msgid "Synchronizing..." msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4639,7 +4621,7 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "" @@ -4657,7 +4639,7 @@ msgstr "" msgid "TX" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "" @@ -4730,7 +4712,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4769,6 +4751,16 @@ msgstr "" msgid "The following rules are currently active on this system." msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "" @@ -4814,13 +4806,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " "few minutes before you try to reconnect. It might be necessary to renew the " @@ -4828,18 +4820,26 @@ msgid "" "settings." msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -4861,7 +4861,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -4933,7 +4933,7 @@ msgid "" "their status." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "" @@ -4959,6 +4959,10 @@ msgstr "" msgid "Timezone" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -4966,12 +4970,12 @@ msgid "" "reset\" (only possible with squashfs images)." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "" @@ -4986,7 +4990,7 @@ msgstr "" msgid "Traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "" @@ -5021,7 +5025,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "" @@ -5036,12 +5040,12 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "" @@ -5095,36 +5099,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "" @@ -5144,10 +5148,6 @@ msgstr "" msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5165,7 +5165,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "" @@ -5281,7 +5281,7 @@ msgstr "" msgid "Use routing table" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5318,11 +5318,11 @@ msgstr "" msgid "Username" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5372,11 +5372,6 @@ msgstr "" msgid "Verify" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5425,7 +5420,7 @@ msgstr "" msgid "Waiting for command to complete..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5458,16 +5453,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "" @@ -5482,13 +5477,13 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "" @@ -5512,6 +5507,10 @@ msgstr "" msgid "Write system log to file" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5523,7 +5522,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5555,9 +5554,9 @@ msgstr "" msgid "any" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5574,7 +5573,7 @@ msgstr "" msgid "baseT" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "" @@ -5593,24 +5592,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "" @@ -5650,7 +5649,7 @@ msgstr "" msgid "half-duplex" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5672,44 +5671,44 @@ msgstr "" msgid "input" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5735,19 +5734,10 @@ msgstr "" msgid "no link" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5759,7 +5749,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "" @@ -5767,11 +5757,11 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5789,11 +5779,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5807,7 +5797,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "" @@ -5841,7 +5831,7 @@ msgstr "" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -5868,159 +5858,159 @@ msgstr "" msgid "untagged" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" diff --git a/modules/luci-base/po/tr/base.po b/modules/luci-base/po/tr/base.po index c8acaee3af..bf4b27f1fc 100644 --- a/modules/luci-base/po/tr/base.po +++ b/modules/luci-base/po/tr/base.po @@ -1,6 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" +"POT-Creation-Date: \n" "PO-Revision-Date: 2018-09-13 22:59+0300\n" "Last-Translator: Yusuf Soyipek <yusuf@soyipek.com>\n" "Language-Team: none\n" @@ -10,12 +11,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 2.1.1\n" -"POT-Creation-Date: \n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -48,16 +52,16 @@ msgstr "(arayüz eklenmedi)" msgid "-- Additional Field --" msgstr "-- Ek Alan--" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Lütfen seçiniz --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- özel --" @@ -81,11 +85,11 @@ msgstr "-- uuid'e göre eşleştir --" msgid "-- please select --" msgstr "-- lütfen seçin --" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1 Dakikalık Yük:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "15 Dakikalık Yük:" @@ -97,7 +101,7 @@ msgstr "4 karakterli HEX ID" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "5 Dakikalık Yük:" @@ -151,7 +155,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protokolü Sürüm 4\">IPv4</abbr>-Adres" @@ -178,11 +182,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protokolü Sürüm 6\">IPv6</abbr>-Gateway" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Ayarları" @@ -191,12 +195,12 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Ayarları" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Adı" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-Adresi" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -226,19 +230,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -252,37 +260,37 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "ARP yenileme aralığı" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "ATM Köprüleri" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " "to dial into the provider network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -297,8 +305,6 @@ msgstr "Erişim Noktası" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Eylemler" @@ -312,8 +318,8 @@ msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "" "Aktif <abbr title=\"İnternet Protokolü Sürüm 4\">IPv6</abbr>-Yönlendiriciler" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Aktif Bağlantılar" @@ -340,6 +346,13 @@ msgstr "" msgid "Add" msgstr "Ekle" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" @@ -356,8 +369,8 @@ msgstr "Ek Hosts dosyaları" msgid "Additional servers file" msgstr "Ek sunucular dosyası" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Adres" @@ -373,7 +386,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -381,7 +394,7 @@ msgstr "" msgid "Advanced Settings" msgstr "Gelişmiş Ayarlar" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -389,7 +402,7 @@ msgstr "" msgid "Alert" msgstr "Uyarı" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -413,7 +426,7 @@ msgid "Allocate IP sequentially" msgstr "" # "Secure Shell" için ne kullanılabilinir bir fikrim yok. -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "<abbr title=\"Secure Shell\">SSH</abbr> parola kimlik doğrulamasına izin ver" @@ -440,15 +453,15 @@ msgstr "Yanlızca listelenenlere izin ver" msgid "Allow localhost" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "" @@ -471,64 +484,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -574,15 +587,15 @@ msgstr "Anten Yapılandırması" msgid "Any zone" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "Mimari" @@ -603,11 +616,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "İlişkili istasyonlar" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -638,8 +651,8 @@ msgstr "Yetkilendirme Gerekli" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Otomatik Yenileme" @@ -682,29 +695,25 @@ msgstr "" msgid "Available" msgstr "Kullanılabilir" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Kullanılabilir Paketler" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Ortalama:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -715,7 +724,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -745,7 +754,7 @@ msgstr "Tarama sonuçlarına dön" msgid "Backup" msgstr "Yedekleme" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "Yedek/Firmware Yazma" @@ -773,12 +782,14 @@ msgid "" "defined backup patterns." msgstr "" -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -787,7 +798,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Bit hızı" @@ -795,7 +806,7 @@ msgstr "Bit hızı" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Köprü" @@ -803,7 +814,7 @@ msgstr "Köprü" msgid "Bridge interfaces" msgstr "Köprü arabirimleri" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "" @@ -819,16 +830,10 @@ msgstr "" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "Tamponlu" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -843,6 +848,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Vazgeç" @@ -865,6 +871,12 @@ msgstr "" msgid "Chain" msgstr "Zincir" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -874,20 +886,24 @@ msgstr "Değişiklikler" msgid "Changes applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Kanal" @@ -964,6 +980,11 @@ msgstr "" msgid "Client ID to send when requesting DHCP" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -981,16 +1002,16 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1021,8 +1042,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "" @@ -1034,15 +1053,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Onayla" @@ -1051,8 +1070,8 @@ msgid "Connect" msgstr "Bağlan" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Bağlandı" @@ -1068,7 +1087,7 @@ msgstr "" msgid "Connections" msgstr "Bağlantılar" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1125,16 +1144,6 @@ msgstr "Özel Arabirim" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1157,7 +1166,7 @@ msgstr "" msgid "DHCP and DNS" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "" @@ -1177,16 +1186,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "" @@ -1214,16 +1223,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1235,7 +1244,7 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1249,6 +1258,10 @@ msgstr "" msgid "Default %d" msgstr "Varsayılan" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1283,6 +1296,11 @@ msgstr "" msgid "Delete" msgstr "Sil" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Bu ağı sil" @@ -1291,16 +1309,11 @@ msgstr "Bu ağı sil" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Açıklama" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Tasarım" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Hedef" @@ -1308,8 +1321,8 @@ msgstr "Hedef" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1326,7 +1339,7 @@ msgstr "Cihaz Yapılandırması" msgid "Device is rebooting..." msgstr "Cihaz yeniden başlatılıyor..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "Cihaz ulaşılamaz!" @@ -1394,18 +1407,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "Bağlantı kesme girişimi başarısız oldu" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "Reddet" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "Yalnızca içeren paketler görüntüleniyor" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1415,10 +1431,6 @@ msgstr "Mesafe Optimizasyonu" msgid "Distance to farthest network member in meters." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "" @@ -1443,6 +1455,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "" @@ -1465,10 +1481,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "" @@ -1477,15 +1489,15 @@ msgstr "" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1653,8 +1665,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "" @@ -1662,7 +1674,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "" @@ -1682,7 +1694,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "" @@ -1691,19 +1703,19 @@ msgstr "" msgid "Error" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1711,11 +1723,11 @@ msgstr "" msgid "Expand hosts" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Süre Bitişi" @@ -1764,7 +1776,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1782,10 +1794,6 @@ msgstr "" msgid "Filesystem" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "" @@ -1808,10 +1816,6 @@ msgstr "" msgid "Find and join network" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "" @@ -1832,11 +1836,11 @@ msgstr "" msgid "Firewall Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Firmware Versiyon" @@ -1860,7 +1864,7 @@ msgstr "Yeni firmware dosyasını yaz" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "" @@ -1908,7 +1912,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1920,7 +1924,7 @@ msgstr "" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "" @@ -1933,15 +1937,11 @@ msgstr "" msgid "Frame Bursting" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "Boş" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Boş alan" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1950,7 +1950,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "" @@ -1959,8 +1959,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Ağ Geçidi" @@ -1968,7 +1968,7 @@ msgstr "Ağ Geçidi" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "" @@ -1981,16 +1981,12 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -2007,7 +2003,7 @@ msgstr "Arşiv oluştur" msgid "Generic 802.11%s Wireless Controller" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "" @@ -2015,14 +2011,14 @@ msgstr "" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "" @@ -2055,7 +2051,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2065,12 +2061,6 @@ msgid "" "the timezone." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2083,7 +2073,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2104,9 +2094,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2161,7 +2151,7 @@ msgstr "" msgid "IPv4 Firewall" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2185,7 +2175,7 @@ msgstr "" msgid "IPv4 netmask" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2230,11 +2220,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2256,7 +2246,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2403,7 +2393,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "" @@ -2423,10 +2413,6 @@ msgstr "" msgid "Initscripts" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2439,17 +2425,13 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "" @@ -2523,7 +2505,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "" @@ -2548,7 +2530,7 @@ msgstr "" msgid "Kernel Log" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Çekirdek Versiyonu" @@ -2594,7 +2576,7 @@ msgstr "" msgid "LCP echo interval" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "" @@ -2611,7 +2593,7 @@ msgstr "" msgid "Language and Style" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2619,7 +2601,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2662,19 +2644,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2726,7 +2708,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -2740,7 +2722,7 @@ msgstr "" msgid "Load" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Ortalama Yük" @@ -2750,6 +2732,10 @@ msgstr "Ortalama Yük" msgid "Loading" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2779,7 +2765,7 @@ msgstr "" msgid "Local Startup" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Yerel Zaman" @@ -2832,11 +2818,11 @@ msgstr "" msgid "Login" msgstr "Oturum Aç" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Oturumu Kapat" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2851,9 +2837,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-Adres" @@ -2889,7 +2875,7 @@ msgstr "" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "" @@ -2915,7 +2901,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -2950,16 +2936,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Bellek" @@ -3002,11 +2988,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3045,7 +3031,7 @@ msgstr "" msgid "Mount Point" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3069,7 +3055,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "" @@ -3140,15 +3126,15 @@ msgstr "" msgid "Navigation" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Ağ Maskesi" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3174,6 +3160,10 @@ msgstr "" msgid "Next »" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "" @@ -3186,9 +3176,9 @@ msgstr "" msgid "No files found" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "" @@ -3208,18 +3198,18 @@ msgstr "" msgid "No network name specified" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "" @@ -3232,23 +3222,23 @@ msgstr "" msgid "No zone assigned" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Parazit" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3274,8 +3264,8 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "" @@ -3299,14 +3289,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3341,7 +3323,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -3441,7 +3423,7 @@ msgstr "" msgid "Options" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "" @@ -3449,7 +3431,7 @@ msgstr "" msgid "Out" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "" @@ -3584,7 +3566,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3592,15 +3574,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "" @@ -3611,13 +3584,13 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "" @@ -3629,14 +3602,14 @@ msgstr "" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "" @@ -3661,17 +3634,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "" @@ -3703,7 +3676,7 @@ msgstr "" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "" @@ -3731,16 +3704,11 @@ msgstr "" msgid "Please enter your username and password." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "" @@ -3748,11 +3716,11 @@ msgstr "" msgid "Port status:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3764,7 +3732,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3783,7 +3751,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3805,7 +3773,7 @@ msgstr "" msgid "Processes" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3815,9 +3783,9 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protokol" @@ -3845,6 +3813,14 @@ msgstr "" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3854,7 +3830,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "" @@ -3887,7 +3863,7 @@ msgstr "" msgid "RX" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "" @@ -3945,7 +3921,7 @@ msgstr "" msgid "Really switch protocol?" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "" @@ -3953,15 +3929,15 @@ msgstr "" msgid "Realtime Graphs" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "" @@ -3973,7 +3949,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "" @@ -4035,7 +4011,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "" @@ -4099,7 +4074,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Sıfırla" @@ -4142,6 +4116,8 @@ msgid "Restore backup" msgstr "Yedeklemeyi geri yükle" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "" @@ -4151,15 +4127,15 @@ msgstr "" msgid "Revert" msgstr "Dönmek" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "Değişiklikleri geri al" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4188,7 +4164,8 @@ msgstr "Yönlendirme Tipi" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "Yönlendirici Parolası" @@ -4208,11 +4185,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "Cihazı bağlamadan önce bir dosya sistemi kontrolü yapın" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "Dosya sistemi kontrolünü çalıştır" @@ -4220,11 +4197,12 @@ msgstr "Dosya sistemi kontrolünü çalıştır" msgid "SHA256" msgstr "SHA256" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "SNR" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH Erişimi" @@ -4240,7 +4218,8 @@ msgstr "SSH sunucu portu" msgid "SSH username" msgstr "SSH kullanıcı adı" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "" @@ -4249,7 +4228,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4260,6 +4239,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Kaydet" @@ -4276,6 +4256,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Tara" @@ -4284,7 +4268,7 @@ msgstr "Tara" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Zamanlanmış Görevler" @@ -4297,7 +4281,7 @@ msgstr "Bölüm eklendi" msgid "Section removed" msgstr "Bölüm kaldırıldı" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "" @@ -4340,6 +4324,14 @@ msgstr "" msgid "Services" msgstr "Servisler" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4362,11 +4354,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4386,22 +4378,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Sinyal" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "Sinyal Zayıflama (SATN)" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "Sinyal:" @@ -4409,10 +4401,6 @@ msgstr "Sinyal:" msgid "Size" msgstr "Boyut" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "Boyut (.ipk)" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4440,12 +4428,7 @@ msgstr "" msgid "Slot time" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Yazılım" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4468,7 +4451,7 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4478,7 +4461,7 @@ msgstr "Kaynak" msgid "Specifies the directory the device is attached to" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "" @@ -4524,7 +4507,7 @@ msgstr "Başlat" msgid "Start priority" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4532,7 +4515,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "" @@ -4544,7 +4527,7 @@ msgstr "" msgid "Static IPv6 Routes" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "" @@ -4552,11 +4535,11 @@ msgstr "" msgid "Static Routes" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4570,8 +4553,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Durum" @@ -4596,7 +4578,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4626,7 +4608,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4644,7 +4626,7 @@ msgid "Synchronizing..." msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4664,7 +4646,7 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "" @@ -4682,7 +4664,7 @@ msgstr "" msgid "TX" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "" @@ -4755,7 +4737,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4794,6 +4776,16 @@ msgstr "" msgid "The following rules are currently active on this system." msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "" @@ -4839,13 +4831,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " "few minutes before you try to reconnect. It might be necessary to renew the " @@ -4853,18 +4845,26 @@ msgid "" "settings." msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Tema" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -4886,7 +4886,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -4958,7 +4958,7 @@ msgid "" "their status." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "" @@ -4984,6 +4984,10 @@ msgstr "" msgid "Timezone" msgstr "" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -4991,12 +4995,12 @@ msgid "" "reset\" (only possible with squashfs images)." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Toplam Mevcut" @@ -5011,7 +5015,7 @@ msgstr "" msgid "Traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "" @@ -5046,7 +5050,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "" @@ -5061,12 +5065,12 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "" @@ -5120,36 +5124,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "" @@ -5169,10 +5173,6 @@ msgstr "" msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5190,7 +5190,7 @@ msgstr "Yüklenen Dosya" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Çalışma Zamanı" @@ -5306,7 +5306,7 @@ msgstr "Ağ geçidi metriğini kullan" msgid "Use routing table" msgstr "Yönlendirme tablosunu kullan" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5343,11 +5343,11 @@ msgstr "" msgid "Username" msgstr "Kullanıcı adı" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5397,11 +5397,6 @@ msgstr "" msgid "Verify" msgstr "Kontrol" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Versiyon" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5450,7 +5445,7 @@ msgstr "" msgid "Waiting for command to complete..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5483,16 +5478,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "Kablosuz" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "" @@ -5507,13 +5502,13 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "" @@ -5537,6 +5532,10 @@ msgstr "" msgid "Write system log to file" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5548,7 +5547,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5582,9 +5581,9 @@ msgstr "" msgid "any" msgstr "herhangi" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5601,7 +5600,7 @@ msgstr "otomatik" msgid "baseT" msgstr "baseT" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "köprülü" @@ -5620,24 +5619,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "dB" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "dBm" @@ -5677,7 +5676,7 @@ msgstr "tam çift yönlü" msgid "half-duplex" msgstr "yarı çift yönlü" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5699,44 +5698,44 @@ msgstr "eğer hedef ağsa" msgid "input" msgstr "giriş" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "kB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "kB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "kbit/s" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5762,19 +5761,10 @@ msgstr "hayır" msgid "no link" msgstr "bağlantı yok" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "hiçbiri" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5786,7 +5776,7 @@ msgstr "mevcut değil" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "kapalı" @@ -5794,11 +5784,11 @@ msgstr "kapalı" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "açık" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5816,11 +5806,11 @@ msgstr "" msgid "overlay" msgstr "bindirilmiş" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5834,7 +5824,7 @@ msgstr "rastgele" msgid "relay mode" msgstr "anahtarlama modu" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "yönlendirildi" @@ -5868,7 +5858,7 @@ msgstr "etiketlendi" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -5895,159 +5885,159 @@ msgstr "tanımsız -veya- oluşturun:" msgid "untagged" msgstr "etiketsiz" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6061,6 +6051,30 @@ msgstr "evet" msgid "« Back" msgstr "« Geri" +#~ msgid "Design" +#~ msgstr "Tasarım" + +#~ msgid "Available packages" +#~ msgstr "Kullanılabilir Paketler" + +#~ msgid "Displaying only packages containing" +#~ msgstr "Yalnızca içeren paketler görüntüleniyor" + +#~ msgid "Free space" +#~ msgstr "Boş alan" + +#~ msgid "Size (.ipk)" +#~ msgstr "Boyut (.ipk)" + +#~ msgid "Software" +#~ msgstr "Yazılım" + +#~ msgid "Version" +#~ msgstr "Versiyon" + +#~ msgid "none" +#~ msgstr "hiçbiri" + #~ msgid "Disable DNS setup" #~ msgstr "DNS kurulumunu devre dışı" diff --git a/modules/luci-base/po/uk/base.po b/modules/luci-base/po/uk/base.po index a6d98b93f1..91c2a37c63 100644 --- a/modules/luci-base/po/uk/base.po +++ b/modules/luci-base/po/uk/base.po @@ -1,20 +1,22 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2018-10-14 18:10+0300\n" +"PO-Revision-Date: 2018-11-22 14:00+0200\n" "Last-Translator: Yurii <yuripet@gmail.com>\n" "Language-Team: none\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "%.1f дБ" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "%d біт" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "%s є непозначеним у декількох VLAN!" @@ -47,16 +49,16 @@ msgstr "(нема приєднаних інтерфейсів)" msgid "-- Additional Field --" msgstr "-- Додаткові поля --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Оберіть --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- нетипово --" @@ -80,11 +82,11 @@ msgstr "-- відповідно UUID --" msgid "-- please select --" msgstr "-- виберіть --" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Навантаження за 1 хвилину:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "Навантаження за 15 хвилин:" @@ -96,7 +98,7 @@ msgstr "4-симв. шістнадцятковий ID" msgid "464XLAT (CLAT)" msgstr "464XLAT (CLAT)" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "Навантаження за 5 хвилин:" @@ -161,7 +163,7 @@ msgstr "" "<abbr title=\"Extended Service Set Identifier — ідентифікатор розширеної " "служби послуг\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Інтернет-протокол версії 4\">IPv4</abbr>-адреса" @@ -188,11 +190,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Інтернет-протокол версії 6\">IPv6</abbr>-шлюз" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "<abbr title=\"Інтернет-протокол версії 6\">IPv6</abbr>-суфікс (hex)" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "" @@ -202,14 +204,14 @@ msgstr "" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "Назва <abbr title=\"Light Emitting Diode — світлодіод\">LED</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "" "<abbr title=\"Media Access Control — управління доступом до носія\">MAC</" "abbr>-адреса" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"Унікальний ідентифікатор DHCP\">DUID</abbr>" @@ -242,19 +244,24 @@ msgstr "" "<br/>Примітка: якщо перед редагуванням, файл crontab був порожній, вам " "потрібно вручну перезапустити служби cron." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" +"Оскільки сеанс автентифікації закінчився, потрібен новий вхід у систему." + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -269,31 +276,31 @@ msgstr "" msgid "ARP retry threshold" msgstr "Поріг повторювання ARP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" "<abbr title=\"Asynchronous Transfer Mode — асинхронний режим передавання" "\">ATM</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "ATM-мости" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "" "Ідентифікатор віртуального каналу ATM (<abbr title=\"Virtual Channel " "Identifier\">VCI</abbr>)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "" "Ідентифікатор віртуального шляху ATM (<abbr title=\"Virtual Path Identifier" "\">VPI</abbr>)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -303,12 +310,12 @@ msgstr "" "віртуальні мережеві інтерфейси Linux, котрі можуть використовуватися в " "поєднанні з DHCP або PPP для підключення до мережі провайдера." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "Номер ATM-пристрою" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -323,8 +330,6 @@ msgstr "Точка доступу" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Дії" @@ -336,8 +341,8 @@ msgstr "<abbr title=\"Інтернет-протокол версії 4\">IPv4</a msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "<abbr title=\"Інтернет-протокол версії 6\">IPv6</abbr>-маршрути" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "Активні підключення" @@ -364,6 +369,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Додати" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "Додати ключ" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "Додавати суфікс локального домену до імен, отриманих із файлів hosts" @@ -380,8 +392,8 @@ msgstr "Додаткові файли hosts" msgid "Additional servers file" msgstr "Додаткові файли servers" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "Адреса" @@ -397,7 +409,7 @@ msgstr "Адміністрування" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -405,7 +417,7 @@ msgstr "Адміністрування" msgid "Advanced Settings" msgstr "Додаткові параметри" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "Сумарна потужність передавання" @@ -413,7 +425,7 @@ msgstr "Сумарна потужність передавання" msgid "Alert" msgstr "Тривога" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "Інтерфейс псевдоніма" @@ -436,7 +448,7 @@ msgstr "Виділяти IP-адреси послідовно, починаюч� msgid "Allocate IP sequentially" msgstr "Виділяти IP послідовно" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "Дозволити <abbr title=\"Secure Shell — безпечна оболонка\">SSH</abbr>-" @@ -467,17 +479,17 @@ msgstr "Дозволити тільки зазначені" msgid "Allow localhost" msgstr "Дозволити локальний вузол" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" "Дозволити віддаленим вузлам підключення до локальних переспрямованих портів " "SSH" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "Дозволити root-вхід із паролем" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "Дозволити користувачеві <em>root</em> вхід у систему з паролем" @@ -505,64 +517,64 @@ msgstr "" "перекривається. Використання цієї опції не відповідає стандарту IEEE " "802.11n-2009!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -610,15 +622,15 @@ msgstr "Конфигурація антени" msgid "Any zone" msgstr "Будь-яка зона" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "Все одно застосувати" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "Сталася помилка запиту на застосування зі статусом <code>%h</code>" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "Архітектура" @@ -643,11 +655,11 @@ msgstr "" "шістнадцятковий ID субпрефікса." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "Приєднано станції" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "З’єднань" @@ -678,8 +690,8 @@ msgstr "Потрібна авторизація" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "Автоматичне оновлення" @@ -723,29 +735,25 @@ msgstr "Автомонтування своп" msgid "Available" msgstr "Доступно" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "Доступні пакети" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "Середнє значення:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -756,7 +764,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -786,9 +794,9 @@ msgstr "Повернутися до результатів сканування" msgid "Backup" msgstr "Резервне копіювання" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" -msgstr "Рез. копіювання / Перепрошив." +msgstr "Рез. копіювання / Перепрош." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" @@ -817,21 +825,23 @@ msgstr "" "складається із позначених opkg змінених файлів конфігурації, невідокремних " "базових файлів, та файлів за користувацькими шаблонами резервного копіювання." +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" +msgstr "" + #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind interface" msgstr "Прив’язка інтерфейсу" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." -msgstr "Прив’язка тільки до певних інтерфейсів, а не шаблонної адреси." - #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind the tunnel to this interface (optional)." msgstr "Прив’язка тунелю до цього інтерфейсу (за бажання)." #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "Швидкість передавання даних" @@ -839,7 +849,7 @@ msgstr "Швидкість передавання даних" msgid "Bogus NX Domain Override" msgstr "Відкидати підробки NX-домену" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "Міст" @@ -847,7 +857,7 @@ msgstr "Міст" msgid "Bridge interfaces" msgstr "Об’єднати інтерфейси в міст" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "Номер моста" @@ -863,18 +873,10 @@ msgstr "Бездротовий 802.11%s контролер Broadcom" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Бездротовий 802.11 контролер Broadcom BCM%04x" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "Буферизовано" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" -"Специфічні для збірки/поширення визначення каналів. Цей файл НЕ БУДЕ " -"збережено при будь-якому оновленні системи." - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -890,6 +892,7 @@ msgstr "Не вдалося здійснити виклик" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Скасувати" @@ -912,6 +915,12 @@ msgstr "Увага: систему буде оновлено примусово" msgid "Chain" msgstr "Ланцюжок" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "Змінити пароль для входу" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -921,20 +930,24 @@ msgstr "Зміни" msgid "Changes applied." msgstr "Зміни застосовано." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "Зміни було скасовано." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "Зміна пароля адміністратора для доступу до пристрою" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "Зміна пароля…" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Канал" @@ -1021,6 +1034,11 @@ msgstr "Клієнт" msgid "Client ID to send when requesting DHCP" msgstr "Ідентифікатор клієнта для відправки при запиті DHCP" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "Закрити" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -1040,16 +1058,16 @@ msgstr "Згорнути список..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1084,8 +1102,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Конфігурація" @@ -1097,15 +1113,15 @@ msgstr "Помилка налаштування" msgid "Configuration files will be kept" msgstr "Конфігураційні файли буде збережено" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "Конфігурацію застосовано." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "Конфігурацію було відкочено!" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Підтвердження" @@ -1114,8 +1130,8 @@ msgid "Connect" msgstr "Підключити" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "Підключено" @@ -1131,7 +1147,7 @@ msgstr "Невдала спроба підключення" msgid "Connections" msgstr "Підключення" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1154,11 +1170,11 @@ msgstr "Код країни" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 msgid "Cover the following interface" -msgstr "Покривати наступний інтерфейс" +msgstr "Покривати такий інтерфейс" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 msgid "Cover the following interfaces" -msgstr "Покривати наступні інтерфейси" +msgstr "Покривати такі інтерфейси" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 @@ -1192,18 +1208,6 @@ msgstr "Інтерфейс користувача" msgid "Custom delegated IPv6-prefix" msgstr "Користувацький делегований префікс IPv6" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" -"Користувацькі визначення каналів, наприклад, приватних. Цей файл може бути " -"збережено при оновленні системи." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "Користувацькі канали" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1230,7 +1234,7 @@ msgstr "Сервер DHCP" msgid "DHCP and DNS" msgstr "DHCP та DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "Клієнт DHCP" @@ -1250,16 +1254,16 @@ msgstr "Режим DHCPv6" msgid "DHCPv6-Service" msgstr "Служба DHCPv6" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1287,16 +1291,16 @@ msgstr "Тайм-аут простою DPD" msgid "DS-Lite AFTR address" msgstr "AFTR-адреса DS-Lite" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "Стан DSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "Режим лінії DSL" @@ -1310,7 +1314,7 @@ msgstr "" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "Швидк. передавання" @@ -1324,6 +1328,10 @@ msgstr "Зневаджування" msgid "Default %d" msgstr "Типово %d" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "Типовий маршрут" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1361,6 +1369,11 @@ msgstr "" msgid "Delete" msgstr "Видалити" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "Видалити ключ" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "Видалити цю мережу" @@ -1369,16 +1382,11 @@ msgstr "Видалити цю мережу" msgid "Delivery Traffic Indication Message Interval" msgstr "Інтервал повідомлень індикації доправлення трафіку" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Опис" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Стиль (тема)" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Призначення" @@ -1386,8 +1394,8 @@ msgstr "Призначення" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1404,7 +1412,7 @@ msgstr "Конфігурація пристрою" msgid "Device is rebooting..." msgstr "Пристрій перезавантажується..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "Пристрій недосяжний!" @@ -1472,18 +1480,21 @@ msgstr "Роз'єднувати за низького підтвердження msgid "Discard upstream RFC1918 responses" msgstr "Відкидати висхідні RFC1918-відповіді" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "Від’єднати" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "Спроба від’єднання не вдалася" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "Відхилити" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "Відображення лише непорожніх пакетів" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1493,10 +1504,6 @@ msgstr "Оптимізація за відстанню" msgid "Distance to farthest network member in meters." msgstr "Відстань до найвіддаленішого вузла мережі в метрах." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "Канали поширення" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Різновидність" @@ -1530,6 +1537,10 @@ msgstr "" "Не переспрямовувати зворотні <abbr title=\"Domain Name System — система " "доменних імен\">DNS</abbr>-запити для локальних мереж" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "Справді видалити такий SSH ключ?" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Потрібен домен" @@ -1555,10 +1566,6 @@ msgstr "" msgid "Down" msgstr "Вниз" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Завантажити та інсталювати пакети" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "Завантажити резервну копію" @@ -1567,15 +1574,15 @@ msgstr "Завантажити резервну копію" msgid "Download mtdblock" msgstr "Завантажити mtdblock" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "Низхідний зсув SNR" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Реалізація Dropbear" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1756,8 +1763,8 @@ msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "" "Вмикає <abbr title=\"Spanning Tree Protocol\">STP</abbr> на цьому мосту" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "Режим інкапсуляції" @@ -1765,7 +1772,7 @@ msgstr "Режим інкапсуляції" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Шифрування" @@ -1785,7 +1792,7 @@ msgstr "Введіть власне значення" msgid "Enter custom values" msgstr "Введіть власні значення" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "Видалення..." @@ -1794,19 +1801,19 @@ msgstr "Видалення..." msgid "Error" msgstr "Помилка" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "Секунд з помилками (<abbr title=\"Errored seconds\">ES</abbr>)" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Ethernet-адаптер" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Ethernet-комутатор" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "Виключити інтерфейси" @@ -1814,11 +1821,11 @@ msgstr "Виключити інтерфейси" msgid "Expand hosts" msgstr "Розширення вузлів" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" -msgstr "" +msgstr "Очікування %s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "Збігає за" @@ -1868,7 +1875,7 @@ msgstr "FT через повітря" msgid "FT protocol" msgstr "Протокол FT" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "Не вдалося підтвердити застосування на протязі %d с, очікуємо відкату…" @@ -1886,10 +1893,6 @@ msgstr "І’мя завантажувального образу, що огол msgid "Filesystem" msgstr "Файлова система" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Фільтр" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Фільтрувати приватні" @@ -1914,10 +1917,6 @@ msgstr "" msgid "Find and join network" msgstr "Знайти мережу й приєднатися" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Знайти пакет" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "Готово" @@ -1938,11 +1937,11 @@ msgstr "Налаштування брандмауера" msgid "Firewall Status" msgstr "Стан брандмауера" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "Файл мікропрограми" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "Версія мікропрограми" @@ -1966,9 +1965,9 @@ msgstr "Прошити новий образ мікропрограми" msgid "Flash operations" msgstr "Операції прошивання" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." -msgstr "Прошиваємо..." +msgstr "Перепрошиваємо..." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 msgid "Force" @@ -2014,7 +2013,7 @@ msgstr "Неузгодженість маркера форми" msgid "Forward DHCP traffic" msgstr "Переспрямовувати DHCP-трафік" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "Секунди прямого коригування помилок (FECS)" @@ -2026,7 +2025,7 @@ msgstr "Переспрямовувати широкомовний трафік" msgid "Forward mesh peer traffic" msgstr "Переспрямовувати одноранговий трафік" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "Режим переспрямовування" @@ -2039,15 +2038,11 @@ msgstr "Поріг фрагментації" msgid "Frame Bursting" msgstr "Frame Bursting" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "Вільно" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "Вільне місце" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -2058,7 +2053,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "ГГц" @@ -2067,8 +2062,8 @@ msgstr "ГГц" msgid "GPRS only" msgstr "Тільки GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "Шлюз" @@ -2076,7 +2071,7 @@ msgstr "Шлюз" msgid "Gateway address is invalid" msgstr "Неприпустима адреса шлюзу" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "Порти шлюзу" @@ -2089,16 +2084,12 @@ msgstr "Загальні параметри" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "Загальні налаштування" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "Загальні параметри OPKG" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "Cтворити конфігурацію" @@ -2115,7 +2106,7 @@ msgstr "Cтворити архів" msgid "Generic 802.11%s Wireless Controller" msgstr "Бездротовий 802.11%s контролер" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "Оскільки пароль і підтвердження не співпадають, то пароль не змінено!" @@ -2123,14 +2114,14 @@ msgstr "Оскільки пароль і підтвердження не спі� msgid "Global Settings" msgstr "Загальні параметри" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "Глобальні параметри мережі" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "Перейти до конфігурації пароля..." @@ -2163,7 +2154,7 @@ msgstr "Режим HT (802.11n)" msgid "Hang Up" msgstr "Призупинити" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2175,14 +2166,6 @@ msgstr "" "Тут ви можете налаштувати основні параметри вигляду вашого пристрою, такі як " "назва (ім’я) вузла або часовий пояс." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" -"Тут ви можете вставити відкриті SSH-ключі (по одному на рядок) для SSH з " -"відкритим ключем автентифікації." - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2197,7 +2180,7 @@ msgid "Hide empty chains" msgstr "Приховати порожні ланцюжки" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "Вузол" @@ -2218,9 +2201,9 @@ msgid "Host-Uniq tag content" msgstr "Зміст тегу Host-Uniq" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2275,7 +2258,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "Брандмауер IPv4" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "Висхідне з’єднання IPv4" @@ -2299,9 +2282,9 @@ msgstr "Шлюз IPv4" msgid "IPv4 netmask" msgstr "Маска мережі IPv4" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" -msgstr "" +msgstr "Мережа IPv4 у позначенні адреси / мережевої маски" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 msgid "IPv4 prefix" @@ -2344,13 +2327,13 @@ msgstr "Сусіди IPv6" msgid "IPv6 Settings" msgstr "Налаштування IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" "<abbr title=\"Unique Local Address — унікальна локальна адреса\">ULA</abbr>-" "префікс IPv6" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "Висхідне з’єднання IPv6" @@ -2372,9 +2355,9 @@ msgstr "Довжина призначення IPv6" msgid "IPv6 gateway" msgstr "Шлюз IPv6" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" -msgstr "" +msgstr "Мережа IPv6 у позначенні адреси / мережевої маски" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 @@ -2532,7 +2515,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "Тайм-аут бездіяльності" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "Вхідний:" @@ -2552,10 +2535,6 @@ msgstr "Скрипт ініціалізації" msgid "Initscripts" msgstr "Скрипти ініціалізації" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Інсталювати" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "Інсталюйте iputils-traceroute6 для трасування IPv6" @@ -2568,17 +2547,13 @@ msgstr "Інсталяція пакета %q" msgid "Install protocol extensions..." msgstr "Інсталяція розширень протоколу..." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "Інстальовано пакети" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Інтерфейс" @@ -2657,7 +2632,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "Потрібен JavaScript!" @@ -2682,7 +2657,7 @@ msgstr "Зберегти налаштування" msgid "Kernel Log" msgstr "Журнал ядра" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "Версія ядра" @@ -2728,7 +2703,7 @@ msgstr "Поріг помилок ехо-запитів LCP" msgid "LCP echo interval" msgstr "Інтервал ехо-запитів LCP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2745,7 +2720,7 @@ msgstr "Мова" msgid "Language and Style" msgstr "Мова та стиль" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "Затримка" @@ -2753,7 +2728,7 @@ msgstr "Затримка" msgid "Leaf" msgstr "Лист" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "Час оренди" @@ -2798,19 +2773,19 @@ msgid "Limit listening to these interfaces, and loopback." msgstr "" "Обмежитися прослуховуванням цих інтерфейсів і повернутися до початку циклу." -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "Затухання лінії" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "Режим лінії" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "Стан лінії" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "Час безперервної роботи лінії" @@ -2880,7 +2855,7 @@ msgstr "Інтерфейси прослуховування" msgid "Listen Port" msgstr "Порти прослуховування" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Прослуховувати тільки на цьому інтерфейсі, або на всіх (якщо <em>не " @@ -2896,7 +2871,7 @@ msgstr "Порт прослуховування для вхідних DNS-зап msgid "Load" msgstr "Навантаження" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "Середнє навантаження" @@ -2906,6 +2881,10 @@ msgstr "Середнє навантаження" msgid "Loading" msgstr "Завантаження" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "Завантаження SSH-ключів…" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "Неприпустима локальна ІР-адреса" @@ -2935,7 +2914,7 @@ msgstr "Тільки локальна служба" msgid "Local Startup" msgstr "Локальний запуск" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Місцевий час" @@ -2995,11 +2974,11 @@ msgstr "Журналювання" msgid "Login" msgstr "Увійти" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Вийти" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -3014,9 +2993,9 @@ msgid "MAC" msgstr "MAC" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-адреса" @@ -3052,7 +3031,7 @@ msgstr "MБ/с" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "МГц" @@ -3080,7 +3059,7 @@ msgstr "" msgid "Manual" msgstr "Вручну" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Макс. досяжна швидкість передачі даних (ATTNDR)" @@ -3117,16 +3096,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "Максимальна кількість орендованих адрес." -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Мбіт/с" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Пам’ять" @@ -3169,11 +3148,11 @@ msgstr "Домен мобільності" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Режим" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "Модель" @@ -3212,7 +3191,7 @@ msgstr "Вхід монтування" msgid "Mount Point" msgstr "Точка монтування" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3238,7 +3217,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "Монтувати не конкретно налаштовані файлові системи" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "Опції монтування" @@ -3309,15 +3288,15 @@ msgstr "Назва (ім’я) нової мережі" msgid "Navigation" msgstr "Навігація" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "Маска мережі" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3343,6 +3322,10 @@ msgstr "Мережа без інтерфейсів." msgid "Next »" msgstr "Наступний »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "№" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "Немає DHCP-сервера, налаштованого для цього інтерфейсу" @@ -3355,9 +3338,9 @@ msgstr "Немає NAT-T" msgid "No files found" msgstr "Файли не знайдено" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "Інформація відсутня" @@ -3377,18 +3360,18 @@ msgstr "На цьому пристрої немає налаштованої м� msgid "No network name specified" msgstr "Ім’я мережі не визначено" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "Немає доступних списків пакетів" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "Пароль не встановлено!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "Відкритих ключів поки що немає" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "У цьму ланцюжку нема правил." @@ -3401,23 +3384,23 @@ msgstr "Результати сканування наразі недоступ� msgid "No zone assigned" msgstr "Зону не призначено" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "Шум" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "Співвідношення сигнал/шум" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "Шум:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "Не запобіжні помилки CRC (CRC_P)" @@ -3443,8 +3426,8 @@ msgstr "Не знайдено" msgid "Not associated" msgstr "Не пов’язаний" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "Не підключено" @@ -3468,14 +3451,6 @@ msgstr "Кількість кешованих записів DNS (макс. - 10 msgid "Number of parallel threads used for compression" msgstr "Кількість паралельних потоків, що використовуються для стиснення" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "OK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "Конфігурація OPKG" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "Обфусований груповий пароль" @@ -3516,7 +3491,7 @@ msgstr "" msgid "On-State Delay" msgstr "Затримка On-State" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "Має бути зазначено одне з двох – ім’я вузла або МАС-адреса!" @@ -3631,7 +3606,7 @@ msgstr "" msgid "Options" msgstr "Опції" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "Інше:" @@ -3639,7 +3614,7 @@ msgstr "Інше:" msgid "Out" msgstr "Вих." -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "Вихідний:" @@ -3779,7 +3754,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3787,15 +3762,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "Потрібен пакет libiwinfo!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "Перелік пакетів створений більше ніж 24 години тому" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Назва пакета" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Пакети" @@ -3806,13 +3772,13 @@ msgstr "Частина зони %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Пароль" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Автентифікація за паролем" @@ -3824,14 +3790,14 @@ msgstr "Пароль закритого ключа" msgid "Password of inner Private Key" msgstr "Пароль внутрішнього закритого ключа" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "Пароль успішно змінено!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "Пароль2" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "Вставте або перетягніть файл SSH-ключа…" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Шлях до центру сертифікції" @@ -3856,17 +3822,17 @@ msgstr "Шлях до внутрішнього сертифікату клієн msgid "Path to inner Private Key" msgstr "Шлях до внутрішнього закритого ключа" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "Пік:" @@ -3898,7 +3864,7 @@ msgstr "Виконати відновлення" msgid "Persistent Keep Alive" msgstr "Завжди тримати ввімкненим" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "Фізична швидкість:" @@ -3926,16 +3892,11 @@ msgstr "пакетів" msgid "Please enter your username and password." msgstr "Введіть ім’я користувача і пароль." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "Спочатку оновіть списки пакетів" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "Політика" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Порт" @@ -3943,11 +3904,11 @@ msgstr "Порт" msgid "Port status:" msgstr "Стан порту:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "Режим керування живленням" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "Попереджувати помилки CRC (CRCP_P)" @@ -3959,7 +3920,7 @@ msgstr "Переважно LTE" msgid "Prefer UMTS" msgstr "Переважно UMTS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "Делеговано префікс" @@ -3980,7 +3941,7 @@ msgstr "" "Вважати вузол недоступним після визначеної кількості невдач отримання ехо-" "пакета LCP, використовуйте 0, щоб ігнорувати невдачі" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "Перешкоджати прослуховуванню цих інтерфейсів." @@ -4002,7 +3963,7 @@ msgstr "Продовжити" msgid "Processes" msgstr "Процеси" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "Профіль" @@ -4012,9 +3973,9 @@ msgstr "Прот." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Протокол" @@ -4042,6 +4003,18 @@ msgstr "Псевдо Ad-Hoc (ahdemo)" msgid "Public Key" msgstr "Відкритий ключ" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" +"Відкриті ключі дозволяють безпарольний SSH-вхід з більш високою безпекою " +"порівняно з використанням простих паролів. Щоб завантажити до пристрою новий " +"ключ, вставте сумісний із OpenSSH відкритий ключ або перетягніть файл <code>." +"pub</code> у поле введення." + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "Публічний префікс надісланий на цей пристрій для поширення клієнтам." @@ -4051,7 +4024,7 @@ msgid "QMI Cellular" msgstr "Стільниковий QMI" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "Якість" @@ -4086,7 +4059,7 @@ msgstr "Поріг RTS/CTS" msgid "RX" msgstr "Одержано" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "Швидкість приймання" @@ -4154,7 +4127,7 @@ msgstr "Дійсно скинути всі зміни?" msgid "Really switch protocol?" msgstr "Дійсно змінити протокол?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "Підключення у реальному часі" @@ -4162,15 +4135,15 @@ msgstr "Підключення у реальному часі" msgid "Realtime Graphs" msgstr "Графіки у реальному часі" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "Навантаження у реальному часі" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "Трафік у реальному часі" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "Бездротові мережі у реальному часі" @@ -4182,7 +4155,7 @@ msgstr "Кінцевий термін реассоціації" msgid "Rebind protection" msgstr "Захист від переприв’язки" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Перезавантаження" @@ -4244,7 +4217,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "Віддалена адреса IPv4 або FQDN" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Видалити" @@ -4310,7 +4282,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Скинути" @@ -4353,6 +4324,8 @@ msgid "Restore backup" msgstr "Відновити з резервної копії" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "Показати/приховати пароль" @@ -4362,15 +4335,15 @@ msgstr "Показати/приховати пароль" msgid "Revert" msgstr "Скасувати" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "Скасувати зміни" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "Помилка запиту на скасування зі статусом <code>%h</code>" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "Відкат конфігурації…" @@ -4399,7 +4372,8 @@ msgstr "Тип маршруту" msgid "Router Advertisement-Service" msgstr "Служба оголошень маршрутизатора" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "Пароль маршрутизатора" @@ -4421,11 +4395,11 @@ msgstr "" msgid "Rule" msgstr "Правило" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "Виконати перевірку файлової системи перед монтуванням пристрою" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "Виконати перевірку файлової системи" @@ -4433,11 +4407,12 @@ msgstr "Виконати перевірку файлової системи" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH-доступ" @@ -4453,7 +4428,8 @@ msgstr "Порт сервера SSH" msgid "SSH username" msgstr "Ім’я користувача SSH" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "SSH-ключі" @@ -4462,7 +4438,7 @@ msgstr "SSH-ключі" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4473,6 +4449,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Зберегти" @@ -4489,6 +4466,10 @@ msgstr "Зберегти mtdblock" msgid "Save mtdblock contents" msgstr "Зберегти вміст mtdblock" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Сканувати" @@ -4497,7 +4478,7 @@ msgstr "Сканувати" msgid "Scan request failed" msgstr "Помилка запиту на сканування" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Заплановані завдання" @@ -4510,7 +4491,7 @@ msgstr "Секцію додано" msgid "Section removed" msgstr "Секцію видалено" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "Подробиці дивись на сторінці керівництва \"mount\"." @@ -4558,6 +4539,14 @@ msgstr "Тип сервісу" msgid "Services" msgstr "Сервіси" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "Час сеансу минув" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "Встановити VPN типовим маршрутом" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4582,11 +4571,11 @@ msgstr "Не вдалося налаштувати режим роботи" msgid "Setup DHCP Server" msgstr "Налаштування DHCP-сервера" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "Short GI" @@ -4606,22 +4595,22 @@ msgstr "Показати порожні ланцюжки" msgid "Shutdown this interface" msgstr "Вимкнути цей інтерфейс" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "Сигнал" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "Затухання сигналу (SATN)" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "Сигнал:" @@ -4629,10 +4618,6 @@ msgstr "Сигнал:" msgid "Size" msgstr "Розмір" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "Розмір (.ipk)" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "Розмір кешу запитів DNS" @@ -4660,12 +4645,7 @@ msgstr "Перейти до навігації" msgid "Slot time" msgstr "Час слота" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Програмне забезпечення" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "Програмово реалізований VLAN" @@ -4691,7 +4671,7 @@ msgstr "" "прошити вручну. Зверніться до Wiki за інструкцією з інсталяції для " "конкретного пристрою." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4701,7 +4681,7 @@ msgstr "Джерело" msgid "Specifies the directory the device is attached to" msgstr "Визначає каталог, до якого приєднаний пристрій" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "Визначає порт прослуховування цієї реалізації <em>Dropbear</em>" @@ -4751,7 +4731,7 @@ msgstr "Запустити" msgid "Start priority" msgstr "Стартовий пріоритет" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "Розпочато застосування конфігурації…" @@ -4759,7 +4739,7 @@ msgstr "Розпочато застосування конфігурації…" msgid "Starting wireless scan..." msgstr "Розпочато сканування бездротових мереж..." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "Запуск" @@ -4771,7 +4751,7 @@ msgstr "Статичні маршрути IPv4" msgid "Static IPv6 Routes" msgstr "Статичні маршрути IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Статичні оренди" @@ -4779,11 +4759,11 @@ msgstr "Статичні оренди" msgid "Static Routes" msgstr "Статичні маршрути" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "Статична адреса" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4801,8 +4781,7 @@ msgstr "Обмеження бездіяльності станції" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Стан" @@ -4827,7 +4806,7 @@ msgstr "Блокувати журналювання" msgid "Suppress logging of the routine operation of these protocols" msgstr "Блокувати ведення журналу звичайної роботи цих протоколів" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "Своп" @@ -4859,7 +4838,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "Маска портів комутатора" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "VLAN комутатора" @@ -4877,7 +4856,7 @@ msgid "Synchronizing..." msgstr "Синхронізація..." #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4897,7 +4876,7 @@ msgstr "Властивості системи" msgid "System log buffer size" msgstr "Розмір буфера системного журналу" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4915,7 +4894,7 @@ msgstr "Корінь TFTP-сервера" msgid "TX" msgstr "Передано" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "Швидкість передавання" @@ -5001,7 +4980,7 @@ msgstr "Архів резервної копії не є правильним ф msgid "The configuration file could not be loaded due to the following error:" msgstr "Файл конфігурації не вдалося завантажити через таку помилку:" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -5052,6 +5031,18 @@ msgstr "Наведені нижче зміни було скасовано" msgid "The following rules are currently active on this system." msgstr "Наразі в цій системі активні такі правила." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "Наданий відкритий SSH-ключ вже було додано." + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" +"Наданий відкритий SSH-ключ є недійсним. Надавайте належні відкриті ключі RSA " +"або ECDSA." + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "Задане мережеве ім’я не є унікальним" @@ -5108,7 +5099,7 @@ msgstr "Обраний протокол потребує призначених msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." @@ -5116,7 +5107,7 @@ msgstr "" "Зараз система видаляє розділ конфігурації і коли закінчить, " "перезавантажиться." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -5129,6 +5120,10 @@ msgstr "" "під’єднатися. Залежно від налаштувань, можливо, треба буде оновити адресу " "вашого комп’ютера, щоб знову отримати доступ до пристрою." +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "Системний пароль успішно змінено." + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -5137,12 +5132,16 @@ msgstr "" "Завантажений файл образу не містить підтримуваний формат. Переконайтеся, що " "ви вибираєте універсальний формат образу для вашої платформи." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Тема" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "Активних оренд немає." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "Немає жодних змін до застосування." @@ -5166,7 +5165,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5260,7 +5259,7 @@ msgid "" "their status." msgstr "У цьому списку наведено працюючі наразі системні процеси та їх стан." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "Ця сторінка надає огляд поточних активних мережевих підключень." @@ -5286,6 +5285,10 @@ msgstr "Інтервал часу для зміни ключа GTK" msgid "Timezone" msgstr "Часовий пояс" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "Для входу…" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5297,12 +5300,12 @@ msgstr "" "натисніть кнопку \"Виконати відновлення\" (можливо тільки з образами " "SquashFS)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "Тоновий" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "Усього доступно" @@ -5317,7 +5320,7 @@ msgstr "Трасування" msgid "Traffic" msgstr "Трафік" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Передано" @@ -5352,7 +5355,7 @@ msgstr "Режим запуску" msgid "Tunnel ID" msgstr "Ідентифікатор тунелю" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "Інтерфейс тунелю" @@ -5367,12 +5370,12 @@ msgid "Tx-Power" msgstr "Потужність передавача" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Тип" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5426,36 +5429,36 @@ msgstr "Не вдається розрізнити ім’я хоста AFTR" msgid "Unable to resolve peer host name" msgstr "Не вдається розрізнити ім’я хоста вузла" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "Недоступні секунди (<abbr title=\"Unavailable Seconds\">UAS</abbr>)" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "Невідомо" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "Невідома помилка, пароль не змінено!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "Невідома помилка (%s)" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "Некерований" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "Демонтувати" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "Безіменний ключ" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Незбережені зміни" @@ -5475,10 +5478,6 @@ msgstr "Непідтримуваний тип протоколу." msgid "Up" msgstr "Вгору" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "Оновити списки" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5499,7 +5498,7 @@ msgstr "Відвантажений файл" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Час безперервної роботи" @@ -5615,7 +5614,7 @@ msgstr "Використовувати метрику шлюзу" msgid "Use routing table" msgstr "Використовувати таблицю маршрутизації" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5659,11 +5658,11 @@ msgstr "Ключ користувача (PEM-кодований)" msgid "Username" msgstr "Ім’я користувача" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "VDSL" @@ -5713,11 +5712,6 @@ msgstr "Клас постачальника для відправки при з� msgid "Verify" msgstr "Перевірте" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Версія" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "Віртуальний динамічний інтерфейс" @@ -5768,9 +5762,9 @@ msgstr "Очікуємо, доки зміни наберуть чинності. msgid "Waiting for command to complete..." msgstr "Очікуємо завершення виконання команди..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" -msgstr "Чекаємо на застосування конфігурації… %d c" +msgstr "Очікування застосування конфігурації… %d c" #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 msgid "Waiting for device..." @@ -5803,16 +5797,16 @@ msgstr "WireGuard VPN" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "Бездротові мережі" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Бездротовий адаптер" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "Бездротова мережа" @@ -5827,13 +5821,13 @@ msgstr "Безпека бездротової мережі" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "Бездротову мережу вимкнено" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "Бездротову мережу не пов’язано" @@ -5857,6 +5851,10 @@ msgstr "Записувати отримані DNS-запити до систем msgid "Write system log to file" msgstr "Записувати cистемний журнал до файлу" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "Так" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5872,7 +5870,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5909,9 +5907,9 @@ msgstr "Розмір ZRam" msgid "any" msgstr "будь-який" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5928,7 +5926,7 @@ msgstr "авто" msgid "baseT" msgstr "baseT" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "зв’язано" @@ -5947,24 +5945,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "Створює міст через зазначені інтерфейси" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "дБ" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "дБм" @@ -6006,9 +6004,9 @@ msgstr "повний дуплекс" msgid "half-duplex" msgstr "напівдуплекс" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" -msgstr "" +msgstr "шістнадцяткове кодоване значення" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:162 msgid "hidden" @@ -6028,46 +6026,46 @@ msgstr "якщо ціль — мережа" msgid "input" msgstr "вхід" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "КБ" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "КБ/с" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "Кбіт/с" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" -msgstr "" +msgstr "ключ від 8 до 63 символів" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" -msgstr "" +msgstr "ключ із 5 або 13 символів" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" @@ -6093,18 +6091,9 @@ msgstr "ні" msgid "no link" msgstr "нема з’єднання" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "нема нічого" +msgstr "непусте значення" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 @@ -6117,7 +6106,7 @@ msgstr "не присутній" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "вимкнено" @@ -6125,15 +6114,17 @@ msgstr "вимкнено" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "увімкнено" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" msgstr "" +"одне з:\n" +" - %s" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:71 msgid "open" @@ -6147,13 +6138,13 @@ msgstr "вихід" msgid "overlay" msgstr "оверлей" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" -msgstr "" +msgstr "додатне десяткове значення" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" -msgstr "" +msgstr "додатне ціле значення" #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 msgid "random" @@ -6165,7 +6156,7 @@ msgstr "випадковий" msgid "relay mode" msgstr "режим реле" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "спрямовано" @@ -6199,9 +6190,9 @@ msgstr "позначено" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "одиниці часу (TUs / 1.024 ms) [1000-65535]" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" -msgstr "" +msgstr "унікальне значення" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:69 msgid "unknown" @@ -6226,161 +6217,161 @@ msgstr "не визначено -або- створити:" msgid "untagged" msgstr "не позначено" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" -msgstr "" +msgstr "значення від %d до %d символів" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" -msgstr "" +msgstr "значення від %f до %f" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" -msgstr "" +msgstr "значення, що більше або дорівнює %f" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" -msgstr "" +msgstr "значення, що менше або дорівнює %f" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" -msgstr "" +msgstr "значення з принаймні %d символів" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" -msgstr "" +msgstr "значення з не більше %d символів" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 @@ -6391,24 +6382,3 @@ msgstr "так" #: modules/luci-base/luasrc/view/cbi/delegator.htm:20 msgid "« Back" msgstr "« Назад" - -#~ msgid "Disable DNS setup" -#~ msgstr "Вимкнути налаштування DNS" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 та IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "Тільки IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "Тільки IPv6" - -#~ msgid "Lease validity time" -#~ msgstr "Час чинності оренди" - -#~ msgid "Multicast address" -#~ msgstr "Адреса багатоадресного потоку" - -#~ msgid "Protocol family" -#~ msgstr "Сімейство протоколів" diff --git a/modules/luci-base/po/vi/base.po b/modules/luci-base/po/vi/base.po index 56d01ccbff..9b606743a3 100644 --- a/modules/luci-base/po/vi/base.po +++ b/modules/luci-base/po/vi/base.po @@ -12,10 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 1.1.0\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -49,16 +53,16 @@ msgstr "" msgid "-- Additional Field --" msgstr "---Mục bổ sung---" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "--Hãy chọn--" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "--tùy chỉnh--" @@ -82,11 +86,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "" @@ -98,7 +102,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "" @@ -152,7 +156,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Mở rộng dịch vụ đặt Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" @@ -179,11 +183,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" @@ -192,12 +196,12 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-Address" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -223,19 +227,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -249,37 +257,37 @@ msgstr "" msgid "ARP retry threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " "to dial into the provider network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -294,8 +302,6 @@ msgstr "Điểm truy cập" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "Hành động" @@ -307,8 +313,8 @@ msgstr "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes" msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "kết nối đang hoạt động" @@ -335,6 +341,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "Thêm vào" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "" @@ -351,8 +364,8 @@ msgstr "" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "" @@ -368,7 +381,7 @@ msgstr "Quản trị" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -376,7 +389,7 @@ msgstr "Quản trị" msgid "Advanced Settings" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -384,7 +397,7 @@ msgstr "" msgid "Alert" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -407,7 +420,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Cho phép <abbr title=\"Secure Shell\">SSH</abbr> xác thực mật mã" @@ -433,15 +446,15 @@ msgstr "Chỉ cho phép danh sách liệt kê" msgid "Allow localhost" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "" @@ -464,64 +477,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -567,15 +580,15 @@ msgstr "" msgid "Any zone" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -596,11 +609,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -631,8 +644,8 @@ msgstr "Yêu cầu ủy quyền" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "" @@ -675,29 +688,25 @@ msgstr "" msgid "Available" msgstr "Sẵn có" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -708,7 +717,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "" @@ -738,7 +747,7 @@ msgstr "" msgid "Backup" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "" @@ -766,12 +775,14 @@ msgid "" "defined backup patterns." msgstr "" -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -780,7 +791,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "" @@ -788,7 +799,7 @@ msgstr "" msgid "Bogus NX Domain Override" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "" @@ -796,7 +807,7 @@ msgstr "" msgid "Bridge interfaces" msgstr "Giao diện cầu nối" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "" @@ -812,16 +823,10 @@ msgstr "" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -836,6 +841,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "Bỏ qua" @@ -858,6 +864,12 @@ msgstr "" msgid "Chain" msgstr "chuỗi" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -867,20 +879,24 @@ msgstr "Thay đổi" msgid "Changes applied." msgstr "Thay đổi đã áp dụng" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "Kênh" @@ -955,6 +971,11 @@ msgstr "Client" msgid "Client ID to send when requesting DHCP" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -972,16 +993,16 @@ msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1012,8 +1033,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "Cấu hình" @@ -1025,15 +1044,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "Xác nhận" @@ -1042,8 +1061,8 @@ msgid "Connect" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "" @@ -1059,7 +1078,7 @@ msgstr "" msgid "Connections" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1116,16 +1135,6 @@ msgstr "" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1150,7 +1159,7 @@ msgstr "" msgid "DHCP and DNS" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "" @@ -1170,16 +1179,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "" @@ -1207,16 +1216,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1228,7 +1237,7 @@ msgstr "" msgid "DUID" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1242,6 +1251,10 @@ msgstr "" msgid "Default %d" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1276,6 +1289,11 @@ msgstr "" msgid "Delete" msgstr "Xóa" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "" @@ -1284,16 +1302,11 @@ msgstr "" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "Mô tả" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "Thiết kế" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "Điểm đến" @@ -1301,8 +1314,8 @@ msgstr "Điểm đến" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1319,7 +1332,7 @@ msgstr "" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1385,18 +1398,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1406,10 +1422,6 @@ msgstr "Khoảng cách tối ưu" msgid "Distance to farthest network member in meters." msgstr "Khoảng cách tới thành viên xa nhất trong mạng lưới tính bằng mét" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "Tính đa dạng" @@ -1438,6 +1450,10 @@ msgstr "" msgid "Do not forward reverse lookups for local networks" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "Domain yêu cầu" @@ -1462,10 +1478,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "Tải và cài đặt gói" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "" @@ -1474,15 +1486,15 @@ msgstr "" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1653,8 +1665,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "Kích hoạt Spanning Tree Protocol trên cầu nối này" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "" @@ -1662,7 +1674,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "Encryption" @@ -1682,7 +1694,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "" @@ -1691,19 +1703,19 @@ msgstr "" msgid "Error" msgstr "Lỗi" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "Bộ tương hợp ethernet" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "Bộ chuyển đảo ethernet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1711,11 +1723,11 @@ msgstr "" msgid "Expand hosts" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "" @@ -1764,7 +1776,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1782,10 +1794,6 @@ msgstr "" msgid "Filesystem" msgstr "Tập tin hệ thống" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "Lọc" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "Filter private" @@ -1808,10 +1816,6 @@ msgstr "" msgid "Find and join network" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "Tìm gói" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "" @@ -1832,11 +1836,11 @@ msgstr "" msgid "Firewall Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "" @@ -1860,7 +1864,7 @@ msgstr "" msgid "Flash operations" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "" @@ -1908,7 +1912,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1920,7 +1924,7 @@ msgstr "" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "" @@ -1933,15 +1937,11 @@ msgstr "Ngưỡng cửa Phân đoạn" msgid "Frame Bursting" msgstr "Khung nổ" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1950,7 +1950,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "" @@ -1959,8 +1959,8 @@ msgstr "" msgid "GPRS only" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "" @@ -1968,7 +1968,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "" @@ -1981,16 +1981,12 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -2007,7 +2003,7 @@ msgstr "" msgid "Generic 802.11%s Wireless Controller" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "" @@ -2015,14 +2011,14 @@ msgstr "" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "" @@ -2055,7 +2051,7 @@ msgstr "" msgid "Hang Up" msgstr "Hang Up" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2067,12 +2063,6 @@ msgstr "" "Ở đây bạn có thể cấu hình những đặc tính cơ bản của thiết bị như tên máy chủ " "hoặc múi giờ." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2085,7 +2075,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2106,9 +2096,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2163,7 +2153,7 @@ msgstr "" msgid "IPv4 Firewall" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2187,7 +2177,7 @@ msgstr "" msgid "IPv4 netmask" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2232,11 +2222,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2258,7 +2248,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2410,7 +2400,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "" @@ -2430,10 +2420,6 @@ msgstr "Initscript" msgid "Initscripts" msgstr "Initscripts" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "Cài đặt " - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2446,17 +2432,13 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "Giao diện " @@ -2533,7 +2515,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "" @@ -2558,7 +2540,7 @@ msgstr "" msgid "Kernel Log" msgstr "Kernel Log" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "" @@ -2604,7 +2586,7 @@ msgstr "" msgid "LCP echo interval" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "" @@ -2621,7 +2603,7 @@ msgstr "Ngôn ngữ" msgid "Language and Style" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2629,7 +2611,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2672,19 +2654,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2736,7 +2718,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" @@ -2750,7 +2732,7 @@ msgstr "" msgid "Load" msgstr "Tải " -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "" @@ -2760,6 +2742,10 @@ msgstr "" msgid "Loading" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2789,7 +2775,7 @@ msgstr "" msgid "Local Startup" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "Giờ địa phương" @@ -2842,11 +2828,11 @@ msgstr "" msgid "Login" msgstr "Đăng nhập " -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "Thoát ra" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2861,9 +2847,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "" @@ -2899,7 +2885,7 @@ msgstr "" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "" @@ -2925,7 +2911,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -2960,16 +2946,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "Bộ nhớ" @@ -3012,11 +2998,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "Chế độ" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3055,7 +3041,7 @@ msgstr "" msgid "Mount Point" msgstr "Lắp điểm" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3081,7 +3067,7 @@ msgstr "" msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "" @@ -3152,15 +3138,15 @@ msgstr "" msgid "Navigation" msgstr "Sự điều hướng" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3186,6 +3172,10 @@ msgstr "" msgid "Next »" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "" @@ -3198,9 +3188,9 @@ msgstr "" msgid "No files found" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "" @@ -3220,18 +3210,18 @@ msgstr "" msgid "No network name specified" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "Không có quy luật trong chuỗi này" @@ -3244,23 +3234,23 @@ msgstr "" msgid "No zone assigned" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3286,8 +3276,8 @@ msgstr "" msgid "Not associated" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "" @@ -3311,14 +3301,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "OK " - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "Cấu hình OPKG-" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3359,7 +3341,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "" @@ -3459,7 +3441,7 @@ msgstr "" msgid "Options" msgstr "Lựa chọn " -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "" @@ -3467,7 +3449,7 @@ msgstr "" msgid "Out" msgstr "Ra khỏi" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "" @@ -3602,7 +3584,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3610,15 +3592,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "Tên gói" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "Gói tin" @@ -3629,13 +3602,13 @@ msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "Mật mã" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "Xác thực mật mã" @@ -3647,14 +3620,14 @@ msgstr "Mật mã của private key" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "Đường dẫn tới CA-Certificate" @@ -3679,17 +3652,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "" @@ -3721,7 +3694,7 @@ msgstr "" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "" @@ -3749,16 +3722,11 @@ msgstr "" msgid "Please enter your username and password." msgstr "Nhập tên và mật mã" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "Chính sách" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Cửa " @@ -3766,11 +3734,11 @@ msgstr "Cửa " msgid "Port status:" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3782,7 +3750,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3801,7 +3769,7 @@ msgid "" "ignore failures" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3823,7 +3791,7 @@ msgstr "Proceed" msgid "Processes" msgstr "Processes" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3833,9 +3801,9 @@ msgstr "Prot." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "Protocol" @@ -3863,6 +3831,14 @@ msgstr "Pseudo Ad-Hoc (ahdemo)" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3872,7 +3848,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "" @@ -3905,7 +3881,7 @@ msgstr "RTS/CTS Threshold" msgid "RX" msgstr "RX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "" @@ -3965,7 +3941,7 @@ msgstr "" msgid "Really switch protocol?" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "" @@ -3973,15 +3949,15 @@ msgstr "" msgid "Realtime Graphs" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "" @@ -3993,7 +3969,7 @@ msgstr "" msgid "Rebind protection" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "Reboot" @@ -4055,7 +4031,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "Loại bỏ" @@ -4119,7 +4094,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "Reset" @@ -4162,6 +4136,8 @@ msgid "Restore backup" msgstr "Phục hồi backup" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "" @@ -4171,15 +4147,15 @@ msgstr "" msgid "Revert" msgstr "Revert" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4208,7 +4184,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "" @@ -4230,11 +4207,11 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "" @@ -4242,11 +4219,12 @@ msgstr "" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "" @@ -4262,7 +4240,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "" @@ -4271,7 +4250,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4282,6 +4261,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "Lưu" @@ -4298,6 +4278,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "Scan" @@ -4306,7 +4290,7 @@ msgstr "Scan" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "Scheduled Tasks" @@ -4319,7 +4303,7 @@ msgstr "" msgid "Section removed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "" @@ -4362,6 +4346,14 @@ msgstr "" msgid "Services" msgstr "Dịch vụ " +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4384,11 +4376,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4408,22 +4400,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "" @@ -4431,10 +4423,6 @@ msgstr "" msgid "Size" msgstr "Dung lượng " -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4462,12 +4450,7 @@ msgstr "Chuyển đến mục định hướng" msgid "Slot time" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "Phần mềm" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4490,7 +4473,7 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4500,7 +4483,7 @@ msgstr "Nguồn" msgid "Specifies the directory the device is attached to" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "" @@ -4546,7 +4529,7 @@ msgstr "Bắt đầu " msgid "Start priority" msgstr "Bắt đầu ưu tiên" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4554,7 +4537,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "" @@ -4566,7 +4549,7 @@ msgstr "Static IPv4 Routes" msgid "Static IPv6 Routes" msgstr "Static IPv6 Routes" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "Thống kê leases" @@ -4574,11 +4557,11 @@ msgstr "Thống kê leases" msgid "Static Routes" msgstr "Static Routes" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4592,8 +4575,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "Tình trạng" @@ -4618,7 +4600,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4648,7 +4630,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4666,7 +4648,7 @@ msgid "Synchronizing..." msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4686,7 +4668,7 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "" @@ -4704,7 +4686,7 @@ msgstr "" msgid "TX" msgstr "TX" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "" @@ -4777,7 +4759,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4820,6 +4802,16 @@ msgstr "Những thay đối sau đây đã được để trở về tình trạ msgid "The following rules are currently active on this system." msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "" @@ -4865,13 +4857,13 @@ msgstr "" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -4883,6 +4875,10 @@ msgstr "" "một vài phút cho tới khi kết nối lại. Có thể cần phải làm mới địa chỉ của " "máy tính để tiếp cận thiết bị một lần nữa, phụ thuộc vào cài đặt của bạn. " +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -4891,12 +4887,16 @@ msgstr "" "Tập tin đang tải hình ảnh không bao gồm một hổ trợ format. Bảo đảm rằng bạn " "chọn một image format tổng quát cho platform." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "Thiết kế" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -4918,7 +4918,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -4994,7 +4994,7 @@ msgstr "" "List này đưa ra một tầm nhìn tổng quát về xử lý hệ thống đang chạy và tình " "trạng của chúng." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "" "Trang này cung cấp một tổng quan về đang hoạt động kết nối mạng hiện tại." @@ -5021,6 +5021,10 @@ msgstr "" msgid "Timezone" msgstr "Múi giờ " +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5028,12 +5032,12 @@ msgid "" "reset\" (only possible with squashfs images)." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "" @@ -5048,7 +5052,7 @@ msgstr "" msgid "Traffic" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "Chuyển giao" @@ -5083,7 +5087,7 @@ msgstr "" msgid "Tunnel ID" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "" @@ -5098,12 +5102,12 @@ msgid "Tx-Power" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "Loại " -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "" @@ -5157,36 +5161,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "Thay đổi không lưu" @@ -5206,10 +5210,6 @@ msgstr "" msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5227,7 +5227,7 @@ msgstr "Tập tin đã tải lên" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "Uptime" @@ -5343,7 +5343,7 @@ msgstr "" msgid "Use routing table" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5380,11 +5380,11 @@ msgstr "" msgid "Username" msgstr "Tên người dùng " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5434,11 +5434,6 @@ msgstr "" msgid "Verify" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "Phiên bản" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5487,7 +5482,7 @@ msgstr "" msgid "Waiting for command to complete..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5520,16 +5515,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "Bộ tương hợp không dây" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "" @@ -5544,13 +5539,13 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "" @@ -5574,6 +5569,10 @@ msgstr "" msgid "Write system log to file" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5589,7 +5588,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5621,9 +5620,9 @@ msgstr "" msgid "any" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5640,7 +5639,7 @@ msgstr "tự động" msgid "baseT" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "" @@ -5659,24 +5658,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "tạo một cầu nối trên một giao diện được chỉ định" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "" @@ -5718,7 +5717,7 @@ msgstr "" msgid "half-duplex" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5740,44 +5739,44 @@ msgstr "Nếu mục tiêu là một network" msgid "input" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5803,19 +5802,10 @@ msgstr "" msgid "no link" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "không " - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5827,7 +5817,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "" @@ -5835,11 +5825,11 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5857,11 +5847,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5875,7 +5865,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "" @@ -5909,7 +5899,7 @@ msgstr "" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -5936,159 +5926,159 @@ msgstr "" msgid "untagged" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6102,6 +6092,39 @@ msgstr "" msgid "« Back" msgstr "" +#~ msgid "Design" +#~ msgstr "Thiết kế" + +#~ msgid "Download and install package" +#~ msgstr "Tải và cài đặt gói" + +#~ msgid "Filter" +#~ msgstr "Lọc" + +#~ msgid "Find package" +#~ msgstr "Tìm gói" + +#~ msgid "Install" +#~ msgstr "Cài đặt " + +#~ msgid "OK" +#~ msgstr "OK " + +#~ msgid "OPKG-Configuration" +#~ msgstr "Cấu hình OPKG-" + +#~ msgid "Package name" +#~ msgstr "Tên gói" + +#~ msgid "Software" +#~ msgstr "Phần mềm" + +#~ msgid "Version" +#~ msgstr "Phiên bản" + +#~ msgid "none" +#~ msgstr "không " + #~ msgid "No chains in this table" #~ msgstr "Không có chuỗi trong bảng này" diff --git a/modules/luci-base/po/zh-cn/base.po b/modules/luci-base/po/zh-cn/base.po index 74558ccda9..17e22d46b1 100644 --- a/modules/luci-base/po/zh-cn/base.po +++ b/modules/luci-base/po/zh-cn/base.po @@ -1,20 +1,26 @@ # # Yangfl <mmyangfl@gmail.com>, 2018. +# Zheng Qian <sotux82@gmail.com>, 2018. # msgid "" msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" +"PO-Revision-Date: 2018-08-18 12:39+0800\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" +"Language: \n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"PO-Revision-Date: 2018-08-18 12:39+0800\n" "X-Generator: Gtranslator 2.91.7\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "%.1f dB" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "%d Bit" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "%s 在多个 VLAN 中均未标记!" @@ -47,16 +53,16 @@ msgstr "(没有接口连接)" msgid "-- Additional Field --" msgstr "-- 更多选项 --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- 请选择 --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- 自定义 --" @@ -80,11 +86,11 @@ msgstr "-- 根据 UUID 匹配 --" msgid "-- please select --" msgstr "-- 请选择 --" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1 分钟负载:" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "15 分钟负载:" @@ -96,7 +102,7 @@ msgstr "4 字符的十六进制 ID" msgid "464XLAT (CLAT)" msgstr "464XLAT (CLAT)" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "5 分钟负载:" @@ -152,7 +158,7 @@ msgstr "" msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr> 地址" @@ -178,12 +184,12 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr> 网关" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr> 后缀(十六进制)" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 配置" @@ -192,12 +198,12 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 配置" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 名称" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr> 地址" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" @@ -227,19 +233,23 @@ msgid "" msgstr "" "<br/>注意:如果 crontab 文件在编辑前为空,则需要手动重新启动 cron 服务。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "由于身份验证会话已过期,需要重新登录。" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "A43C + J43 + A43" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "A43C + J43 + A43 + V43" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "ADSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "ANSI T1.413" @@ -253,25 +263,25 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "ARP 重试阈值" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "ATM(异步传输模式)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "ATM 桥接" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "ATM 虚拟通道标识(VCI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "ATM 虚拟路径标识(VPI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -280,12 +290,12 @@ msgstr "" "ATM 桥是以 AAL5 协议封装以太网的虚拟 Linux 网桥,用于协同 DHCP 或 PPP 来拨号" "连接到网络运营商。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "ATM 设备号码" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "ATU-C 系统供应商 ID" @@ -300,8 +310,6 @@ msgstr "接入点 AP" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "动作" @@ -313,8 +321,8 @@ msgstr "活动的 <abbr title=\"Internet Protocol Version 4\">IPv4</abbr> 路由 msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "活动的 <abbr title=\"Internet Protocol Version 6\">IPv6</abbr> 路由" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "活动连接" @@ -341,6 +349,13 @@ msgstr "点对点 Ad-Hoc" msgid "Add" msgstr "添加" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "添加密钥" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "添加本地域名后缀到 HOSTS 文件中的域名" @@ -357,8 +372,8 @@ msgstr "额外的 HOSTS 文件" msgid "Additional servers file" msgstr "额外的 SERVERS 文件" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "地址" @@ -374,7 +389,7 @@ msgstr "管理权" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -382,7 +397,7 @@ msgstr "管理权" msgid "Advanced Settings" msgstr "高级设置" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "总发射功率(ACTATP)" @@ -390,7 +405,7 @@ msgstr "总发射功率(ACTATP)" msgid "Alert" msgstr "警戒" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "接口别名" @@ -413,7 +428,7 @@ msgstr "从最低可用地址开始顺序分配 IP 地址" msgid "Allocate IP sequentially" msgstr "顺序分配 IP" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "允许 <abbr title=\"Secure Shell\">SSH</abbr> 密码验证" @@ -439,15 +454,15 @@ msgstr "仅允许列表内" msgid "Allow localhost" msgstr "允许本机" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "允许远程主机连接到本地 SSH 转发端口" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "允许 root 用户凭密码登录" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "允许 <em>root</em> 用户凭密码登录" @@ -471,64 +486,64 @@ msgid "" msgstr "" "即使辅助信道重叠,也始终使用 40MHz 信道。使用此选项不符合 IEEE 802.11n-2009!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "Annex" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "Annex A + L + M(全部)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "Annex A G.992.1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "Annex A G.992.2" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "Annex A G.992.3" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "Annex A G.992.5" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "Annex B(全部)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "Annex B G.992.1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "Annex B G.992.3" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "Annex B G.992.5" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "Annex J(全部)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "Annex L G.992.3 POTS 1" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "Annex M(全部)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "Annex M G.992.3" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "Annex M G.992.5" @@ -574,15 +589,15 @@ msgstr "天线配置" msgid "Any zone" msgstr "任意区域" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "强制应用" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "应用请求失败,状态 <code>%h</code>" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "架构" @@ -603,11 +618,11 @@ msgid "" msgstr "将此十六进制子 ID 前缀分配给此接口" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "已连接站点" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "关联数" @@ -638,8 +653,8 @@ msgstr "需要授权" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "自动刷新" @@ -682,29 +697,25 @@ msgstr "自动挂载 Swap" msgid "Available" msgstr "可用" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "可用软件包" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "平均:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "B43 + B43C" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "B43 + B43C + V43" @@ -715,7 +726,7 @@ msgstr "BR / DMR / AFTR" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -745,7 +756,7 @@ msgstr "返回至扫描结果" msgid "Backup" msgstr "备份" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "备份/升级" @@ -775,21 +786,23 @@ msgstr "" "下面是待备份的文件清单。包含了更改的配置文件、必要的基础文件和用户自定义的需" "备份文件。" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" +msgstr "动态绑定到接口而不是通配符地址(推荐为 linux 默认值)" + #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind interface" msgstr "绑定接口" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." -msgstr "仅绑定到特定接口,而不是全部地址。" - #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind the tunnel to this interface (optional)." msgstr "将隧道绑定到此接口(可选)。" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "传输速率" @@ -797,7 +810,7 @@ msgstr "传输速率" msgid "Bogus NX Domain Override" msgstr "忽略虚假空域名解析" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "桥接" @@ -805,7 +818,7 @@ msgstr "桥接" msgid "Bridge interfaces" msgstr "桥接接口" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "桥接号" @@ -821,16 +834,10 @@ msgstr "Broadcom 802.11%s 无线控制器" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Broadcom BCM%04x 802.11 无线控制器" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "已缓冲" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "由固件指定的软件源。此处的设置在任何系统升级中都不会被保留。" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "CA 证书,如果留空,则证书将在第一次连接后被保存。" @@ -845,6 +852,7 @@ msgstr "调用失败" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "取消" @@ -867,6 +875,12 @@ msgstr "注意:将强制进行系统升级" msgid "Chain" msgstr "链" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "更改登录密码" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -876,20 +890,24 @@ msgstr "更改数" msgid "Changes applied." msgstr "更改已应用。" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "更改已恢复。" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "更改访问设备的管理员密码" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "正在更改密码……" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "信道" @@ -968,6 +986,11 @@ msgstr "客户端 Client" msgid "Client ID to send when requesting DHCP" msgstr "请求 DHCP 时发送的客户端 ID" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "关闭" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -985,16 +1008,16 @@ msgstr "关闭列表…" #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1028,8 +1051,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "配置" @@ -1041,15 +1062,15 @@ msgstr "配置失败" msgid "Configuration files will be kept" msgstr "将保留配置文件" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "配置已应用。" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "配置已回滚!" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "确认密码" @@ -1058,8 +1079,8 @@ msgid "Connect" msgstr "连接" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "已连接" @@ -1075,7 +1096,7 @@ msgstr "尝试连接失败" msgid "Connections" msgstr "连接" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1134,16 +1155,6 @@ msgstr "自定义接口" msgid "Custom delegated IPv6-prefix" msgstr "自定义分配的 IPv6 前缀" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "自定义软件源地址,例如:私有的软件源。此文件在系统升级时将被保留。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "自定义软件源" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1167,7 +1178,7 @@ msgstr "DHCP 服务器" msgid "DHCP and DNS" msgstr "DHCP/DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "DHCP 客户端" @@ -1187,16 +1198,16 @@ msgstr "DHCPv6 模式" msgid "DHCPv6-Service" msgstr "DHCPv6 服务" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "DNS" @@ -1224,16 +1235,16 @@ msgstr "DPD 空闲超时" msgid "DS-Lite AFTR address" msgstr "DS-Lite AFTR 地址" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "DSL 状态" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "DSL 线路模式" @@ -1245,7 +1256,7 @@ msgstr "DTIM 间隔" msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "数据速率" @@ -1259,6 +1270,10 @@ msgstr "调试" msgid "Default %d" msgstr "默认 %d" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "默认路由" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1295,6 +1310,11 @@ msgstr "" msgid "Delete" msgstr "删除" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "删除密钥" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "删除此网络" @@ -1303,16 +1323,11 @@ msgstr "删除此网络" msgid "Delivery Traffic Indication Message Interval" msgstr "发送流量指示消息间隔" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "描述" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "主题" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "目标地址" @@ -1320,8 +1335,8 @@ msgstr "目标地址" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1338,7 +1353,7 @@ msgstr "设备配置" msgid "Device is rebooting..." msgstr "设备正在重启…" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "无法连接到设备" @@ -1406,18 +1421,21 @@ msgstr "在低 Ack 应答时断开连接" msgid "Discard upstream RFC1918 responses" msgstr "丢弃 RFC1918 上行响应数据" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "断开连接" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "尝试断开连接失败" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "解除" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "只显示有内容的软件包" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1427,10 +1445,6 @@ msgstr "距离优化" msgid "Distance to farthest network member in meters." msgstr "最远网络用户的距离(米)。" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "发行版软件源" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "差异" @@ -1458,6 +1472,10 @@ msgstr "不转发公共域名服务器无法回应的请求" msgid "Do not forward reverse lookups for local networks" msgstr "不转发本地网络的反向查询" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "您真的要删除以下 SSH 密钥吗?" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "忽略空域名解析" @@ -1481,10 +1499,6 @@ msgstr "" msgid "Down" msgstr "下移" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "下载并安装软件包" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "下载备份" @@ -1493,15 +1507,15 @@ msgstr "下载备份" msgid "Download mtdblock" msgstr "下载 mtdblock" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "下游 SNR 偏移" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Dropbear 实例" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1673,8 +1687,8 @@ msgstr "启用属于同一移动域的接入点之间的快速漫游" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "在此桥接上启用生成树协议" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "封装模式" @@ -1682,7 +1696,7 @@ msgstr "封装模式" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "加密" @@ -1702,7 +1716,7 @@ msgstr "输入自定义值" msgid "Enter custom values" msgstr "输入自定义值" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "擦除中…" @@ -1711,19 +1725,19 @@ msgstr "擦除中…" msgid "Error" msgstr "错误" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "错误秒数(ES)" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "以太网适配器" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "以太网交换机" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "排除接口" @@ -1731,11 +1745,11 @@ msgstr "排除接口" msgid "Expand hosts" msgstr "扩展 HOSTS 文件中的主机后缀" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "期望 %s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "到期时间" @@ -1784,7 +1798,7 @@ msgstr "FT over the Air" msgid "FT protocol" msgstr "FT 协议" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "在 %d 秒内确认应用失败,等待回滚…" @@ -1802,10 +1816,6 @@ msgstr "向客户端通告的启动镜像文件名" msgid "Filesystem" msgstr "文件系统" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "过滤器" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "过滤本地包" @@ -1828,10 +1838,6 @@ msgstr "查找当前系统上的所有分区和 swap 设备,并根据查找结 msgid "Find and join network" msgstr "搜索并加入网络" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "查找软件包" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "完成" @@ -1852,11 +1858,11 @@ msgstr "防火墙设置" msgid "Firewall Status" msgstr "防火墙状态" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "固件文件" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "固件版本" @@ -1880,7 +1886,7 @@ msgstr "刷写新的固件" msgid "Flash operations" msgstr "刷新操作" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "正在刷写…" @@ -1928,7 +1934,7 @@ msgstr "表单令牌不匹配" msgid "Forward DHCP traffic" msgstr "转发 DHCP 数据包" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "前向纠错秒数(FECS)" @@ -1940,7 +1946,7 @@ msgstr "转发广播数据包" msgid "Forward mesh peer traffic" msgstr "转发 mesh 节点数据包" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "转发模式" @@ -1953,15 +1959,11 @@ msgstr "分片阈值" msgid "Frame Bursting" msgstr "帧突发" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "空闲数" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "空闲空间" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1972,7 +1974,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "GHz" @@ -1981,8 +1983,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "仅 GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "网关" @@ -1990,7 +1992,7 @@ msgstr "网关" msgid "Gateway address is invalid" msgstr "网关地址无效" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "网关端口" @@ -2003,16 +2005,12 @@ msgstr "基本设置" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "基本设置" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "OPKG 基础配置" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "生成配置" @@ -2029,7 +2027,7 @@ msgstr "生成备份" msgid "Generic 802.11%s Wireless Controller" msgstr "通用 802.11%s 无线控制器" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "由于密码验证不匹配,密码没有更改!" @@ -2037,14 +2035,14 @@ msgstr "由于密码验证不匹配,密码没有更改!" msgid "Global Settings" msgstr "全局设置" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "全局网络选项" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "跳转到密码配置页…" @@ -2077,7 +2075,7 @@ msgstr "HT 模式(802.11n)" msgid "Hang Up" msgstr "挂起" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "请求头错误代码错误(HEC)" @@ -2087,12 +2085,6 @@ msgid "" "the timezone." msgstr "此处配置设备的基础信息,如主机名称或时区。" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "请在此处粘贴 SSH 公钥,每行一个,用于 SSH 公钥认证。" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2105,7 +2097,7 @@ msgid "Hide empty chains" msgstr "隐藏空链" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "主机" @@ -2126,9 +2118,9 @@ msgid "Host-Uniq tag content" msgstr "Host-Uniq 标签内容" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2183,7 +2175,7 @@ msgstr "IPv4" msgid "IPv4 Firewall" msgstr "IPv4 防火墙" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "IPv4 上游" @@ -2207,7 +2199,7 @@ msgstr "IPv4 网关" msgid "IPv4 netmask" msgstr "IPv4 子网掩码" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "地址/网络掩码表示法中的 IPv4 网络" @@ -2252,11 +2244,11 @@ msgstr "IPv6 网上邻居" msgid "IPv6 Settings" msgstr "IPv6 设置" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "IPv6 ULA 前缀" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "IPv6 上游" @@ -2278,7 +2270,7 @@ msgstr "IPv6 分配长度" msgid "IPv6 gateway" msgstr "IPv6 网关" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "地址/网络掩码表示法中的 IPv6 网络" @@ -2431,7 +2423,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "活动超时" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "入站:" @@ -2451,10 +2443,6 @@ msgstr "启动脚本" msgid "Initscripts" msgstr "启动脚本" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "安装" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "安装 iputils-traceroute6 以进行 IPv6 路由追踪" @@ -2467,17 +2455,13 @@ msgstr "安装软件包 %q" msgid "Install protocol extensions..." msgstr "安装扩展协议…" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "已安装软件包" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "接口" @@ -2551,7 +2535,7 @@ msgstr "您尝试刷写的固件与本路由器不兼容,请重新验证固件 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "需要 JavaScript!" @@ -2576,7 +2560,7 @@ msgstr "保留配置" msgid "Kernel Log" msgstr "内核日志" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "内核版本" @@ -2622,7 +2606,7 @@ msgstr "LCP 响应故障阈值" msgid "LCP echo interval" msgstr "LCP 响应间隔" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC" @@ -2639,7 +2623,7 @@ msgstr "语言" msgid "Language and Style" msgstr "语言和界面" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "延迟" @@ -2647,7 +2631,7 @@ msgstr "延迟" msgid "Leaf" msgstr "叶节点" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "租期" @@ -2690,19 +2674,19 @@ msgstr "仅在网卡所属的子网中提供 DNS 服务。" msgid "Limit listening to these interfaces, and loopback." msgstr "仅监听这些接口和环回接口。" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "线路衰减(LATN)" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "线路模式" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "线路状态" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "线路运行时间" @@ -2762,7 +2746,7 @@ msgstr "监听接口" msgid "Listen Port" msgstr "监听端口" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "仅监听指定的接口,未指定则监听全部" @@ -2776,7 +2760,7 @@ msgstr "入站 DNS 查询端口" msgid "Load" msgstr "负载" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "平均负载" @@ -2786,6 +2770,10 @@ msgstr "平均负载" msgid "Loading" msgstr "加载中" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "正在加载 SSH 密钥……" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "本地 IP 地址无效" @@ -2815,7 +2803,7 @@ msgstr "仅本地服务" msgid "Local Startup" msgstr "本地启动脚本" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "本地时间" @@ -2868,11 +2856,11 @@ msgstr "日志" msgid "Login" msgstr "登录" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "退出" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "信号丢失秒数(LOSS)" @@ -2887,9 +2875,9 @@ msgid "MAC" msgstr "MAC" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC 地址" @@ -2925,7 +2913,7 @@ msgstr "MB/s" msgid "MD5" msgstr "MD5" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "MHz" @@ -2951,7 +2939,7 @@ msgstr "确保使用以下命令来复制根文件系统:" msgid "Manual" msgstr "手动" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "最大可达数据速率(ATTNDR)" @@ -2988,16 +2976,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "最大地址分配数量。" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "内存" @@ -3040,11 +3028,11 @@ msgstr "移动域" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "模式" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "主机型号" @@ -3083,7 +3071,7 @@ msgstr "挂载项目" msgid "Mount Point" msgstr "挂载点" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3107,7 +3095,7 @@ msgstr "配置存储设备挂载到文件系统中的位置和参数" msgid "Mount filesystems not specifically configured" msgstr "自动挂载未专门配置挂载点的分区" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "挂载选项" @@ -3178,15 +3166,15 @@ msgstr "新网络的名称" msgid "Navigation" msgstr "导航" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "子网掩码" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3212,6 +3200,10 @@ msgstr "无接口的网络。" msgid "Next »" msgstr "前进 »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "无" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "本接口未配置 DHCP 服务器" @@ -3224,9 +3216,9 @@ msgstr "无 NAT-T" msgid "No files found" msgstr "未找到文件" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "无可用信息" @@ -3246,18 +3238,18 @@ msgstr "本设备未配置网络" msgid "No network name specified" msgstr "未指定网络名" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "无可用软件列表" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "未设置密码!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "当前还没有公钥。" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "本链没有规则" @@ -3270,23 +3262,23 @@ msgstr "还没有可用的扫描结果…" msgid "No zone assigned" msgstr "未指定区域" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "噪声" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "噪声容限(SNR)" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "噪声:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "非抢占 CRC 错误(CRC_P)" @@ -3312,8 +3304,8 @@ msgstr "未找到" msgid "Not associated" msgstr "未关联" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "未连接" @@ -3337,14 +3329,6 @@ msgstr "缓存的 DNS 条目数量(最大 10000,0 表示不缓存)" msgid "Number of parallel threads used for compression" msgstr "用于压缩的并行线程数" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "确认" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "OPKG 配置" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "混淆组密码" @@ -3383,7 +3367,7 @@ msgstr "" msgid "On-State Delay" msgstr "通电时间" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "请指定主机名或MAC地址!" @@ -3489,7 +3473,7 @@ msgstr "可选,用于传出和传入数据包的 UDP 端口。" msgid "Options" msgstr "选项" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "其余:" @@ -3497,7 +3481,7 @@ msgstr "其余:" msgid "Out" msgstr "出口" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "出站:" @@ -3632,7 +3616,7 @@ msgstr "PSID 偏移" msgid "PSID-bits length" msgstr "PSID-位长" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "PTM/EFM(分组传输模式)" @@ -3640,15 +3624,6 @@ msgstr "PTM/EFM(分组传输模式)" msgid "Package libiwinfo required!" msgstr "需要 libiwinfo 软件包!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "软件包列表已超过 24 小时未更新" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "软件包名称" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "数据包" @@ -3659,13 +3634,13 @@ msgstr "区域 %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "密码" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "密码验证" @@ -3677,14 +3652,14 @@ msgstr "私有密钥" msgid "Password of inner Private Key" msgstr "内部私钥的密码" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "密码更改成功!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "密码 2" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "粘贴或拖动 SSH 密钥文件……" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "CA 证书路径" @@ -3709,17 +3684,17 @@ msgstr "内部客户端证书的路径" msgid "Path to inner Private Key" msgstr "内部私钥的路径" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "峰值:" @@ -3751,7 +3726,7 @@ msgstr "执行重置" msgid "Persistent Keep Alive" msgstr "持续 Keep-Alive" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "物理速率:" @@ -3779,16 +3754,11 @@ msgstr "数据包" msgid "Please enter your username and password." msgstr "请输入用户名和密码。" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "请先更新软件包列表" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "策略" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "端口" @@ -3796,11 +3766,11 @@ msgstr "端口" msgid "Port status:" msgstr "端口状态:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "电源管理模式" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "抢占式 CRC 错误(CRCP_P)" @@ -3812,7 +3782,7 @@ msgstr "首选 LTE" msgid "Prefer UMTS" msgstr "首选 UMTS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "分发前缀" @@ -3831,7 +3801,7 @@ msgid "" "ignore failures" msgstr "在指定数量的 LCP 响应故障后假定链路已断开,0 为忽略故障" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "不监听这些接口。" @@ -3853,7 +3823,7 @@ msgstr "执行" msgid "Processes" msgstr "系统进程" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "配置文件" @@ -3863,9 +3833,9 @@ msgstr "协议" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "协议" @@ -3893,6 +3863,16 @@ msgstr "伪装 Ad-Hoc(ahdemo)" msgid "Public Key" msgstr "公钥" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" +"与使用普通密码相比,公钥允许无密码 SSH 登录具有更高的安全性。要将新密钥上传到" +"设备,请粘贴 OpenSSH 兼容的公钥行或将 <code>.pub</code> 文件拖到输入字段中。" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "分配到此设备的公共前缀,用以分发到客户端。" @@ -3902,7 +3882,7 @@ msgid "QMI Cellular" msgstr "QMI 蜂窝" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "质量" @@ -3936,7 +3916,7 @@ msgstr "RTS/CTS 阈值" msgid "RX" msgstr "接收" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "接收速率" @@ -3999,7 +3979,7 @@ msgstr "确定要放弃所有更改?" msgid "Really switch protocol?" msgstr "确定要切换协议?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "实时连接" @@ -4007,15 +3987,15 @@ msgstr "实时连接" msgid "Realtime Graphs" msgstr "实时信息" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "实时负载" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "实时流量" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "实时无线" @@ -4027,7 +4007,7 @@ msgstr "重关联截止时间" msgid "Rebind protection" msgstr "重绑定保护" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "重启" @@ -4089,7 +4069,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "远程 IPv4 地址或 FQDN" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "移除" @@ -4157,7 +4136,6 @@ msgstr "需要上级支持 DNSSEC,验证未签名的响应确实是来自未� #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "复位" @@ -4200,6 +4178,8 @@ msgid "Restore backup" msgstr "恢复配置" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "显示/隐藏 密码" @@ -4209,15 +4189,15 @@ msgstr "显示/隐藏 密码" msgid "Revert" msgstr "恢复" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "恢复更改" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "恢复请求失败,状态 <code>%h</code>" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "正在恢复配置…" @@ -4246,7 +4226,8 @@ msgstr "路由类型" msgid "Router Advertisement-Service" msgstr "路由通告服务" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "主机密码" @@ -4266,11 +4247,11 @@ msgstr "路由表描述了数据包的可达路径。" msgid "Rule" msgstr "规则" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "挂载设备前运行文件系统检查" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "文件系统检查" @@ -4278,11 +4259,12 @@ msgstr "文件系统检查" msgid "SHA256" msgstr "SHA256" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "SNR" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH 访问" @@ -4298,7 +4280,8 @@ msgstr "SSH 服务器端口" msgid "SSH username" msgstr "SSH 用户名" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "SSH 密钥" @@ -4307,7 +4290,7 @@ msgstr "SSH 密钥" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "SSID" @@ -4318,6 +4301,7 @@ msgstr "交换分区" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "保存" @@ -4334,6 +4318,10 @@ msgstr "保存 mtdblock" msgid "Save mtdblock contents" msgstr "保存 mtdblock 内容" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "正在保存密钥……" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "扫描" @@ -4342,7 +4330,7 @@ msgstr "扫描" msgid "Scan request failed" msgstr "扫描请求失败" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "计划任务" @@ -4355,7 +4343,7 @@ msgstr "添加的节点" msgid "Section removed" msgstr "移除的节点" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "详参“mount”联机帮助" @@ -4400,6 +4388,14 @@ msgstr "服务类型" msgid "Services" msgstr "服务" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "会话已过期" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "将 VPN 设置为默认路由" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4424,11 +4420,11 @@ msgstr "设置操作模式失败" msgid "Setup DHCP Server" msgstr "配置 DHCP 服务器" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "严重误码秒(SES)" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "Short GI" @@ -4448,22 +4444,22 @@ msgstr "显示空链" msgid "Shutdown this interface" msgstr "关闭此接口" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "信号" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "信号衰减(SATN)" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "信号:" @@ -4471,10 +4467,6 @@ msgstr "信号:" msgid "Size" msgstr "大小" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "大小(.ipk)" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "DNS 查询缓存的大小" @@ -4502,12 +4494,7 @@ msgstr "跳转到导航" msgid "Slot time" msgstr "时隙" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "软件包" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "软件 VLAN" @@ -4532,7 +4519,7 @@ msgstr "" "抱歉,您的设备暂不支持 sysupgrade 升级,需手动更新固件。请参考 Wiki 中关于此" "设备的固件更新说明。" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4542,7 +4529,7 @@ msgstr "源地址" msgid "Specifies the directory the device is attached to" msgstr "指定设备的挂载目录" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "指定此 <em>Dropbear</em> 实例的监听端口" @@ -4588,7 +4575,7 @@ msgstr "开始" msgid "Start priority" msgstr "启动优先级" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "开始应用配置…" @@ -4596,7 +4583,7 @@ msgstr "开始应用配置…" msgid "Starting wireless scan..." msgstr "正在启动无线扫描…" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "启动项" @@ -4608,7 +4595,7 @@ msgstr "静态 IPv4 路由" msgid "Static IPv6 Routes" msgstr "静态 IPv6 路由" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "静态地址分配" @@ -4616,11 +4603,11 @@ msgstr "静态地址分配" msgid "Static Routes" msgstr "静态路由" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "静态地址" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4636,8 +4623,7 @@ msgstr "非活动站点限制" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "状态" @@ -4662,7 +4648,7 @@ msgstr "不记录日志" msgid "Suppress logging of the routine operation of these protocols" msgstr "不记录这些协议的常规操作日志。" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "Swap" @@ -4692,7 +4678,7 @@ msgstr "交换机 %q 具有未知的拓扑结构,VLAN 设置可能不正确。 msgid "Switch Port Mask" msgstr "交换机端口掩码" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "交换机 VLAN" @@ -4710,7 +4696,7 @@ msgid "Synchronizing..." msgstr "正在同步…" #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4730,7 +4716,7 @@ msgstr "系统属性" msgid "System log buffer size" msgstr "系统日志缓冲区大小" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4748,7 +4734,7 @@ msgstr "TFTP 服务器根目录" msgid "TX" msgstr "发送" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "发送速率" @@ -4826,7 +4812,7 @@ msgstr "备份存档似乎不是有效的 gzip 文件。" msgid "The configuration file could not be loaded due to the following error:" msgstr "由于以下错误,配置文件无法被加载:" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4872,6 +4858,16 @@ msgstr "以下更改已恢复" msgid "The following rules are currently active on this system." msgstr "以下规则当前在系统中处于活动状态。" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "已添加给定的 SSH 公钥。" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "给定的 SSH 公钥无效。请提供适当的公共 RSA 或 ECDSA 密钥。" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "给定的网络名重复" @@ -4921,13 +4917,13 @@ msgstr "所选的协议需要分配设备" msgid "The submitted security token is invalid or already expired!" msgstr "提交的安全令牌无效或已过期!" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "系统正在擦除配置分区,完成后会自动重启。" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " "few minutes before you try to reconnect. It might be necessary to renew the " @@ -4937,18 +4933,26 @@ msgstr "" "正在刷写系统…<br />切勿关闭电源! DO NOT POWER OFF THE DEVICE!<br />等待数分" "钟后即可尝试重新连接到路由。您可能需要更改计算机的 IP 地址以重新连接。" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "系统密码已更改成功。" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." msgstr "不支持所上传的映像文件格式,请选择适合当前平台的通用映像文件。" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "主题" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "没有已分配的租约。" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "没有待应用的更改。" @@ -4970,7 +4974,7 @@ msgstr "尚未分配设备,请在“物理设置”选项卡中选择网络设 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5049,7 +5053,7 @@ msgid "" "their status." msgstr "系统中正在运行的进程概况和它们的状态信息。" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "活跃的网络连接概况。" @@ -5075,6 +5079,10 @@ msgstr "重新加密 GTK 的时间间隔" msgid "Timezone" msgstr "时区" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "登录……" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5084,12 +5092,12 @@ msgstr "" "上传备份存档以恢复配置。要将固件恢复到初始状态,请单击“执行重置”(仅 " "squashfs 格式的固件有效)。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "Tone" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "可用数" @@ -5104,7 +5112,7 @@ msgstr "Traceroute" msgid "Traffic" msgstr "流量" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "传输" @@ -5139,7 +5147,7 @@ msgstr "触发模式" msgid "Tunnel ID" msgstr "隧道 ID" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "隧道接口" @@ -5154,12 +5162,12 @@ msgid "Tx-Power" msgstr "传输功率" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "类型" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5213,36 +5221,36 @@ msgstr "无法解析 AFTR 主机名" msgid "Unable to resolve peer host name" msgstr "无法解析 Pear 主机名" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "不可用秒数(UAS)" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "未知" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "未知错误,密码未更改!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "未知错误(%s)" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "不配置协议" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "卸载分区" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "未命名的密钥" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "未保存的配置" @@ -5262,10 +5270,6 @@ msgstr "不支持的协议类型" msgid "Up" msgstr "上移" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "刷新列表" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5285,7 +5289,7 @@ msgstr "上传的文件" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "运行时间" @@ -5401,7 +5405,7 @@ msgstr "使用网关跃点" msgid "Use routing table" msgstr "使用路由表" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5443,11 +5447,11 @@ msgstr "用户密钥(PEM)" msgid "Username" msgstr "用户名" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "VDSL" @@ -5497,11 +5501,6 @@ msgstr "请求 DHCP 时发送的 Vendor Class 选项" msgid "Verify" msgstr "验证" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "版本" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "虚拟动态接口" @@ -5552,7 +5551,7 @@ msgstr "正在应用更改…" msgid "Waiting for command to complete..." msgstr "等待命令执行完成…" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "等待应用配置… %d 秒" @@ -5585,16 +5584,16 @@ msgstr "WireGuard VPN" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "无线" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "无线适配器" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "无线网络" @@ -5609,13 +5608,13 @@ msgstr "无线安全" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "无线未开启" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "无线未关联" @@ -5639,6 +5638,10 @@ msgstr "将收到的 DNS 请求写入系统日志" msgid "Write system log to file" msgstr "将系统日志写入文件" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "是" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5652,7 +5655,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "必须开启浏览器的 JavaScript 支持,否则 LuCI 无法正常工作。" @@ -5686,9 +5689,9 @@ msgstr "ZRam 大小" msgid "any" msgstr "任意" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5705,7 +5708,7 @@ msgstr "自动" msgid "baseT" msgstr "baseT" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "桥接的" @@ -5724,24 +5727,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "为指定接口创建桥接" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "dB" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "dBm" @@ -5783,7 +5786,7 @@ msgstr "全双工" msgid "half-duplex" msgstr "半双工" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "十六进制编码值" @@ -5805,44 +5808,44 @@ msgstr "如果对象是一个网络" msgid "input" msgstr "输入" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "kB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "kB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "kbit/s" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "密钥在 8 到 63 个字符之间" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "密钥为 5 或 13 个字符" @@ -5868,19 +5871,10 @@ msgstr "否" msgid "no link" msgstr "未连接" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "非空值" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "无" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5892,7 +5886,7 @@ msgstr "不存在" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "关" @@ -5900,11 +5894,11 @@ msgstr "关" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "开" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5924,11 +5918,11 @@ msgstr "输出" msgid "overlay" msgstr "覆盖" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "正十进制值" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "正整数值" @@ -5942,7 +5936,7 @@ msgstr "随机" msgid "relay mode" msgstr "中继模式" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "已路由" @@ -5976,7 +5970,7 @@ msgstr "已标记" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "时间单位(TUs / 1.024ms)[1000-65535]" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "唯一值" @@ -6003,159 +5997,159 @@ msgstr "不指定或新建:" msgid "untagged" msgstr "未标记" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "有效 IP 地址" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "有效 IP 地址或前缀" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "有效 IPv4 CIDR" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "有效 IPv4 地址" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "有效 IPv4 地址或网络" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "有效 IPv4 address:port" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "有效 IPv4 网络" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "有效 IPv4 或 IPv6 CIDR" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "有效 IPv4 前缀值(0-32)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "有效 IPv6 CIDR" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "有效 IPv6 地址" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "有效 IPv6 地址或前缀" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "有效 IPv6 主机 ID" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "有效 IPv6 网络" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "有效 IPv6 前缀值(0-128)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "有效 MAC 地址" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "有效 UCI 识别" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "有效 UCI 标识符,主机名或 IP 地址" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "有效 address:port" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "有效日期(YYYY-MM-DD)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "有效十进制值" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "有效十六进制 WEP 密钥" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "有效十六进制 WPA 密钥" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "有效 host:port" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "有效主机名" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "有效主机名或 IP 地址" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "有效整数值" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "地址/网络掩码表示法中的有效网络" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "有效电话号码(0-9、“*”、“#”、“!”或“.”)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "有效端口或端口范围(port1-port2)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "有效端口值" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "有效时间(HH:MM:SS)" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "%d 和 %d 字符之间的值" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "%f 和 %f 之间的值" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "值大于或等于 %f" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "值小于或等于 %f" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "值至少为 %d 个字符" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "值至多为 %d 个字符" @@ -6169,6 +6163,99 @@ msgstr "是" msgid "« Back" msgstr "« 后退" +#~ msgid "" +#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " +#~ "authentication." +#~ msgstr "请在此处粘贴 SSH 公钥,每行一个,用于 SSH 公钥认证。" + +#~ msgid "Password successfully changed!" +#~ msgstr "密码更改成功!" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "未知错误,密码未更改!" + +#~ msgid "Design" +#~ msgstr "主题" + +#~ msgid "Available packages" +#~ msgstr "可用软件包" + +#~ msgid "Bind only to specific interfaces rather than wildcard address." +#~ msgstr "仅绑定到特定接口,而不是全部地址。" + +#~ msgid "" +#~ "Build/distribution specific feed definitions. This file will NOT be " +#~ "preserved in any sysupgrade." +#~ msgstr "由固件指定的软件源。此处的设置在任何系统升级中都不会被保留。" + +#~ msgid "" +#~ "Custom feed definitions, e.g. private feeds. This file can be preserved " +#~ "in a sysupgrade." +#~ msgstr "自定义软件源地址,例如:私有的软件源。此文件在系统升级时将被保留。" + +#~ msgid "Custom feeds" +#~ msgstr "自定义软件源" + +#~ msgid "Displaying only packages containing" +#~ msgstr "只显示有内容的软件包" + +#~ msgid "Distribution feeds" +#~ msgstr "发行版软件源" + +#~ msgid "Download and install package" +#~ msgstr "下载并安装软件包" + +#~ msgid "Filter" +#~ msgstr "过滤器" + +#~ msgid "Find package" +#~ msgstr "查找软件包" + +#~ msgid "Free space" +#~ msgstr "空闲空间" + +#~ msgid "General options for opkg" +#~ msgstr "OPKG 基础配置" + +#~ msgid "Install" +#~ msgstr "安装" + +#~ msgid "Installed packages" +#~ msgstr "已安装软件包" + +#~ msgid "No package lists available" +#~ msgstr "无可用软件列表" + +#~ msgid "OK" +#~ msgstr "确认" + +#~ msgid "OPKG-Configuration" +#~ msgstr "OPKG 配置" + +#~ msgid "Package lists are older than 24 hours" +#~ msgstr "软件包列表已超过 24 小时未更新" + +#~ msgid "Package name" +#~ msgstr "软件包名称" + +#~ msgid "Please update package lists first" +#~ msgstr "请先更新软件包列表" + +#~ msgid "Size (.ipk)" +#~ msgstr "大小(.ipk)" + +#~ msgid "Software" +#~ msgstr "软件包" + +#~ msgid "Update lists" +#~ msgstr "刷新列表" + +#~ msgid "Version" +#~ msgstr "版本" + +#~ msgid "none" +#~ msgstr "无" + #~ msgid "Disable DNS setup" #~ msgstr "停用 DNS 设定" diff --git a/modules/luci-base/po/zh-tw/base.po b/modules/luci-base/po/zh-tw/base.po index 32f7464e2c..3e1a52afa1 100644 --- a/modules/luci-base/po/zh-tw/base.po +++ b/modules/luci-base/po/zh-tw/base.po @@ -11,10 +11,14 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.6\n" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:192 msgid "%.1f dB" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:118 +msgid "%d Bit" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:256 msgid "%s is untagged in multiple VLANs!" msgstr "" @@ -47,16 +51,16 @@ msgstr "(未連接界面)" msgid "-- Additional Field --" msgstr "-- 更多選項 --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:809 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:816 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:842 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:851 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- 請選擇 --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:832 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:991 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:867 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1027 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- 自訂 --" @@ -80,11 +84,11 @@ msgstr "" msgid "-- please select --" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:254 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1分鐘負載" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 msgid "15 Minute Load:" msgstr "15分鐘負載" @@ -96,7 +100,7 @@ msgstr "" msgid "464XLAT (CLAT)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 msgid "5 Minute Load:" msgstr "5分鐘負載" @@ -150,7 +154,7 @@ msgstr "將會按照指定的順序查詢<abbr title=\"Domain Name System\">DNS< msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:308 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address" msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-位置" @@ -176,11 +180,11 @@ msgstr "" msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-閘道" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:327 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:31 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 設定" @@ -189,12 +193,12 @@ msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 設定" msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 名稱" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:299 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address" msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-位置" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:314 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>" msgstr "" @@ -224,19 +228,23 @@ msgid "" "was empty before editing." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:177 +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 +msgid "A new login is required since the authentication session expired." +msgstr "" + +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 msgid "A43C + J43 + A43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:174 msgid "A43C + J43 + A43 + V43" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:190 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 msgid "ADSL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 msgid "ANSI T1.413" msgstr "" @@ -250,25 +258,25 @@ msgstr "APN" msgid "ARP retry threshold" msgstr "ARP重試門檻" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:207 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:203 msgid "ATM Bridges" msgstr "ATM橋接" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:237 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "ATM虛擬通道識別(VCI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:242 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 msgid "ATM Virtual Path Identifier (VPI)" msgstr "ATM虛擬路徑識別(VPI)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:208 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:204 msgid "" "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " "Linux network interfaces which can be used in conjunction with DHCP or PPP " @@ -277,12 +285,12 @@ msgstr "" "ATM橋接是以AAL5協定封裝乙太網路如同虛擬Linux網路界面卡,用於連接DHCP或PPP來撥" "號連接到網際網路。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 msgid "ATM device number" msgstr "ATM裝置號碼" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:277 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 msgid "ATU-C System Vendor ID" msgstr "" @@ -297,8 +305,6 @@ msgstr "存取點 (AP)" #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:53 msgid "Actions" msgstr "動作" @@ -310,8 +316,8 @@ msgstr "啟用 <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-路由" msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes" msgstr "啟用 <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-路由" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:317 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:439 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 msgid "Active Connections" msgstr "啟用連線" @@ -338,6 +344,13 @@ msgstr "Ad-Hoc" msgid "Add" msgstr "增加" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:152 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:158 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:239 +msgid "Add key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 msgid "Add local domain suffix to names served from hosts files" msgstr "添加本地網域微碼到HOSTS檔案" @@ -354,8 +367,8 @@ msgstr "額外的HOST檔案" msgid "Additional servers file" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:206 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 msgid "Address" msgstr "位置" @@ -371,7 +384,7 @@ msgstr "管理" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:235 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 @@ -379,7 +392,7 @@ msgstr "管理" msgid "Advanced Settings" msgstr "進階設定" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 msgid "Aggregate Transmit Power(ACTATP)" msgstr "" @@ -387,7 +400,7 @@ msgstr "" msgid "Alert" msgstr "警示" -#: modules/luci-base/luasrc/model/network.lua:1398 +#: modules/luci-base/luasrc/model/network.lua:1406 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:97 msgid "Alias Interface" msgstr "" @@ -410,7 +423,7 @@ msgstr "" msgid "Allocate IP sequentially" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:72 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "允許 <abbr title=\"Secure Shell\">SSH</abbr> 密碼驗證" @@ -436,15 +449,15 @@ msgstr "僅允許列表內" msgid "Allow localhost" msgstr "允許本機" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:89 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 msgid "Allow remote hosts to connect to local SSH forwarded ports" msgstr "允許遠端主機連接到本機SSH轉送通訊埠" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:80 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 msgid "Allow root logins with password" msgstr "允許root登入" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:81 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 msgid "Allow the <em>root</em> user to login with password" msgstr "允許 <em>root</em> 使用者登入" @@ -467,64 +480,64 @@ msgid "" "option does not comply with IEEE 802.11n-2009!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:154 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:256 msgid "Annex" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 msgid "Annex A + L + M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 msgid "Annex A G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 msgid "Annex A G.992.2" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 msgid "Annex A G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:170 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:166 msgid "Annex A G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:156 msgid "Annex B (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:163 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:159 msgid "Annex B G.992.1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:164 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:160 msgid "Annex B G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:165 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 msgid "Annex B G.992.5" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:161 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:157 msgid "Annex J (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:167 msgid "Annex L G.992.3 POTS 1" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:162 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:158 msgid "Annex M (all)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:168 msgid "Annex M G.992.3" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:173 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:169 msgid "Annex M G.992.5" msgstr "" @@ -570,15 +583,15 @@ msgstr "天線設定" msgid "Any zone" msgstr "任意區域" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:100 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 msgid "Apply anyway" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:199 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 msgid "Apply request failed with status <code>%h</code>" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:398 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:384 msgid "Architecture" msgstr "" @@ -599,11 +612,11 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:218 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:469 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:455 msgid "Associated Stations" msgstr "已連接站點" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:320 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 msgid "Associations" msgstr "" @@ -634,8 +647,8 @@ msgstr "需要授權" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:248 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:251 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 msgid "Auto Refresh" msgstr "自動更新" @@ -678,29 +691,25 @@ msgstr "" msgid "Available" msgstr "可用" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:126 -msgid "Available packages" -msgstr "可用軟體包" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:328 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:257 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:267 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:335 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:345 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:326 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 msgid "Average:" msgstr "平均:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 msgid "B43 + B43C" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 msgid "B43 + B43C + V43" msgstr "" @@ -711,7 +720,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:199 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:91 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:40 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:314 msgid "BSSID" msgstr "BSSID" @@ -741,7 +750,7 @@ msgstr "返回至掃描結果" msgid "Backup" msgstr "備份" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:34 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:37 msgid "Backup / Flash Firmware" msgstr "備份/升級韌體" @@ -771,12 +780,14 @@ msgstr "" "下面是待備份的檔案清單。包含了更改的設定檔案、必要的基本檔案和使用者自訂的備" "份檔案" -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 +msgid "" +"Bind dynamically to interfaces rather than wildcard address (recommended as " +"linux default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "Bind only to specific interfaces rather than wildcard address." +#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 +msgid "Bind interface" msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 @@ -785,7 +796,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 msgid "Bitrate" msgstr "傳輸速率" @@ -793,7 +804,7 @@ msgstr "傳輸速率" msgid "Bogus NX Domain Override" msgstr "忽略NX網域解析" -#: modules/luci-base/luasrc/model/network.lua:1402 +#: modules/luci-base/luasrc/model/network.lua:1410 msgid "Bridge" msgstr "橋接" @@ -801,7 +812,7 @@ msgstr "橋接" msgid "Bridge interfaces" msgstr "橋接介面" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:248 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 msgid "Bridge unit number" msgstr "橋接單位號碼" @@ -817,16 +828,10 @@ msgstr "Broadcom 802.11%s 無線控制器" msgid "Broadcom BCM%04x 802.11 Wireless Controller" msgstr "Broadcom BCM%04x 802.11 無線控制器" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:416 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:402 msgid "Buffered" msgstr "已緩衝" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:29 -msgid "" -"Build/distribution specific feed definitions. This file will NOT be " -"preserved in any sysupgrade." -msgstr "" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 msgid "CA certificate; if empty it will be saved after the first connection." msgstr "" @@ -841,6 +846,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/delegator.htm:14 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:185 #: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 msgid "Cancel" msgstr "取消" @@ -863,6 +869,12 @@ msgstr "" msgid "Chain" msgstr "鏈" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:12 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:28 +msgid "Change login password" +msgstr "" + #: modules/luci-base/luasrc/controller/admin/uci.lua:12 #: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 msgid "Changes" @@ -872,20 +884,24 @@ msgstr "待修改" msgid "Changes applied." msgstr "修改已套用" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:212 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 msgid "Changes have been reverted." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:8 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:44 msgid "Changes the administrator password for accessing the device" msgstr "修改管理員密碼" +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:13 +msgid "Changing password…" +msgstr "" + #: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:157 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:172 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:197 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "Channel" msgstr "頻道" @@ -964,6 +980,11 @@ msgstr "用戶端" msgid "Client ID to send when requesting DHCP" msgstr "當要求DHCP時要傳送的用戶識別碼ID" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:154 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:160 +msgid "Close" +msgstr "" + #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 @@ -981,16 +1002,16 @@ msgstr "關閉清單中..." #: modules/luci-base/luasrc/view/lease_status.htm:77 #: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:80 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:42 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:62 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:207 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:369 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:435 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:454 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:464 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:421 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:440 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:450 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:317 #: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:33 msgid "Collecting data..." @@ -1021,8 +1042,6 @@ msgstr "" #: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 #: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -#: modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:54 msgid "Configuration" msgstr "設定" @@ -1034,15 +1053,15 @@ msgstr "" msgid "Configuration files will be kept" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:136 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 msgid "Configuration has been applied." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:95 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 msgid "Configuration has been rolled back!" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:18 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:57 msgid "Confirmation" msgstr "再確認" @@ -1051,8 +1070,8 @@ msgid "Connect" msgstr "連線" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:219 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:244 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 msgid "Connected" msgstr "已連線" @@ -1068,7 +1087,7 @@ msgstr "" msgid "Connections" msgstr "連線數" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:117 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 msgid "" "Could not regain access to the device after applying the configuration " "changes. You might need to reconnect if you modified network related " @@ -1125,16 +1144,6 @@ msgstr "自訂介面" msgid "Custom delegated IPv6-prefix" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:47 -msgid "" -"Custom feed definitions, e.g. private feeds. This file can be preserved in a " -"sysupgrade." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:46 -msgid "Custom feeds" -msgstr "" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 msgid "" "Custom files (certificates, scripts) may remain on the system. To prevent " @@ -1159,7 +1168,7 @@ msgstr "DHCP伺服器" msgid "DHCP and DNS" msgstr "DHCP 和 DNS" -#: modules/luci-base/luasrc/model/network.lua:954 +#: modules/luci-base/luasrc/model/network.lua:962 msgid "DHCP client" msgstr "DHCP用戶端" @@ -1179,16 +1188,16 @@ msgstr "" msgid "DHCPv6-Service" msgstr "" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:210 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:213 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:215 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:216 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:217 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:237 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:239 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:240 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:241 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:242 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:243 msgid "DNS" msgstr "網域名稱伺服器" @@ -1216,16 +1225,16 @@ msgstr "" msgid "DS-Lite AFTR address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:155 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:451 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:151 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:437 msgid "DSL" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:251 msgid "DSL Status" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 msgid "DSL line mode" msgstr "" @@ -1237,7 +1246,7 @@ msgstr "" msgid "DUID" msgstr "DHCP獨立式別碼DUID " -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 msgid "Data Rate" msgstr "" @@ -1251,6 +1260,10 @@ msgstr "除錯" msgid "Default %d" msgstr "預設 %d" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 +msgid "Default Route" +msgstr "" + #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 @@ -1287,6 +1300,11 @@ msgstr "" msgid "Delete" msgstr "刪除" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:187 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:181 +msgid "Delete key" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 msgid "Delete this network" msgstr "刪除這個網路" @@ -1295,16 +1313,11 @@ msgstr "刪除這個網路" msgid "Delivery Traffic Indication Message Interval" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:179 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 msgid "Description" msgstr "描述" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 -msgid "Design" -msgstr "設計規劃" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:103 msgid "Destination" msgstr "目的地" @@ -1312,8 +1325,8 @@ msgstr "目的地" #: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:12 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:233 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 @@ -1330,7 +1343,7 @@ msgstr "設定設備" msgid "Device is rebooting..." msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:116 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 msgid "Device unreachable!" msgstr "" @@ -1397,18 +1410,21 @@ msgstr "" msgid "Discard upstream RFC1918 responses" msgstr "丟棄上游RFC1918 虛擬IP網路的回應" +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 +msgid "Disconnect" +msgstr "" + #: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 msgid "Disconnection attempt failed" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:98 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:21 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:32 msgid "Dismiss" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:72 -msgid "Displaying only packages containing" -msgstr "僅顯示內含的軟體" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:237 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:331 msgid "Distance Optimization" @@ -1418,10 +1434,6 @@ msgstr "最佳化距離" msgid "Distance to farthest network member in meters." msgstr "到最遠的網路距離以米表示." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:28 -msgid "Distribution feeds" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:344 msgid "Diversity" msgstr "差異" @@ -1449,6 +1461,10 @@ msgstr "對不被公用名稱伺服器回應的請求不轉發" msgid "Do not forward reverse lookups for local networks" msgstr "對本地網域不轉發反解析鎖定" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:182 +msgid "Do you really want to delete the following SSH key?" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 msgid "Domain required" msgstr "網域必要的" @@ -1473,10 +1489,6 @@ msgstr "" msgid "Down" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:103 -msgid "Download and install package" -msgstr "下載並安裝軟體包" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 msgid "Download backup" msgstr "下載備份檔" @@ -1485,15 +1497,15 @@ msgstr "下載備份檔" msgid "Download mtdblock" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:193 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 msgid "Downstream SNR offset" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:51 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 msgid "Dropbear Instance" msgstr "Dropbear SSH例子" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:48 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" @@ -1663,8 +1675,8 @@ msgstr "" msgid "Enables the Spanning Tree Protocol on this bridge" msgstr "在橋接器上啟用802.1d Spanning Tree協定" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:183 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:243 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:239 msgid "Encapsulation mode" msgstr "封裝模式" @@ -1672,7 +1684,7 @@ msgstr "封裝模式" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:200 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:92 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:41 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:319 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 msgid "Encryption" msgstr "加密" @@ -1692,7 +1704,7 @@ msgstr "" msgid "Enter custom values" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:385 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:264 msgid "Erasing..." msgstr "刪除中..." @@ -1701,19 +1713,19 @@ msgstr "刪除中..." msgid "Error" msgstr "錯誤" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 msgid "Errored seconds (ES)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1414 +#: modules/luci-base/luasrc/model/network.lua:1422 msgid "Ethernet Adapter" msgstr "乙太網路卡" -#: modules/luci-base/luasrc/model/network.lua:1404 +#: modules/luci-base/luasrc/model/network.lua:1412 msgid "Ethernet Switch" msgstr "乙太交換器" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 msgid "Exclude interfaces" msgstr "" @@ -1721,11 +1733,11 @@ msgstr "" msgid "Expand hosts" msgstr "延伸主機" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:246 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:279 msgid "Expecting %s" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:218 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:214 msgid "Expires" msgstr "過期" @@ -1775,7 +1787,7 @@ msgstr "" msgid "FT protocol" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:90 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 msgid "Failed to confirm apply within %ds, waiting for rollback…" msgstr "" @@ -1793,10 +1805,6 @@ msgstr "開機影像檔通知給用戶端" msgid "Filesystem" msgstr "檔案系統" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:111 -msgid "Filter" -msgstr "過濾器" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 msgid "Filter private" msgstr "私人過濾器" @@ -1819,10 +1827,6 @@ msgstr "" msgid "Find and join network" msgstr "搜尋並加入網路" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:114 -msgid "Find package" -msgstr "搜尋軟體包" - #: modules/luci-base/luasrc/view/cbi/delegator.htm:9 msgid "Finish" msgstr "完成" @@ -1843,11 +1847,11 @@ msgstr "防火牆設定" msgid "Firewall Status" msgstr "防火牆狀況" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:200 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:196 msgid "Firmware File" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:399 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:385 msgid "Firmware Version" msgstr "防火牆版本" @@ -1871,7 +1875,7 @@ msgstr "更新新版韌體映像檔" msgid "Flash operations" msgstr "執行更新" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:300 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:185 msgid "Flashing..." msgstr "更新中..." @@ -1919,7 +1923,7 @@ msgstr "" msgid "Forward DHCP traffic" msgstr "轉發DHCP流量" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -1931,7 +1935,7 @@ msgstr "轉發廣播流量" msgid "Forward mesh peer traffic" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:249 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 msgid "Forwarding mode" msgstr "轉發模式" @@ -1944,15 +1948,11 @@ msgstr "分片閥值" msgid "Frame Bursting" msgstr "訊框爆速" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:415 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:426 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:401 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:412 msgid "Free" msgstr "空閒" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:90 -msgid "Free space" -msgstr "剩餘空間" - #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 msgid "" "Further information about WireGuard interfaces and peers at <a href=\"http://" @@ -1961,7 +1961,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:117 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:328 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:324 msgid "GHz" msgstr "GHz" @@ -1970,8 +1970,8 @@ msgstr "GHz" msgid "GPRS only" msgstr "僅用GPRS" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:212 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:238 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 msgid "Gateway" msgstr "匝道器" @@ -1979,7 +1979,7 @@ msgstr "匝道器" msgid "Gateway address is invalid" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 msgid "Gateway ports" msgstr "匝道器埠號" @@ -1992,16 +1992,12 @@ msgstr "一般設定" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:238 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:234 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:139 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:358 msgid "General Setup" msgstr "一般設置" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "General options for opkg" -msgstr "" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 msgid "Generate Config" msgstr "" @@ -2018,7 +2014,7 @@ msgstr "製作壓縮檔" msgid "Generic 802.11%s Wireless Controller" msgstr "通用 802.11%s 無線控制器" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:37 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 msgid "Given password confirmation did not match, password not changed!" msgstr "鍵入的密碼不吻合,密碼將不變更" @@ -2026,14 +2022,14 @@ msgstr "鍵入的密碼不吻合,密碼將不變更" msgid "Global Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:257 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:253 msgid "Global network options" msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:245 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:289 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 msgid "Go to password configuration..." msgstr "到密碼設定頁" @@ -2066,7 +2062,7 @@ msgstr "" msgid "Hang Up" msgstr "斷線" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:270 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -2076,12 +2072,6 @@ msgid "" "the timezone." msgstr "在這設置基本樣貌類似像主機名稱或者時區..等" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:97 -msgid "" -"Here you can paste public SSH-Keys (one per line) for SSH public-key " -"authentication." -msgstr "在這裡貼上公用SSH-Keys (每行一個)以便驗證" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:487 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 @@ -2094,7 +2084,7 @@ msgid "Hide empty chains" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:86 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:75 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 msgid "Host" msgstr "" @@ -2115,9 +2105,9 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:285 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:396 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:382 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" @@ -2172,7 +2162,7 @@ msgstr "IPv4版" msgid "IPv4 Firewall" msgstr "IPv4防火牆" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:203 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:199 msgid "IPv4 Upstream" msgstr "" @@ -2196,7 +2186,7 @@ msgstr "IPv4匝道器" msgid "IPv4 netmask" msgstr "IPv4網路遮罩" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:323 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 msgid "IPv4 network in address/netmask notation" msgstr "" @@ -2241,11 +2231,11 @@ msgstr "" msgid "IPv6 Settings" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:258 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:254 msgid "IPv6 ULA-Prefix" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:229 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:225 msgid "IPv6 Upstream" msgstr "" @@ -2267,7 +2257,7 @@ msgstr "" msgid "IPv6 gateway" msgstr "IPv6匝道器" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:328 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:361 msgid "IPv6 network in address/netmask notation" msgstr "" @@ -2418,7 +2408,7 @@ msgstr "" msgid "Inactivity timeout" msgstr "閒置過期" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:284 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 msgid "Inbound:" msgstr "輸入" @@ -2438,10 +2428,6 @@ msgstr "初始化腳本" msgid "Initscripts" msgstr "初始化腳本" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:193 -msgid "Install" -msgstr "安裝" - #: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 msgid "Install iputils-traceroute6 for IPv6 traceroute" msgstr "" @@ -2454,17 +2440,13 @@ msgstr "安裝軟體包 %q" msgid "Install protocol extensions..." msgstr "安裝延伸協定中..." -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:127 -msgid "Installed packages" -msgstr "安裝軟體包" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:56 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 msgid "Interface" msgstr "介面" @@ -2539,7 +2521,7 @@ msgstr "它顯示您正嘗試更新不適用於這個flash記憶體的映像檔, #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:252 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:296 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 msgid "JavaScript required!" msgstr "需要Java腳本" @@ -2564,7 +2546,7 @@ msgstr "保持設定值" msgid "Kernel Log" msgstr "核心日誌" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:403 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:389 msgid "Kernel Version" msgstr "核心版本" @@ -2610,7 +2592,7 @@ msgstr "LCP協定呼叫失敗次數門檻" msgid "LCP echo interval" msgstr "LCP協定呼叫間隔" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:244 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:240 msgid "LLC" msgstr "LLC邏輯鏈結控制層" @@ -2627,7 +2609,7 @@ msgstr "語言" msgid "Language and Style" msgstr "語言和風格" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:264 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:260 msgid "Latency" msgstr "" @@ -2635,7 +2617,7 @@ msgstr "" msgid "Leaf" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:311 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 msgid "Lease time" msgstr "" @@ -2678,19 +2660,19 @@ msgstr "" msgid "Limit listening to these interfaces, and loopback." msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:265 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:254 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:253 msgid "Line State" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:255 msgid "Line Uptime" msgstr "" @@ -2742,7 +2724,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:57 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 msgid "Listen only on the given interface or, if unspecified, on all" msgstr "只許在給予的介面上聆聽, 如果未指定, 全都允許" @@ -2756,7 +2738,7 @@ msgstr "進入的DNS請求聆聽埠" msgid "Load" msgstr "掛載" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:406 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:392 msgid "Load Average" msgstr "平均掛載" @@ -2766,6 +2748,10 @@ msgstr "平均掛載" msgid "Loading" msgstr "掛載中" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:236 +msgid "Loading SSH keys…" +msgstr "" + #: modules/luci-base/luasrc/model/network.lua:30 msgid "Local IP address is invalid" msgstr "" @@ -2795,7 +2781,7 @@ msgstr "" msgid "Local Startup" msgstr "本地啟動" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:404 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 msgid "Local Time" msgstr "本地時區" @@ -2849,11 +2835,11 @@ msgstr "日誌紀錄中" msgid "Login" msgstr "登入" -#: modules/luci-base/luasrc/controller/admin/index.lua:89 +#: modules/luci-base/luasrc/controller/admin/index.lua:92 msgid "Logout" msgstr "登出" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:268 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -2868,9 +2854,9 @@ msgid "MAC" msgstr "" #: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:208 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:234 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:204 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:230 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 msgid "MAC-Address" msgstr "MAC-位址" @@ -2906,7 +2892,7 @@ msgstr "MB/s" msgid "MD5" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 msgid "MHz" msgstr "MHz" @@ -2932,7 +2918,7 @@ msgstr "" msgid "Manual" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:259 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" @@ -2967,16 +2953,16 @@ msgstr "" msgid "Maximum number of leased addresses." msgstr "釋放出的位址群最大數量" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:4 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:118 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:46 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:286 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 msgid "Mbit/s" msgstr "Mbit/s" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 msgid "Memory" msgstr "記憶體" @@ -3019,11 +3005,11 @@ msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:99 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:38 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:57 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:313 msgid "Mode" msgstr "模式" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:397 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:383 msgid "Model" msgstr "" @@ -3062,7 +3048,7 @@ msgstr "掛載項目" msgid "Mount Point" msgstr "掛載點" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:27 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 msgid "Mount Points" @@ -3086,7 +3072,7 @@ msgstr "掛載各點定義所指定到記憶體設備將會被附載到檔案系 msgid "Mount filesystems not specifically configured" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:140 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 msgid "Mount options" msgstr "掛載選項" @@ -3157,15 +3143,15 @@ msgstr "新網路的名稱" msgid "Navigation" msgstr "導覽" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:211 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:207 msgid "Netmask" msgstr "網路遮罩" #: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:73 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:432 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:418 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 msgid "Network" @@ -3191,6 +3177,10 @@ msgstr "尚無任何介面的網路." msgid "Next »" msgstr "下一個 »" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 +msgid "No" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 msgid "No DHCP Server configured for this interface" msgstr "在這個介面尚無DHCP伺服器" @@ -3203,9 +3193,9 @@ msgstr "" msgid "No files found" msgstr "尚未發現任何檔案" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:65 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:174 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:333 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:329 msgid "No information available" msgstr "尚無可運用資訊" @@ -3225,18 +3215,18 @@ msgstr "尚無網路設定在這個介面上" msgid "No network name specified" msgstr "尚未指定網路名稱" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:83 -msgid "No package lists available" -msgstr "尚無列出的軟體包可運用" - #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:284 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 msgid "No password set!" msgstr "尚未設定密碼!" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:125 +msgid "No public keys present yet." +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:124 msgid "No rules in this chain." msgstr "尚無規則在這個鏈接上" @@ -3249,23 +3239,23 @@ msgstr "" msgid "No zone assigned" msgstr "尚未指定區碼" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 msgid "Noise" msgstr "噪音比" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:263 msgid "Noise Margin (SNR)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:342 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 msgid "Noise:" msgstr "噪音比:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:275 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 msgid "Non Pre-emtive CRC errors (CRC_P)" msgstr "" @@ -3291,8 +3281,8 @@ msgstr "尚未發現" msgid "Not associated" msgstr "尚未關聯" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Not connected" msgstr "尚未連線" @@ -3316,14 +3306,6 @@ msgstr "" msgid "Number of parallel threads used for compression" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:106 -msgid "OK" -msgstr "行" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua:9 -msgid "OPKG-Configuration" -msgstr "OPKG-設定值" - #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 msgid "Obfuscated Group Password" msgstr "" @@ -3362,7 +3344,7 @@ msgstr "" msgid "On-State Delay" msgstr "啟用狀態延遲" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:340 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 msgid "One of hostname or mac address must be specified!" msgstr "主機名稱或mac位址任選一個被指定" @@ -3462,7 +3444,7 @@ msgstr "" msgid "Options" msgstr "選項" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:345 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 msgid "Other:" msgstr "其它:" @@ -3470,7 +3452,7 @@ msgstr "其它:" msgid "Out" msgstr "出" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 msgid "Outbound:" msgstr "外連:" @@ -3605,7 +3587,7 @@ msgstr "" msgid "PSID-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 msgid "PTM/EFM (Packet Transfer Mode)" msgstr "" @@ -3613,15 +3595,6 @@ msgstr "" msgid "Package libiwinfo required!" msgstr "軟體包必需有libiwinfo!" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:81 -msgid "Package lists are older than 24 hours" -msgstr "軟體包列表過期24小時" - -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:135 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:176 -msgid "Package name" -msgstr "軟體包名稱" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Packets" msgstr "封包" @@ -3632,13 +3605,13 @@ msgstr "區域 %q 的部分 " #: modules/luci-base/luasrc/view/sysauth.htm:29 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1038 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:15 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:49 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 msgid "Password" msgstr "密碼" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:71 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 msgid "Password authentication" msgstr "密碼驗證" @@ -3650,14 +3623,14 @@ msgstr "私人金鑰密碼" msgid "Password of inner Private Key" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:32 -msgid "Password successfully changed!" -msgstr "密碼已變更成功!" - #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 msgid "Password2" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:238 +msgid "Paste or drag SSH key file…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 msgid "Path to CA-Certificate" msgstr "CA-證書的路徑" @@ -3682,17 +3655,17 @@ msgstr "" msgid "Path to inner Private Key" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:351 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:260 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:270 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:280 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:338 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:348 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:367 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:329 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:339 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 msgid "Peak:" msgstr "峰值:" @@ -3724,7 +3697,7 @@ msgstr "執行重置" msgid "Persistent Keep Alive" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 msgid "Phy Rate:" msgstr "傳輸率:" @@ -3752,16 +3725,11 @@ msgstr "封包數." msgid "Please enter your username and password." msgstr "請輸入您的用戶名稱和密碼" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:105 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:113 -msgid "Please update package lists first" -msgstr "" - #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:87 msgid "Policy" msgstr "策略" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:64 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "埠" @@ -3769,11 +3737,11 @@ msgstr "埠" msgid "Port status:" msgstr "埠狀態:" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:278 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:274 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:276 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:272 msgid "Pre-emtive CRC errors (CRCP_P)" msgstr "" @@ -3785,7 +3753,7 @@ msgstr "" msgid "Prefer UMTS" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:236 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:232 msgid "Prefix Delegated" msgstr "" @@ -3804,7 +3772,7 @@ msgid "" "ignore failures" msgstr "假若在給于多次的 LCP 呼叫失敗後終點將死, 使用0忽略失敗" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:265 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 msgid "Prevent listening on these interfaces." msgstr "" @@ -3826,7 +3794,7 @@ msgstr "前進" msgid "Processes" msgstr "執行緒" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:261 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:257 msgid "Profile" msgstr "" @@ -3836,9 +3804,9 @@ msgstr "協定." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:102 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:361 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:209 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:235 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:359 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:205 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:231 msgid "Protocol" msgstr "協定" @@ -3866,6 +3834,14 @@ msgstr "偽裝Ad-Hoc (ahdemo模式)" msgid "Public Key" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:231 +msgid "" +"Public keys allow for the passwordless SSH logins with a higher security " +"compared to the use of plain passwords. In order to upload a new key to the " +"device, paste an OpenSSH compatible public key line or drag a <code>.pub</" +"code> file into the input field." +msgstr "" + #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:62 msgid "Public prefix routed to this device for distribution to clients." msgstr "" @@ -3875,7 +3851,7 @@ msgid "QMI Cellular" msgstr "" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Quality" msgstr "品質" @@ -3908,7 +3884,7 @@ msgstr "RTS/CTS門檻" msgid "RX" msgstr "接收" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "RX Rate" msgstr "接收速率" @@ -3970,7 +3946,7 @@ msgstr "確定要重置回復原廠?" msgid "Really switch protocol?" msgstr "確定要更換協定?" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:310 msgid "Realtime Connections" msgstr "即時連線" @@ -3978,15 +3954,15 @@ msgstr "即時連線" msgid "Realtime Graphs" msgstr "即時圖表" -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:246 +#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 msgid "Realtime Load" msgstr "即時負載" -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:270 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 msgid "Realtime Traffic" msgstr "即時流量" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:318 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 msgid "Realtime Wireless" msgstr "即時無線網路" @@ -3998,7 +3974,7 @@ msgstr "" msgid "Rebind protection" msgstr "重新綁護" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:44 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:47 #: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 msgid "Reboot" msgstr "重開機" @@ -4060,7 +4036,6 @@ msgid "Remote IPv4 address or FQDN" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:112 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:148 msgid "Remove" msgstr "移除" @@ -4124,7 +4099,6 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/footer.htm:30 #: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 #: modules/luci-base/luasrc/view/sysauth.htm:39 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:73 msgid "Reset" msgstr "重置" @@ -4167,6 +4141,8 @@ msgid "Restore backup" msgstr "還原之前備份設定" #: modules/luci-base/luasrc/view/cbi/value.htm:24 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:52 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:60 msgid "Reveal/hide password" msgstr "明示/隱藏 密碼" @@ -4176,15 +4152,15 @@ msgstr "明示/隱藏 密碼" msgid "Revert" msgstr "回溯" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:99 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 msgid "Revert changes" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:222 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 msgid "Revert request failed with status <code>%h</code>" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:208 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 msgid "Reverting configuration…" msgstr "" @@ -4213,7 +4189,8 @@ msgstr "" msgid "Router Advertisement-Service" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:7 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:41 msgid "Router Password" msgstr "路由器密碼" @@ -4233,11 +4210,11 @@ msgstr "路由器指定介面導出到特定主機或者能夠到達的網路." msgid "Rule" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 msgid "Run a filesystem check before mounting the device" msgstr "掛載這個設備前先跑系統檢查" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 msgid "Run filesystem check" msgstr "執行系統檢查" @@ -4245,11 +4222,12 @@ msgstr "執行系統檢查" msgid "SHA256" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 msgid "SNR" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:47 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:18 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 msgid "SSH Access" msgstr "SSH存取" @@ -4265,7 +4243,8 @@ msgstr "" msgid "SSH username" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:96 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:228 msgid "SSH-Keys" msgstr "SSH-金鑰" @@ -4274,7 +4253,7 @@ msgstr "SSH-金鑰" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:98 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:39 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:56 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:316 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:312 msgid "SSID" msgstr "基地台服務設定識別碼SSID" @@ -4285,6 +4264,7 @@ msgstr "" #: modules/luci-base/luasrc/view/cbi/error.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:26 #: modules/luci-base/luasrc/view/cbi/header.htm:17 +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:67 msgid "Save" msgstr "保存" @@ -4301,6 +4281,10 @@ msgstr "" msgid "Save mtdblock contents" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:129 +msgid "Saving keys…" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:82 msgid "Scan" msgstr "掃描" @@ -4309,7 +4293,7 @@ msgstr "掃描" msgid "Scan request failed" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:21 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 msgid "Scheduled Tasks" msgstr "排程任務" @@ -4322,7 +4306,7 @@ msgstr "新增的區段" msgid "Section removed" msgstr "區段移除" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:141 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 msgid "See \"mount\" manpage for details" msgstr "查看\"mount\"主頁獲取進階資訊" @@ -4365,6 +4349,14 @@ msgstr "服務型態" msgid "Services" msgstr "各服務" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 +msgid "Session expired" +msgstr "" + +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 +msgid "Set VPN as Default Route" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 msgid "" "Set interface properties regardless of the link carrier (If set, carrier " @@ -4388,11 +4380,11 @@ msgstr "" msgid "Setup DHCP Server" msgstr "安裝DHCP伺服器" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:271 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:267 msgid "Severely Errored Seconds (SES)" msgstr "" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:14 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "" @@ -4412,22 +4404,22 @@ msgstr "" msgid "Shutdown this interface" msgstr "關閉這個介面" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:76 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:195 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:315 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:311 msgid "Signal" msgstr "信號" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:266 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:262 msgid "Signal Attenuation (SATN)" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:332 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 msgid "Signal:" msgstr "信號:" @@ -4435,10 +4427,6 @@ msgstr "信號:" msgid "Size" msgstr "大小" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:178 -msgid "Size (.ipk)" -msgstr "" - #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 msgid "Size of DNS query cache" msgstr "" @@ -4466,12 +4454,7 @@ msgstr "跳到導覽" msgid "Slot time" msgstr "插槽時間" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:16 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:48 -msgid "Software" -msgstr "軟體" - -#: modules/luci-base/luasrc/model/network.lua:1409 +#: modules/luci-base/luasrc/model/network.lua:1417 msgid "Software VLAN" msgstr "" @@ -4496,7 +4479,7 @@ msgstr "" "抱歉, 沒有sysupgrade支援出現, 新版韌體映像檔必須手動更新. 請回歸wiki找尋特定" "設備安裝指引." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 #: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:102 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 msgid "Source" @@ -4506,7 +4489,7 @@ msgstr "來源" msgid "Specifies the directory the device is attached to" msgstr "指定這個設備被附掛到那個目錄" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:65 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 msgid "Specifies the listening port of this <em>Dropbear</em> instance" msgstr "指定這個 <em>Dropbear</em>真實聆聽埠" @@ -4552,7 +4535,7 @@ msgstr "啟用" msgid "Start priority" msgstr "啟用優先權順序" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:179 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 msgid "Starting configuration apply…" msgstr "" @@ -4560,7 +4543,7 @@ msgstr "" msgid "Starting wireless scan..." msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:23 msgid "Startup" msgstr "啟動" @@ -4572,7 +4555,7 @@ msgstr "靜態IPv4路由" msgid "Static IPv6 Routes" msgstr "靜態IPv6路由" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:271 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 msgid "Static Leases" msgstr "靜態租約" @@ -4580,11 +4563,11 @@ msgstr "靜態租約" msgid "Static Routes" msgstr "靜態路由" -#: modules/luci-base/luasrc/model/network.lua:952 +#: modules/luci-base/luasrc/model/network.lua:960 msgid "Static address" msgstr "靜態位址" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:272 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -4600,8 +4583,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:40 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:390 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:122 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:376 msgid "Status" msgstr "狀態" @@ -4626,7 +4608,7 @@ msgstr "" msgid "Suppress logging of the routine operation of these protocols" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:422 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:408 msgid "Swap" msgstr "" @@ -4656,7 +4638,7 @@ msgstr "" msgid "Switch Port Mask" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:1407 +#: modules/luci-base/luasrc/model/network.lua:1415 msgid "Switch VLAN" msgstr "" @@ -4674,7 +4656,7 @@ msgid "Synchronizing..." msgstr "同步中..." #: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:393 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 #: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 #: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 @@ -4694,7 +4676,7 @@ msgstr "系統屬性" msgid "System log buffer size" msgstr "系統日誌緩衝大小" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:335 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:333 msgid "TCP:" msgstr "TCP:" @@ -4712,7 +4694,7 @@ msgstr "TFTP 伺服器根" msgid "TX" msgstr "傳送" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 msgid "TX Rate" msgstr "傳送速度" @@ -4794,7 +4776,7 @@ msgstr "" msgid "The configuration file could not be loaded due to the following error:" msgstr "" -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:96 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 msgid "" "The device could not be reached within %d seconds after applying the pending " "changes, which caused the configuration to be rolled back for safety " @@ -4839,6 +4821,16 @@ msgstr "接下來的修改已經被回復" msgid "The following rules are currently active on this system." msgstr "以下的規則現正作用在系統中." +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:153 +msgid "The given SSH public key has already been added." +msgstr "" + +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:159 +msgid "" +"The given SSH public key is invalid. Please supply proper public RSA or " +"ECDSA keys." +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" msgstr "輸入的網路名稱非獨一" @@ -4889,13 +4881,13 @@ msgstr "選到的協定需要指定到設備上" msgid "The submitted security token is invalid or already expired!" msgstr "" -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:386 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" "The system is erasing the configuration partition now and will reboot itself " "when finished." msgstr "系統正在刪除設定分割並且當完成時將自行重開." -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:301 +#: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 #, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " @@ -4906,6 +4898,10 @@ msgstr "" "系統現正刷機中.<br /> 請勿關閉設備!<br /> 等待數分鐘直到您重新在連線. 可能需" "要更新您電腦的位址以便再連設備, 端看您的設定. " +#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:19 +msgid "The system password has been successfully changed." +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 msgid "" "The uploaded image file does not contain a supported format. Make sure that " @@ -4913,12 +4909,16 @@ msgid "" msgstr "" "以上傳的映像檔不包含支援格式. 請確認您選擇的是針對您的平台採用的通用映像檔." +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +msgid "Theme" +msgstr "設計規劃" + #: modules/luci-base/luasrc/view/lease_status.htm:29 #: modules/luci-base/luasrc/view/lease_status.htm:61 msgid "There are no active leases." msgstr "租賃尚未啟動." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:189 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 msgid "There are no changes to apply." msgstr "" @@ -4940,7 +4940,7 @@ msgstr "尚未指定設備, 請接上一個網路設備在這\"實體設置\"標 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:287 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5018,7 +5018,7 @@ msgid "" "their status." msgstr "這清單提供目前正在執行的系統的執行緒和狀態的預覽." -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:314 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:312 msgid "This page gives an overview over currently active network connections." msgstr "這一頁提供目前正在活動中網路連線的預覽." @@ -5044,6 +5044,10 @@ msgstr "" msgid "Timezone" msgstr "時區" +#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 +msgid "To login…" +msgstr "" + #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 msgid "" "To restore configuration files, you can upload a previously generated backup " @@ -5053,12 +5057,12 @@ msgstr "" "要復元設定檔, 可以上傳之前製作的備份壓縮檔放這. 要重置回復出廠值,按下\"執行還" "原\"(可能只對squashfs影像檔有效)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:171 msgid "Tone" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:414 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:425 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:400 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:411 msgid "Total Available" msgstr "全部可用" @@ -5073,7 +5077,7 @@ msgstr "路由追蹤" msgid "Traffic" msgstr "流量" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:362 msgid "Transfer" msgstr "傳輸" @@ -5108,7 +5112,7 @@ msgstr "觸發模式" msgid "Tunnel ID" msgstr "通道ID" -#: modules/luci-base/luasrc/model/network.lua:1412 +#: modules/luci-base/luasrc/model/network.lua:1420 msgid "Tunnel Interface" msgstr "通道介面" @@ -5123,12 +5127,12 @@ msgid "Tx-Power" msgstr "傳送-功率" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:42 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:327 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:323 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 msgid "Type" msgstr "型態" -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:325 +#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:323 msgid "UDP:" msgstr "UDP:" @@ -5182,36 +5186,36 @@ msgstr "" msgid "Unable to resolve peer host name" msgstr "" -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:273 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:269 msgid "Unavailable Seconds (UAS)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:956 +#: modules/luci-base/luasrc/model/network.lua:964 msgid "Unknown" msgstr "未知" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua:34 -msgid "Unknown Error, password not changed!" -msgstr "未知錯誤, 密碼尚未改變!" - -#: modules/luci-base/luasrc/model/network.lua:1123 +#: modules/luci-base/luasrc/model/network.lua:1131 msgid "Unknown error (%s)" msgstr "" -#: modules/luci-base/luasrc/model/network.lua:950 +#: modules/luci-base/luasrc/model/network.lua:958 msgid "Unmanaged" msgstr "非託管" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:122 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 msgid "Unmount" msgstr "" +#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:116 +msgid "Unnamed key" +msgstr "" + #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:209 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:191 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 msgid "Unsaved Changes" msgstr "尚未存檔的修改" @@ -5231,10 +5235,6 @@ msgstr "不支援的協定型態" msgid "Up" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:85 -msgid "Update lists" -msgstr "上傳清單" - #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware. " @@ -5254,7 +5254,7 @@ msgstr "檔案已上傳" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:106 #: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:405 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:391 msgid "Uptime" msgstr "上傳花費時間" @@ -5370,7 +5370,7 @@ msgstr "使用匝道器公測數" msgid "Use routing table" msgstr "使用路由表" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:275 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "em> identifies the host, the <em>IPv4-Address</em> specifies the fixed " @@ -5410,11 +5410,11 @@ msgstr "" msgid "Username" msgstr "用戶名稱" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:245 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:241 msgid "VC-Mux" msgstr "虛擬電路多工器VC-Mux" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:191 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 msgid "VDSL" msgstr "" @@ -5464,11 +5464,6 @@ msgstr "當請求DHCP封包時要傳送的製造商類別碼" msgid "Verify" msgstr "確認" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:136 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:177 -msgid "Version" -msgstr "版本" - #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm:95 msgid "Virtual dynamic interface" msgstr "" @@ -5519,7 +5514,7 @@ msgstr "等待修改被啟用..." msgid "Waiting for command to complete..." msgstr "等待完整性指令..." -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:161 +#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 msgid "Waiting for configuration to be applied… %ds" msgstr "" @@ -5552,16 +5547,16 @@ msgstr "" #: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 #: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:461 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:447 msgid "Wireless" msgstr "無線網路" -#: modules/luci-base/luasrc/model/network.lua:1400 +#: modules/luci-base/luasrc/model/network.lua:1408 msgid "Wireless Adapter" msgstr "無線網卡" -#: modules/luci-base/luasrc/model/network.lua:1386 -#: modules/luci-base/luasrc/model/network.lua:1847 +#: modules/luci-base/luasrc/model/network.lua:1394 +#: modules/luci-base/luasrc/model/network.lua:1855 msgid "Wireless Network" msgstr "無線網路" @@ -5576,13 +5571,13 @@ msgstr "無線安全" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:97 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:102 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:60 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is disabled" msgstr "無線被關閉" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:103 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:61 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:321 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:317 msgid "Wireless is not associated" msgstr "無線未關聯" @@ -5606,6 +5601,10 @@ msgstr "寫入已接收的DNS請求到系統日誌中" msgid "Write system log to file" msgstr "" +#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 +msgid "Yes" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:25 msgid "" "You can enable or disable installed init scripts here. Changes will applied " @@ -5619,7 +5618,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:253 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:299 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "在瀏覽器您必須啟用JavaScript否則LuCI無法正常運作." @@ -5651,9 +5650,9 @@ msgstr "" msgid "any" msgstr "任意" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:189 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:172 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:215 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:279 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 @@ -5670,7 +5669,7 @@ msgstr "自動" msgid "baseT" msgstr "baseT" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:250 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:246 msgid "bridged" msgstr "已橋接" @@ -5689,24 +5688,24 @@ msgid "creates a bridge over specified interface(s)" msgstr "在指定的介面群上建立橋接" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 msgid "dB" msgstr "dB" -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:50 +#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm:81 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:32 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:43 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:44 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:45 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:281 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:339 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:349 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 +#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 msgid "dBm" msgstr "dBm" @@ -5748,7 +5747,7 @@ msgstr "全雙工" msgid "half-duplex" msgstr "半雙工" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:622 msgid "hexadecimal encoded value" msgstr "" @@ -5770,44 +5769,44 @@ msgstr "假如目標是某個網路" msgid "input" msgstr "輸入" +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:350 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:351 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:354 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:355 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:356 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:361 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:358 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:359 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:362 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:363 +#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:366 #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:368 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:373 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:374 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:379 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:380 msgid "kB" msgstr "kB" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kB/s" msgstr "kB/s" #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:285 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:295 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 #: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 +#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 msgid "kbit/s" msgstr "kbit/s" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:460 msgid "key between 8 and 63 characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 msgid "key with either 5 or 13 characters" msgstr "" @@ -5833,19 +5832,10 @@ msgstr "無" msgid "no link" msgstr "無連線" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:241 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:274 msgid "non-empty value" msgstr "" -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:156 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:157 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:201 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:202 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:203 -#: modules/luci-mod-system/luasrc/view/admin_system/packages.htm:204 -msgid "none" -msgstr "無" - #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 @@ -5857,7 +5847,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:225 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:252 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 msgid "off" msgstr "關閉" @@ -5865,11 +5855,11 @@ msgstr "關閉" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:224 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 msgid "on" msgstr "開啟" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:493 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:526 msgid "" "one of:\n" " - %s" @@ -5887,11 +5877,11 @@ msgstr "" msgid "overlay" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:306 msgid "positive decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:265 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:298 msgid "positive integer value" msgstr "" @@ -5905,7 +5895,7 @@ msgstr "" msgid "relay mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:251 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:247 msgid "routed" msgstr "路由" @@ -5939,7 +5929,7 @@ msgstr "標籤" msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:579 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:612 msgid "unique value" msgstr "" @@ -5966,159 +5956,159 @@ msgstr "尚未指定 - 或 -建立:" msgid "untagged" msgstr "尚未標籤" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:311 msgid "valid IP address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:313 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 msgid "valid IPv4 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:286 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:319 msgid "valid IPv4 address or network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:406 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:439 msgid "valid IPv4 address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:346 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:379 msgid "valid IPv4 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:308 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 msgid "valid IPv4 or IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:299 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:332 msgid "valid IPv4 prefix value (0-32)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 msgid "valid IPv6 CIDR" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:327 msgid "valid IPv6 address or prefix" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:369 msgid "valid IPv6 host id" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:351 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:384 msgid "valid IPv6 network" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:304 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:337 msgid "valid IPv6 prefix value (0-128)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:372 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:405 msgid "valid MAC address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:443 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:476 msgid "valid UCI identifier" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:394 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:427 msgid "valid UCI identifier, hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:415 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:418 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:451 msgid "valid address:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:553 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:557 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:586 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:590 msgid "valid date (YYYY-MM-DD)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:269 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:302 msgid "valid decimal value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:437 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:470 msgid "valid hexadecimal WEP key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:425 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:458 msgid "valid hexadecimal WPA key" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:433 msgid "valid host:port" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:387 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:420 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:422 msgid "valid hostname" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:377 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:410 msgid "valid hostname or IP address" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:261 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:294 msgid "valid integer value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:341 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:374 msgid "valid network in address/netmask notation" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:528 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:561 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:364 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:367 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:397 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:400 msgid "valid port or port range (port1-port2)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:356 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:389 msgid "valid port value" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:533 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:566 msgid "valid time (HH:MM:SS)" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:462 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:495 msgid "value between %d and %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:448 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:481 msgid "value between %f and %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:452 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:485 msgid "value greater or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:456 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:489 msgid "value smaller or equal to %f" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:467 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:500 msgid "value with at least %d characters" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:472 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:505 msgid "value with at most %d characters" msgstr "" @@ -6132,6 +6122,71 @@ msgstr "是的" msgid "« Back" msgstr "« 倒退" +#~ msgid "" +#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " +#~ "authentication." +#~ msgstr "在這裡貼上公用SSH-Keys (每行一個)以便驗證" + +#~ msgid "Password successfully changed!" +#~ msgstr "密碼已變更成功!" + +#~ msgid "Unknown Error, password not changed!" +#~ msgstr "未知錯誤, 密碼尚未改變!" + +#~ msgid "Design" +#~ msgstr "設計規劃" + +#~ msgid "Available packages" +#~ msgstr "可用軟體包" + +#~ msgid "Displaying only packages containing" +#~ msgstr "僅顯示內含的軟體" + +#~ msgid "Download and install package" +#~ msgstr "下載並安裝軟體包" + +#~ msgid "Filter" +#~ msgstr "過濾器" + +#~ msgid "Find package" +#~ msgstr "搜尋軟體包" + +#~ msgid "Free space" +#~ msgstr "剩餘空間" + +#~ msgid "Install" +#~ msgstr "安裝" + +#~ msgid "Installed packages" +#~ msgstr "安裝軟體包" + +#~ msgid "No package lists available" +#~ msgstr "尚無列出的軟體包可運用" + +#~ msgid "OK" +#~ msgstr "行" + +#~ msgid "OPKG-Configuration" +#~ msgstr "OPKG-設定值" + +#~ msgid "Package lists are older than 24 hours" +#~ msgstr "軟體包列表過期24小時" + +#~ msgid "Package name" +#~ msgstr "軟體包名稱" + +#~ msgid "Software" +#~ msgstr "軟體" + +#~ msgid "Update lists" +#~ msgstr "上傳清單" + +#~ msgid "Version" +#~ msgstr "版本" + +#~ msgid "none" +#~ msgstr "無" + #~ msgid "Disable DNS setup" #~ msgstr "關閉DNS設置" diff --git a/modules/luci-base/src/Makefile b/modules/luci-base/src/Makefile index 03e887e1d5..3e6ead1085 100644 --- a/modules/luci-base/src/Makefile +++ b/modules/luci-base/src/Makefile @@ -4,6 +4,9 @@ clean: rm -f po2lmo parser.so version.lua *.o +jsmin: jsmin.o + $(CC) $(LDFLAGS) -o $@ $^ + po2lmo: po2lmo.o template_lmo.o $(CC) $(LDFLAGS) -o $@ $^ diff --git a/modules/luci-base/src/jsmin.c b/modules/luci-base/src/jsmin.c new file mode 100644 index 0000000000..d23718df39 --- /dev/null +++ b/modules/luci-base/src/jsmin.c @@ -0,0 +1,292 @@ +/* jsmin.c + 2011-09-30 + +Copyright (c) 2002 Douglas Crockford (www.crockford.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +The Software shall be used for Good, not Evil. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +*/ + +#include <stdlib.h> +#include <stdio.h> + +static int theA; +static int theB; +static int theLookahead = EOF; + + +/* isAlphanum -- return true if the character is a letter, digit, underscore, + dollar sign, or non-ASCII character. +*/ + +static int +isAlphanum(int c) +{ + return ((c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') || + (c >= 'A' && c <= 'Z') || c == '_' || c == '$' || c == '\\' || + c > 126); +} + + +/* get -- return the next character from stdin. Watch out for lookahead. If + the character is a control character, translate it to a space or + linefeed. +*/ + +static int +get() +{ + int c = theLookahead; + theLookahead = EOF; + if (c == EOF) { + c = getc(stdin); + } + if (c >= ' ' || c == '\n' || c == EOF) { + return c; + } + if (c == '\r') { + return '\n'; + } + return ' '; +} + + +/* peek -- get the next character without getting it. +*/ + +static int +peek() +{ + theLookahead = get(); + return theLookahead; +} + + +/* next -- get the next character, excluding comments. peek() is used to see + if a '/' is followed by a '/' or '*'. +*/ + +static int +next() +{ + int c = get(); + if (c == '/') { + switch (peek()) { + case '/': + for (;;) { + c = get(); + if (c <= '\n') { + return c; + } + } + case '*': + get(); + for (;;) { + switch (get()) { + case '*': + if (peek() == '/') { + get(); + return ' '; + } + break; + case EOF: + fprintf(stderr, "Error: JSMIN Unterminated comment.\n"); + exit(1); + } + } + default: + return c; + } + } + return c; +} + + +/* action -- do something! What you do is determined by the argument: + 1 Output A. Copy B to A. Get the next B. + 2 Copy B to A. Get the next B. (Delete A). + 3 Get the next B. (Delete B). + action treats a string as a single character. Wow! + action recognizes a regular expression if it is preceded by ( or , or =. +*/ + +static void +action(int d) +{ + switch (d) { + case 1: + putc(theA, stdout); + case 2: + theA = theB; + if (theA == '\'' || theA == '"' || theA == '`') { + for (;;) { + putc(theA, stdout); + theA = get(); + if (theA == theB) { + break; + } + if (theA == '\\') { + putc(theA, stdout); + theA = get(); + } + if (theA == EOF) { + fprintf(stderr, "Error: JSMIN unterminated string literal."); + exit(1); + } + } + } + case 3: + theB = next(); + if (theB == '/' && (theA == '(' || theA == ',' || theA == '=' || + theA == ':' || theA == '[' || theA == '!' || + theA == '&' || theA == '|' || theA == '?' || + theA == '{' || theA == '}' || theA == ';' || + theA == '\n')) { + putc(theA, stdout); + putc(theB, stdout); + for (;;) { + theA = get(); + if (theA == '[') { + for (;;) { + putc(theA, stdout); + theA = get(); + if (theA == ']') { + break; + } + if (theA == '\\') { + putc(theA, stdout); + theA = get(); + } + if (theA == EOF) { + fprintf(stderr, + "Error: JSMIN unterminated set in Regular Expression literal.\n"); + exit(1); + } + } + } else if (theA == '/') { + break; + } else if (theA =='\\') { + putc(theA, stdout); + theA = get(); + } + if (theA == EOF) { + fprintf(stderr, + "Error: JSMIN unterminated Regular Expression literal.\n"); + exit(1); + } + putc(theA, stdout); + } + theB = next(); + } + } +} + + +/* jsmin -- Copy the input to the output, deleting the characters which are + insignificant to JavaScript. Comments will be removed. Tabs will be + replaced with spaces. Carriage returns will be replaced with linefeeds. + Most spaces and linefeeds will be removed. +*/ + +static void +jsmin() +{ + theA = '\n'; + action(3); + while (theA != EOF) { + switch (theA) { + case ' ': + if (isAlphanum(theB)) { + action(1); + } else { + action(2); + } + break; + case '\n': + switch (theB) { + case '{': + case '[': + case '(': + case '+': + case '-': + action(1); + break; + case ' ': + action(3); + break; + default: + if (isAlphanum(theB)) { + action(1); + } else { + action(2); + } + } + break; + default: + switch (theB) { + case ' ': + if (isAlphanum(theA)) { + action(1); + break; + } + action(3); + break; + case '\n': + switch (theA) { + case '}': + case ']': + case ')': + case '+': + case '-': + case '"': + case '\'': + case '`': + action(1); + break; + default: + if (isAlphanum(theA)) { + action(1); + } else { + action(3); + } + } + break; + default: + action(1); + break; + } + } + } +} + + +/* main -- Output any command line arguments as comments + and then minify the input. +*/ +extern int +main(int argc, char* argv[]) +{ + int i; + for (i = 1; i < argc; i += 1) { + fprintf(stdout, "// %s\n", argv[i]); + } + jsmin(); + return 0; +} diff --git a/modules/luci-base/src/template_lmo.c b/modules/luci-base/src/template_lmo.c index cd4c609a74..f7a118c9bb 100644 --- a/modules/luci-base/src/template_lmo.c +++ b/modules/luci-base/src/template_lmo.c @@ -46,14 +46,14 @@ uint32_t sfh_hash(const char *data, int len) switch (rem) { case 3: hash += sfh_get16(data); hash ^= hash << 16; - hash ^= data[sizeof(uint16_t)] << 18; + hash ^= (signed char)data[sizeof(uint16_t)] << 18; hash += hash >> 11; break; case 2: hash += sfh_get16(data); hash ^= hash << 11; hash += hash >> 17; break; - case 1: hash += *data; + case 1: hash += (signed char)*data; hash ^= hash << 10; hash += hash >> 1; } diff --git a/modules/luci-mod-freifunk/Makefile b/modules/luci-mod-freifunk/Makefile index 550db1df15..70de10879c 100644 --- a/modules/luci-mod-freifunk/Makefile +++ b/modules/luci-mod-freifunk/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk LUCI_TITLE:=LuCI Freifunk module -LUCI_DEPENDS:=+luci-mod-admin-full +luci-lib-json +freifunk-firewall +freifunk-common +LUCI_DEPENDS:=+luci-mod-admin-full +luci-lib-json +luci-lib-ipkg +freifunk-firewall +freifunk-common include ../../luci.mk diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js new file mode 100644 index 0000000000..88f48d189a --- /dev/null +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js @@ -0,0 +1,42 @@ +requestAnimationFrame(function() { + document.querySelectorAll('[data-iface-status]').forEach(function(container) { + var network = container.getAttribute('data-iface-status'), + icon = container.querySelector('img'), + info = container.querySelector('span'); + + L.poll(5, L.url('admin/network/iface_status', network), null, function(xhr, ifaces) { + var ifc = Array.isArray(ifaces) ? ifaces[0] : null; + if (!ifc) + return; + + L.itemlist(info, [ + _('Device'), ifc.ifname, + _('Uptime'), ifc.is_up ? '%t'.format(ifc.uptime) : null, + _('MAC'), ifc.ifname ? ifc.macaddr : null, + _('RX'), ifc.ifname ? '%.2mB (%d %s)'.format(ifc.rx_bytes, ifc.rx_packets, _('Pkts.')) : null, + _('TX'), ifc.ifname ? '%.2mB (%d %s)'.format(ifc.tx_bytes, ifc.tx_packets, _('Pkts.')) : null, + _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[0] : null, + _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[1] : null, + _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[2] : null, + _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[3] : null, + _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[4] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[0] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[1] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[2] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[3] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[4] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[5] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[6] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[7] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[8] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[9] : null, + _('IPv6-PD'), ifc.ip6prefix, + null, ifc.ifname ? null : E('em', _('Interface not present or not connected yet.')) + ]); + + icon.src = L.resource('icons/%s%s.png').format(ifc.type, ifc.is_up ? '' : '_disabled'); + }); + + L.run(); + }); +}); diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js new file mode 100644 index 0000000000..acca7cf8a5 --- /dev/null +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js @@ -0,0 +1,135 @@ +function iface_reconnect(id) { + L.halt(); + L.dom.content(document.getElementById(id + '-ifc-description'), E('em', _('Interface is reconnecting...'))); + L.post(L.url('admin/network/iface_reconnect', id), L.run); +} + +function iface_delete(ev) { + if (!confirm(_('Really delete this interface? The deletion cannot be undone! You might lose access to this device if you are connected via this interface'))) { + ev.preventDefault(); + return false; + } + + ev.target.previousElementSibling.value = '1'; + return true; +} + +var networks = []; + +document.querySelectorAll('[data-network]').forEach(function(n) { + networks.push(n.getAttribute('data-network')); +}); + +function render_iface(ifc) { + return E('span', { class: 'cbi-tooltip-container' }, [ + E('img', { 'class' : 'middle', 'src': L.resource('icons/%s%s.png').format( + ifc.is_alias ? 'alias' : ifc.type, + ifc.is_up ? '' : '_disabled') }), + E('span', { 'class': 'cbi-tooltip ifacebadge large' }, [ + E('img', { 'src': L.resource('icons/%s%s.png').format( + ifc.type, ifc.is_up ? '' : '_disabled') }), + L.itemlist(E('span', { 'class': 'left' }), [ + _('Type'), ifc.typename, + _('Device'), ifc.ifname, + _('Connected'), ifc.is_up ? _('yes') : _('no'), + _('MAC'), ifc.macaddr, + _('RX'), '%.2mB (%d %s)'.format(ifc.rx_bytes, ifc.rx_packets, _('Pkts.')), + _('TX'), '%.2mB (%d %s)'.format(ifc.tx_bytes, ifc.tx_packets, _('Pkts.')) + ]) + ]) + ]); +} + +L.poll(5, L.url('admin/network/iface_status', networks.join(',')), null, + function(x, ifcs) { + if (ifcs) { + for (var idx = 0; idx < ifcs.length; idx++) { + var ifc = ifcs[idx]; + + var s = document.getElementById(ifc.id + '-ifc-devices'); + if (s) { + var c = [ render_iface(ifc) ]; + + if (ifc.subdevices && ifc.subdevices.length) + { + var sifs = [ ' (' ]; + + for (var j = 0; j < ifc.subdevices.length; j++) + sifs.push(render_iface(ifc.subdevices[j])); + + sifs.push(')'); + + c.push(E('span', {}, sifs)); + } + + c.push(E('br')); + c.push(E('small', {}, ifc.is_alias ? _('Alias of "%s"').format(ifc.is_alias) : ifc.name)); + + L.dom.content(s, c); + } + + var d = document.getElementById(ifc.id + '-ifc-description'); + if (d && ifc.proto && ifc.ifname) { + var desc = null, c = []; + + if (ifc.is_dynamic) + desc = _('Virtual dynamic interface'); + else if (ifc.is_alias) + desc = _('Alias Interface'); + + if (ifc.desc) + desc = desc ? '%s (%s)'.format(desc, ifc.desc) : ifc.desc; + + L.itemlist(d, [ + _('Protocol'), '%h'.format(desc || '?'), + _('Uptime'), ifc.is_up ? '%t'.format(ifc.uptime) : null, + _('MAC'), (!ifc.is_dynamic && !ifc.is_alias && ifc.macaddr) ? ifc.macaddr : null, + _('RX'), (!ifc.is_dynamic && !ifc.is_alias) ? '%.2mB (%d %s)'.format(ifc.rx_bytes, ifc.rx_packets, _('Pkts.')) : null, + _('TX'), (!ifc.is_dynamic && !ifc.is_alias) ? '%.2mB (%d %s)'.format(ifc.tx_bytes, ifc.tx_packets, _('Pkts.')) : null, + _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[0] : null, + _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[1] : null, + _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[2] : null, + _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[3] : null, + _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[4] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[0] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[1] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[2] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[3] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[4] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[5] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[6] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[7] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[8] : null, + _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[9] : null, + _('IPv6-PD'), ifc.ip6prefix, + _('Error'), ifc.errors ? ifc.errors[0] : null, + _('Error'), ifc.errors ? ifc.errors[1] : null, + _('Error'), ifc.errors ? ifc.errors[2] : null, + _('Error'), ifc.errors ? ifc.errors[3] : null, + _('Error'), ifc.errors ? ifc.errors[4] : null, + ]); + } + else if (d && !ifc.proto) { + var e = document.getElementById(ifc.id + '-ifc-edit'); + if (e) e.disabled = true; + + var link = L.url('admin/system/packages') + '?query=luci-proto&display=available'; + L.dom.content(d, [ + E('em', _('Unsupported protocol type.')), E('br'), + E('a', { href: link }, _('Install protocol extensions...')) + ]); + } + else if (d && !ifc.ifname) { + var link = L.url('admin/network/network', ifc.name) + '?tab.network.%s=physical'.format(ifc.name); + L.dom.content(d, [ + E('em', _('Network without interfaces.')), E('br'), + E('a', { href: link }, _('Assign interfaces...')) + ]); + } + else if (d) { + L.dom.content(d, E('em' ,_('Interface not present or not connected yet.'))); + } + } + } + } +); diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js new file mode 100644 index 0000000000..d5bd7b0a6d --- /dev/null +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js @@ -0,0 +1,159 @@ +var poll = null; + +function format_signal(bss) { + var qval = bss.quality || 0, + qmax = bss.quality_max || 100, + scale = 100 / qmax * qval, + range = 'none'; + + if (!bss.bssid || bss.bssid == '00:00:00:00:00:00') + range = 'none'; + else if (scale < 15) + range = '0'; + else if (scale < 35) + range = '0-25'; + else if (scale < 55) + range = '25-50'; + else if (scale < 75) + range = '50-75'; + else + range = '75-100'; + + return E('span', { + class: 'ifacebadge', + title: '%s: %d%s / %s: %d/%d'.format(_('Signal'), bss.signal, _('dB'), _('Quality'), qval, qmax) + }, [ + E('img', { src: L.resource('icons/signal-%s.png').format(range) }), + ' %d%%'.format(scale) + ]); +} + +function format_encryption(bss) { + var enc = bss.encryption || { } + + if (enc.wep === true) + return 'WEP'; + else if (enc.wpa > 0) + return E('abbr', { + title: 'Pairwise: %h / Group: %h'.format( + enc.pair_ciphers.join(', '), + enc.group_ciphers.join(', ')) + }, + '%h - %h'.format( + (enc.wpa === 3) ? _('mixed WPA/WPA2') : (enc.wpa === 2 ? 'WPA2' : 'WPA'), + enc.auth_suites.join(', '))); + else + return E('em', enc.enabled ? _('unknown') : _('open')); +} + +function format_actions(dev, type, bss) { + var enc = bss.encryption || { }, + input = [ + E('input', { type: 'submit', class: 'cbi-button cbi-button-action important', value: _('Join Network') }), + E('input', { type: 'hidden', name: 'token', value: L.env.token }), + E('input', { type: 'hidden', name: 'device', value: dev }), + E('input', { type: 'hidden', name: 'join', value: bss.ssid }), + E('input', { type: 'hidden', name: 'mode', value: bss.mode }), + E('input', { type: 'hidden', name: 'bssid', value: bss.bssid }), + E('input', { type: 'hidden', name: 'channel', value: bss.channel }), + E('input', { type: 'hidden', name: 'clbridge', value: type === 'wl' ? 1 : 0 }), + E('input', { type: 'hidden', name: 'wep', value: enc.wep ? 1 : 0 }) + ]; + + if (enc.wpa) { + input.push(E('input', { type: 'hidden', name: 'wpa_version', value: enc.wpa })); + + enc.auth_suites.forEach(function(s) { + input.push(E('input', { type: 'hidden', name: 'wpa_suites', value: s })); + }); + + enc.group_ciphers.forEach(function(s) { + input.push(E('input', { type: 'hidden', name: 'wpa_group', value: s })); + }); + + enc.pair_ciphers.forEach(function(s) { + input.push(E('input', { type: 'hidden', name: 'wpa_pairwise', value: s })); + }); + } + + return E('form', { + class: 'inline', + method: 'post', + action: L.url('admin/network/wireless_join') + }, input); +} + +function fade(bss, content) { + if (bss.stale) + return E('span', { style: 'opacity:0.5' }, content); + else + return content; +} + +function flush() { + L.stop(poll); + L.halt(); + + scan(); +} + +function scan() { + var tbl = document.querySelector('[data-wifi-scan]'), + dev = tbl.getAttribute('data-wifi-scan'), + type = tbl.getAttribute('data-wifi-type'); + + cbi_update_table(tbl, [], E('em', { class: 'spinning' }, _('Starting wireless scan...'))); + + L.post(L.url('admin/network/wireless_scan_trigger', dev), null, function(s) { + if (s.status !== 204) { + cbi_update_table(tbl, [], E('em', _('Scan request failed'))); + return; + } + + var count = 0; + + poll = L.poll(3, L.url('admin/network/wireless_scan_results', dev), null, function(s, results) { + if (Array.isArray(results)) { + var bss = []; + + results.sort(function(a, b) { + var diff = (b.quality - a.quality) || (a.channel - b.channel); + + if (diff) + return diff; + + if (a.ssid < b.ssid) + return -1; + else if (a.ssid > b.ssid) + return 1; + + if (a.bssid < b.bssid) + return -1; + else if (a.bssid > b.bssid) + return 1; + }).forEach(function(res) { + bss.push([ + fade(res, format_signal(res)), + fade(res, res.ssid ? '%h'.format(res.ssid) : E('em', {}, _('hidden'))), + fade(res, res.channel), + fade(res, res.mode), + fade(res, res.bssid), + fade(res, format_encryption(res)), + format_actions(dev, type, res) + ]); + }); + + cbi_update_table(tbl, bss, E('em', { class: 'spinning' }, _('No scan results available yet...'))); + } + + if (count++ >= 3) { + count = 0; + L.post(L.url('admin/network/wireless_scan_trigger', dev, 1), null, function() {}); + } + }); + + L.run(); + }); +} + +document.addEventListener('DOMContentLoaded', scan); diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js new file mode 100644 index 0000000000..7e14d999bd --- /dev/null +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js @@ -0,0 +1,59 @@ +requestAnimationFrame(function() { + document.querySelectorAll('[data-wifi-status]').forEach(function(container) { + var ifname = container.getAttribute('data-wifi-status'), + small = container.querySelector('small'), + info = container.querySelector('span'); + + L.poll(5, L.url('admin/network/wireless_status', ifname), null, function(xhr, iws) { + var iw = Array.isArray(iws) ? iws[0] : null; + if (!iw) + return; + + var is_assoc = (iw.bssid && iw.bssid != '00:00:00:00:00:00' && iw.channel && !iw.disabled); + var p = iw.quality; + var q = iw.disabled ? -1 : p; + + var icon; + if (q < 0) + icon = L.resource('icons/signal-none.png'); + else if (q == 0) + icon = L.resource('icons/signal-0.png'); + else if (q < 25) + icon = L.resource('icons/signal-0-25.png'); + else if (q < 50) + icon = L.resource('icons/signal-25-50.png'); + else if (q < 75) + icon = L.resource('icons/signal-50-75.png'); + else + icon = L.resource('icons/signal-75-100.png'); + + L.dom.content(small, [ + E('img', { + src: icon, + title: '%s: %d %s / %s: %d %s'.format( + _('Signal'), iw.signal, _('dBm'), + _('Noise'), iw.noise, _('dBm')) + }), + '\u00a0', E('br'), '%d%%\u00a0'.format(p) + ]); + + L.itemlist(info, [ + _('Mode'), iw.mode, + _('SSID'), '%h'.format(iw.ssid || '?'), + _('BSSID'), is_assoc ? iw.bssid : null, + _('Encryption'), is_assoc ? iw.encryption || _('None') : null, + _('Channel'), is_assoc ? '%d (%.3f %s)'.format(iw.channel, iw.frequency || 0, _('GHz')) : null, + _('Tx-Power'), is_assoc ? '%d %s'.format(iw.txpower, _('dBm')) : null, + _('Signal'), is_assoc ? '%d %s'.format(iw.signal, _('dBm')) : null, + _('Noise'), is_assoc ? '%d %s'.format(iw.noise, _('dBm')) : null, + _('Bitrate'), is_assoc ? '%.1f %s'.format(iw.bitrate || 0, _('Mbit/s')) : null, + _('Country'), is_assoc ? iw.country : null + ], [ ' | ', E('br'), E('br'), E('br'), E('br'), E('br'), ' | ', E('br'), ' | ' ]); + + if (!is_assoc) + L.dom.append(info, E('em', iw.disabled ? _('Wireless is disabled') : _('Wireless is not associated'))); + }); + + L.run(); + }); +}); diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js new file mode 100644 index 0000000000..bdeb23d235 --- /dev/null +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js @@ -0,0 +1,93 @@ +function wifi_delete(ev) { + if (!confirm(_('Really delete this wireless network? The deletion cannot be undone! You might lose access to this device if you are connected via this network.'))) { + ev.preventDefault(); + return false; + } + + ev.target.previousElementSibling.value = '1'; + return true; +} + +function wifi_restart(ev) { + L.halt(); + + findParent(ev.target, '.table').querySelectorAll('[data-disabled="false"]').forEach(function(s) { + L.dom.content(s, E('em', _('Wireless is restarting...'))); + }); + + L.post(L.url('admin/network/wireless_reconnect', ev.target.getAttribute('data-radio')), L.run); +} + +var networks = [ ]; + +document.querySelectorAll('[data-network]').forEach(function(n) { + networks.push(n.getAttribute('data-network')); +}); + +L.poll(5, L.url('admin/network/wireless_status', networks.join(',')), null, + function(x, st) { + if (st) { + var rowstyle = 1; + var radiostate = { }; + + st.forEach(function(s) { + var r = radiostate[s.device.device] || (radiostate[s.device.device] = {}); + + s.is_assoc = (s.bssid && s.bssid != '00:00:00:00:00:00' && s.channel && s.mode != 'Unknown' && !s.disabled); + + r.up = r.up || s.is_assoc; + r.channel = r.channel || s.channel; + r.bitrate = r.bitrate || s.bitrate; + r.frequency = r.frequency || s.frequency; + }); + + for (var i = 0; i < st.length; i++) { + var iw = st[i], + sig = document.getElementById(iw.id + '-iw-signal'), + info = document.getElementById(iw.id + '-iw-status'), + disabled = (info && info.getAttribute('data-disabled') === 'true'); + + var p = iw.quality; + var q = disabled ? -1 : p; + + var icon; + if (q < 0) + icon = L.resource('icons/signal-none.png'); + else if (q == 0) + icon = L.resource('icons/signal-0.png'); + else if (q < 25) + icon = L.resource('icons/signal-0-25.png'); + else if (q < 50) + icon = L.resource('icons/signal-25-50.png'); + else if (q < 75) + icon = L.resource('icons/signal-50-75.png'); + else + icon = L.resource('icons/signal-75-100.png'); + + L.dom.content(sig, E('span', { + class: 'ifacebadge', + title: '%s %d %s / %s: %d %s'.format(_('Signal'), iw.signal, _('dBm'), _('Noise'), iw.noise, _('dBm')) + }, [ E('img', { src: icon }), ' %d%%'.format(p) ])); + + L.itemlist(info, [ + _('SSID'), '%h'.format(iw.ssid || '?'), + _('Mode'), iw.mode, + _('BSSID'), iw.is_assoc ? iw.bssid : null, + _('Encryption'), iw.is_assoc ? iw.encryption || _('None') : null, + null, iw.is_assoc ? null : E('em', disabled ? _('Wireless is disabled') : _('Wireless is not associated')) + ], [ ' | ', E('br') ]); + } + + for (var dev in radiostate) { + var img = document.getElementById(dev + '-iw-upstate'); + if (img) img.src = L.resource('icons/wifi' + (radiostate[dev].up ? '' : '_disabled') + '.png'); + + var stat = document.getElementById(dev + '-iw-devinfo'); + L.itemlist(stat, [ + _('Channel'), '%s (%s %s)'.format(radiostate[dev].channel || '?', radiostate[dev].frequency || '?', _('GHz')), + _('Bitrate'), '%s %s'.format(radiostate[dev].bitrate || '?', _('Mbit/s')) + ], ' | '); + } + } + } +); diff --git a/modules/luci-mod-network/luasrc/controller/admin/network.lua b/modules/luci-mod-network/luasrc/controller/admin/network.lua index a200f79b51..1da5eac464 100644 --- a/modules/luci-mod-network/luasrc/controller/admin/network.lua +++ b/modules/luci-mod-network/luasrc/controller/admin/network.lua @@ -321,7 +321,7 @@ function wifi_scan_trigger(radio, update) return end - luci.http.status(200, "Scan scheduled") + luci.http.status(204, "Scan scheduled") if nixio.fork() == 0 then io.stderr:close() diff --git a/modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua b/modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua index e886d84224..0be1b3fb58 100644 --- a/modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua +++ b/modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua @@ -295,7 +295,7 @@ function name.remove(self, section) end mac = s:option(Value, "mac", translate("<abbr title=\"Media Access Control\">MAC</abbr>-Address")) -mac.datatype = "list(macaddr)" +mac.datatype = "list(unique(macaddr))" mac.rmempty = true function mac.cfgvalue(self, section) diff --git a/modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua b/modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua index 799386d29c..b98086dea6 100644 --- a/modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua +++ b/modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua @@ -15,59 +15,6 @@ m:chain("dhcp") m.pageaction = false -local tpl_networks = tpl.Template(nil, [[ - <div class="cbi-section-node"> - <div class="table"> - <% - for i, net in ipairs(netlist) do - local z = net[3] - local c = z and z:get_color() or "#EEEEEE" - local t = z and translate("Part of zone %q" % z:name()) or translate("No zone assigned") - local disabled = (net[4]:get("auto") == "0") - local dynamic = net[4]:is_dynamic() - %> - <div class="tr cbi-rowstyle-<%=i % 2 + 1%>"> - <div class="td col-3 center middle"> - <div class="ifacebox"> - <div class="ifacebox-head" style="background-color:<%=c%>" title="<%=pcdata(t)%>"> - <strong><%=net[1]:upper()%></strong> - </div> - <div class="ifacebox-body" id="<%=net[1]%>-ifc-devices" data-network="<%=net[1]%>"> - <img src="<%=resource%>/icons/ethernet_disabled.png" style="width:16px; height:16px" /><br /> - <small>?</small> - </div> - </div> - </div> - <div class="td col-5 left middle" id="<%=net[1]%>-ifc-description"> - <em><%:Collecting data...%></em> - </div> - <div class="td cbi-section-actions"> - <div> - <input type="button" class="cbi-button cbi-button-neutral" onclick="iface_reconnect('<%=net[1]%>')" title="<%:Reconnect this interface%>" value="<%:Restart%>"<%=ifattr(disabled or dynamic, "disabled", "disabled")%> /> - - <% if disabled then %> - <input type="hidden" name="cbid.network.<%=net[1]%>.__disable__" value="1" /> - <input type="submit" name="cbi.apply" class="cbi-button cbi-button-neutral" onclick="this.previousElementSibling.value='0'" title="<%:Reconnect this interface%>" value="<%:Connect%>"<%=ifattr(dynamic, "disabled", "disabled")%> /> - <% else %> - <input type="hidden" name="cbid.network.<%=net[1]%>.__disable__" value="0" /> - <input type="submit" name="cbi.apply" class="cbi-button cbi-button-neutral" onclick="this.previousElementSibling.value='1'" title="<%:Shutdown this interface%>" value="<%:Stop%>"<%=ifattr(dynamic, "disabled", "disabled")%> /> - <% end %> - - <input type="button" class="cbi-button cbi-button-action important" onclick="location.href='<%=url("admin/network/network", net[1])%>'" title="<%:Edit this interface%>" value="<%:Edit%>" id="<%=net[1]%>-ifc-edit"<%=ifattr(dynamic, "disabled", "disabled")%> /> - - <input type="hidden" name="cbid.network.<%=net[1]%>.__delete__" value="" /> - <input type="submit" name="cbi.apply" class="cbi-button cbi-button-negative" onclick="iface_delete(event)" value="<%:Delete%>"<%=ifattr(dynamic, "disabled", "disabled")%> /> - </div> - </div> - </div> - <% end %> - </div> - </div> - <div class="cbi-section-create"> - <input type="button" class="cbi-button cbi-button-add" value="<%:Add new interface...%>" onclick="location.href='<%=url("admin/network/iface_add")%>'" /> - </div> -]]) - local _, net local ifaces, netlist = { }, { } @@ -102,8 +49,10 @@ table.sort(netlist, end) s = m:section(TypedSection, "interface", translate("Interface Overview")) +s.template = "admin_network/iface_overview" +s.netlist = netlist -function s.sections(self) +function s.cfgsections(self) local _, net, sl = nil, nil, { } for _, net in ipairs(netlist) do @@ -113,18 +62,8 @@ function s.sections(self) return sl end -function s.render(self) - tpl_networks:render({ - netlist = netlist - }) -end - o = s:option(Value, "__disable__") -function o.cfgvalue(self, sid) - return (m:get(sid, "auto") == "0") and "1" or "0" -end - function o.write(self, sid, value) if value ~= "1" then m:set(sid, "auto", "") @@ -142,8 +81,6 @@ function o.write(self, sid, value) end -m:section(SimpleSection).template = "admin_network/iface_overview_status" - if fs.access("/etc/init.d/dsl_control") then local ok, boarddata = pcall(json.parse, fs.readfile("/etc/board.json")) local modemtype = (ok == true) diff --git a/modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua b/modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua index 8ed39df486..9ab282c3ab 100644 --- a/modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua +++ b/modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua @@ -17,7 +17,9 @@ local acct_port, acct_secret, acct_server, anonymous_identity, ant1, ant2, privkeypwd2, r0_key_lifetime, r0kh, r1_key_holder, r1kh, reassociation_deadline, retry_timeout, ssid, st, tp, wepkey, wepslot, wmm, wpakey, wps, disassoc_low_ack, short_preamble, beacon_int, dtim_period, - wparekey, inactivitypool, maxinactivity, listeninterval + wparekey, inactivitypool, maxinactivity, listeninterval, + dae_client, dae_port, dae_port + arg[1] = arg[1] or "" @@ -755,6 +757,30 @@ acct_secret:depends({mode="ap-wds", encryption="wpa2"}) acct_secret.rmempty = true acct_secret.password = true +dae_client = s:taboption("encryption", Value, "dae_client", translate("DAE-Client")) +dae_client:depends({mode="ap", encryption="wpa"}) +dae_client:depends({mode="ap", encryption="wpa2"}) +dae_client:depends({mode="ap-wds", encryption="wpa"}) +dae_client:depends({mode="ap-wds", encryption="wpa2"}) +dae_client.rmempty = true +dae_client.datatype = "host(0)" + +dae_port = s:taboption("encryption", Value, "dae_port", translate("DAE-Port"), translatef("Default %d", 3799)) +dae_port:depends({mode="ap", encryption="wpa"}) +dae_port:depends({mode="ap", encryption="wpa2"}) +dae_port:depends({mode="ap-wds", encryption="wpa"}) +dae_port:depends({mode="ap-wds", encryption="wpa2"}) +dae_port.rmempty = true +dae_port.datatype = "port" + +dae_secret = s:taboption("encryption", Value, "dae_secret", translate("DAE-Secret")) +dae_secret:depends({mode="ap", encryption="wpa"}) +dae_secret:depends({mode="ap", encryption="wpa2"}) +dae_secret:depends({mode="ap-wds", encryption="wpa"}) +dae_secret:depends({mode="ap-wds", encryption="wpa2"}) +dae_secret.rmempty = true +dae_secret.password = true + wpakey = s:taboption("encryption", Value, "_wpa_key", translate("Key")) wpakey:depends("encryption", "psk") wpakey:depends("encryption", "psk2") @@ -872,12 +898,14 @@ if hwtype == "mac80211" or hwtype == "prism2" then ft_psk_generate_local = s:taboption("encryption", Flag, "ft_psk_generate_local", translate("Generate PMK locally"), - translate("When using a PSK, the PMK can be generated locally without inter AP communications")) + translate("When using a PSK, the PMK can be automatically generated. When enabled, the R0/R1 key options below are not applied. Disable this to use the R0 and R1 key options.")) ft_psk_generate_local:depends({ieee80211r="1"}) + ft_psk_generate_local.default = ft_psk_generate_local.enabled + ft_psk_generate_local.rmempty = false r0_key_lifetime = s:taboption("encryption", Value, "r0_key_lifetime", translate("R0 Key Lifetime"), translate("minutes")) - r0_key_lifetime:depends({ieee80211r="1", ft_psk_generate_local=""}) + r0_key_lifetime:depends({ieee80211r="1"}) r0_key_lifetime.placeholder = "10000" r0_key_lifetime.datatype = "uinteger" r0_key_lifetime.rmempty = true @@ -885,13 +913,13 @@ if hwtype == "mac80211" or hwtype == "prism2" then r1_key_holder = s:taboption("encryption", Value, "r1_key_holder", translate("R1 Key Holder"), translate("6-octet identifier as a hex string - no colons")) - r1_key_holder:depends({ieee80211r="1", ft_psk_generate_local=""}) + r1_key_holder:depends({ieee80211r="1"}) r1_key_holder.placeholder = "00004f577274" r1_key_holder.datatype = "and(hexstring,rangelength(12,12))" r1_key_holder.rmempty = true pmk_r1_push = s:taboption("encryption", Flag, "pmk_r1_push", translate("PMK R1 Push")) - pmk_r1_push:depends({ieee80211r="1", ft_psk_generate_local=""}) + pmk_r1_push:depends({ieee80211r="1"}) pmk_r1_push.placeholder = "0" pmk_r1_push.rmempty = true @@ -901,7 +929,7 @@ if hwtype == "mac80211" or hwtype == "prism2" then "<br />This list is used to map R0KH-ID (NAS Identifier) to a destination " .. "MAC address when requesting PMK-R1 key from the R0KH that the STA " .. "used during the Initial Mobility Domain Association.")) - r0kh:depends({ieee80211r="1", ft_psk_generate_local=""}) + r0kh:depends({ieee80211r="1"}) r0kh.rmempty = true r1kh = s:taboption("encryption", DynamicList, "r1kh", translate("External R1 Key Holder List"), @@ -910,7 +938,7 @@ if hwtype == "mac80211" or hwtype == "prism2" then "<br />This list is used to map R1KH-ID to a destination MAC address " .. "when sending PMK-R1 key from the R0KH. This is also the " .. "list of authorized R1KHs in the MD that can request PMK-R1 keys.")) - r1kh:depends({ieee80211r="1", ft_psk_generate_local=""}) + r1kh:depends({ieee80211r="1"}) r1kh.rmempty = true -- End of 802.11r options diff --git a/modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua b/modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua index 3bffb3502c..54720d6889 100644 --- a/modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua +++ b/modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua @@ -64,68 +64,6 @@ function guess_wifi_hw(dev) end end -local tpl_radio = tpl.Template(nil, [[ - <div class="cbi-section-node"> - <div class="table"> - <!-- physical device --> - <div class="tr cbi-rowstyle-2"> - <div class="td col-2 center middle"> - <span class="ifacebadge"><img src="<%=resource%>/icons/wifi_disabled.png" id="<%=dev:name()%>-iw-upstate" /> <%=dev:name()%></span> - </div> - <div class="td col-7 left middle"> - <big><strong><%=hw%></strong></big><br /> - <span id="<%=dev:name()%>-iw-devinfo"></span> - </div> - <div class="td middle cbi-section-actions"> - <div> - <input type="button" class="cbi-button cbi-button-neutral" title="<%:Restart radio interface%>" value="<%:Restart%>" data-radio="<%=dev:name()%>" onclick="wifi_restart(event)" /> - <input type="button" class="cbi-button cbi-button-action important" title="<%:Find and join network%>" value="<%:Scan%>" onclick="cbi_submit(this, 'device', '<%=dev:name()%>', '<%=url('admin/network/wireless_join')%>')" /> - <input type="button" class="cbi-button cbi-button-add" title="<%:Provide new network%>" value="<%:Add%>" onclick="cbi_submit(this, 'device', '<%=dev:name()%>', '<%=url('admin/network/wireless_add')%>')" /> - </div> - </div> - </div> - <!-- /physical device --> - - <!-- network list --> - <% if #wnets > 0 then %> - <% for i, net in ipairs(wnets) do local disabled = (dev:get("disabled") == "1" or net:get("disabled") == "1") %> - <div class="tr cbi-rowstyle-<%=1 + ((i-1) % 2)%>"> - <div class="td col-2 center middle" id="<%=net:id()%>-iw-signal"> - <span class="ifacebadge" title="<%:Not associated%>"><img src="<%=resource%>/icons/signal-<%= disabled and "none" or "0" %>.png" /> 0%</span> - </div> - <div class="td col-7 left middle" id="<%=net:id()%>-iw-status" data-network="<%=net:id()%>" data-disabled="<%= disabled and "true" or "false" %>"> - <em><%= disabled and translate("Wireless is disabled") or translate("Collecting data...") %></em> - </div> - <div class="td middle cbi-section-actions"> - <div> - <% if disabled then %> - <input name="cbid.wireless.<%=net:name()%>.__disable__" type="hidden" value="1" /> - <input name="cbi.apply" type="submit" class="cbi-button cbi-button-neutral" title="<%:Enable this network%>" value="<%:Enable%>" onclick="this.previousElementSibling.value='0'" /> - <% else %> - <input name="cbid.wireless.<%=net:name()%>.__disable__" type="hidden" value="0" /> - <input name="cbi.apply" type="submit" class="cbi-button cbi-button-neutral" title="<%:Disable this network%>" value="<%:Disable%>" onclick="this.previousElementSibling.value='1'" /> - <% end %> - - <input type="button" class="cbi-button cbi-button-action important" onclick="location.href='<%=net:adminlink()%>'" title="<%:Edit this network%>" value="<%:Edit%>" /> - - <input name="cbid.wireless.<%=net:name()%>.__delete__" type="hidden" value="" /> - <input name="cbi.apply" type="submit" class="cbi-button cbi-button-negative" title="<%:Delete this network%>" value="<%:Remove%>" onclick="wifi_delete(event)" /> - </div> - </div> - </div> - <% end %> - <% else %> - <div class="tr placeholder"> - <div class="td"> - <em><%:No network configured on this device%></em> - </div> - </div> - <% end %> - <!-- /network list --> - </div> - </div> -]]) - m = Map("wireless", translate("Wireless Overview")) m:chain("network") @@ -147,15 +85,10 @@ end local _, dev, net for _, dev in ipairs(ntm:get_wifidevs()) do s = m:section(TypedSection) + s.template = "admin_network/wifi_overview" s.wnets = dev:get_wifinets() - - function s.render(self, sid) - tpl_radio:render({ - hw = guess_wifi_hw(dev), - dev = dev, - wnets = self.wnets - }) - end + s.dev = dev + s.hw = guess_wifi_hw(dev) function s.cfgsections(self) local _, net, sl = nil, nil, { } @@ -208,9 +141,6 @@ for _, dev in ipairs(ntm:get_wifidevs()) do end end -s = m:section(NamedSection, "__script__") -s.template = "admin_network/wifi_overview_status" - s = m:section(NamedSection, "__assoclist__") function s.render(self, sid) diff --git a/modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm b/modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm new file mode 100644 index 0000000000..9d4afd2b27 --- /dev/null +++ b/modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm @@ -0,0 +1,53 @@ +<div class="cbi-section-node"> + <div class="table"> + <% + for i, net in ipairs(self.netlist) do + local z = net[3] + local c = z and z:get_color() or "#EEEEEE" + local t = z and translate("Part of zone %q") % z:name() or translate("No zone assigned") + local disabled = (net[4]:get("auto") == "0") + local dynamic = net[4]:is_dynamic() + %> + <div class="tr cbi-rowstyle-<%=i % 2 + 1%>"> + <div class="td col-3 center middle"> + <div class="ifacebox"> + <div class="ifacebox-head" style="background-color:<%=c%>" title="<%=pcdata(t)%>"> + <strong><%=net[1]:upper()%></strong> + </div> + <div class="ifacebox-body" id="<%=net[1]%>-ifc-devices" data-network="<%=net[1]%>"> + <img src="<%=resource%>/icons/ethernet_disabled.png" style="width:16px; height:16px" /><br /> + <small>?</small> + </div> + </div> + </div> + <div class="td col-5 left middle" id="<%=net[1]%>-ifc-description"> + <em><%:Collecting data...%></em> + </div> + <div class="td cbi-section-actions"> + <div> + <input type="button" class="cbi-button cbi-button-neutral" onclick="iface_reconnect('<%=net[1]%>')" title="<%:Reconnect this interface%>" value="<%:Restart%>"<%=ifattr(disabled or dynamic, "disabled", "disabled")%> /> + + <% if disabled then %> + <input type="hidden" name="cbid.network.<%=net[1]%>.__disable__" value="1" /> + <input type="submit" name="cbi.apply" class="cbi-button cbi-button-neutral" onclick="this.previousElementSibling.value='0'" title="<%:Reconnect this interface%>" value="<%:Connect%>"<%=ifattr(dynamic, "disabled", "disabled")%> /> + <% else %> + <input type="hidden" name="cbid.network.<%=net[1]%>.__disable__" value="0" /> + <input type="submit" name="cbi.apply" class="cbi-button cbi-button-neutral" onclick="this.previousElementSibling.value='1'" title="<%:Shutdown this interface%>" value="<%:Stop%>"<%=ifattr(dynamic, "disabled", "disabled")%> /> + <% end %> + + <input type="button" class="cbi-button cbi-button-action important" onclick="location.href='<%=url("admin/network/network", net[1])%>'" title="<%:Edit this interface%>" value="<%:Edit%>" id="<%=net[1]%>-ifc-edit"<%=ifattr(dynamic, "disabled", "disabled")%> /> + + <input type="hidden" name="cbid.network.<%=net[1]%>.__delete__" value="" /> + <input type="submit" name="cbi.apply" class="cbi-button cbi-button-negative" onclick="iface_delete(event)" value="<%:Delete%>"<%=ifattr(dynamic, "disabled", "disabled")%> /> + </div> + </div> + </div> + <% end %> + </div> +</div> + +<div class="cbi-section-create"> + <input type="button" class="cbi-button cbi-button-add" value="<%:Add new interface...%>" onclick="location.href='<%=url("admin/network/iface_add")%>'" /> +</div> + +<script type="text/javascript" src="<%=resource%>/view/network/network.js"></script> diff --git a/modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm b/modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm deleted file mode 100644 index 7427154a04..0000000000 --- a/modules/luci-mod-network/luasrc/view/admin_network/iface_overview_status.htm +++ /dev/null @@ -1,183 +0,0 @@ -<%# - Copyright 2010-2018 Jo-Philipp Wich <jo@mein.io> - Licensed to the public under the Apache License 2.0. --%> - -<script type="text/javascript">//<![CDATA[ - function iface_reconnect(id) { - XHR.halt(); - - var d = document.getElementById(id + '-ifc-description'); - if (d) d.innerHTML = '<em><%:Interface is reconnecting...%></em>'; - - (new XHR()).post('<%=url('admin/network/iface_reconnect')%>/' + id, - { token: '<%=token%>' }, XHR.run); - } - - function iface_delete(ev) { - if (!confirm(<%=luci.http.write_json(translate('Really delete this interface? The deletion cannot be undone! You might lose access to this device if you are connected via this interface'))%>)) { - ev.preventDefault(); - return false; - } - - ev.target.previousElementSibling.value = '1'; - return true; - } - - var networks = []; - - document.querySelectorAll('[data-network]').forEach(function(n) { - networks.push(n.getAttribute('data-network')); - }); - - function render_iface(ifc) { - return E('span', { class: 'cbi-tooltip-container' }, [ - E('img', { 'class' : 'middle', 'src': '<%=resource%>/icons/%s%s.png'.format( - ifc.is_alias ? 'alias' : ifc.type, - ifc.is_up ? '' : '_disabled') }), - E('span', { 'class': 'cbi-tooltip ifacebadge large' }, [ - E('img', { 'src': '<%=resource%>/icons/%s%s.png'.format( - ifc.type, ifc.is_up ? '' : '_disabled') }), - E('span', { 'class': 'left' }, [ - E('strong', '<%:Type%>: '), ifc.typename, E('br'), - E('strong', '<%:Device%>: '), ifc.ifname, E('br'), - E('strong', '<%:Connected%>: '), ifc.is_up ? '<%:yes%>' : '<%:no%>', E('br'), - ifc.macaddr ? E('strong', '<%:MAC%>: ') : '', - ifc.macaddr ? ifc.macaddr : '', - ifc.macaddr ? E('br') : '', - E('strong', '<%:RX%>: '), '%.2mB (%d <%:Pkts.%>)'.format(ifc.rx_bytes, ifc.rx_packets), E('br'), - E('strong', '<%:TX%>: '), '%.2mB (%d <%:Pkts.%>)'.format(ifc.tx_bytes, ifc.tx_packets) - ]) - ]) - ]); - } - - XHR.poll(5, '<%=url('admin/network/iface_status')%>/' + networks.join(','), null, - function(x, ifcs) - { - if (ifcs) - { - for (var idx = 0; idx < ifcs.length; idx++) - { - var ifc = ifcs[idx]; - var html = ''; - - var s = document.getElementById(ifc.id + '-ifc-devices'); - if (s) - { - while (s.firstChild) - s.removeChild(s.firstChild); - - s.appendChild(render_iface(ifc)); - - if (ifc.subdevices && ifc.subdevices.length) - { - var sifs = [ ' (' ]; - - for (var j = 0; j < ifc.subdevices.length; j++) - sifs.push(render_iface(ifc.subdevices[j])); - - sifs.push(')'); - - s.appendChild(E('span', {}, sifs)); - } - - s.appendChild(E('br')); - s.appendChild(E('small', {}, ifc.is_alias ? '<%:Alias of "%s"%>'.format(ifc.is_alias) : ifc.name)); - } - - var d = document.getElementById(ifc.id + '-ifc-description'); - if (d && ifc.proto && ifc.ifname) - { - var desc = null; - - if (ifc.is_dynamic) - desc = '<%:Virtual dynamic interface%>'; - else if (ifc.is_alias) - desc = '<%:Alias Interface%>'; - - if (ifc.desc) - desc = desc ? '%s (%s)'.format(desc, ifc.desc) : ifc.desc; - - html += String.format('<strong><%:Protocol%>:</strong> %h<br />', desc || '?'); - - if (ifc.is_up) - { - html += String.format('<strong><%:Uptime%>:</strong> %t<br />', ifc.uptime); - } - - - if (!ifc.is_dynamic && !ifc.is_alias) - { - if (ifc.macaddr) - html += String.format('<strong><%:MAC%>:</strong> %s<br />', ifc.macaddr); - - html += String.format( - '<strong><%:RX%>:</strong> %.2mB (%d <%:Pkts.%>)<br />' + - '<strong><%:TX%>:</strong> %.2mB (%d <%:Pkts.%>)<br />', - ifc.rx_bytes, ifc.rx_packets, - ifc.tx_bytes, ifc.tx_packets - ); - } - - if (ifc.ipaddrs && ifc.ipaddrs.length) - { - for (var i = 0; i < ifc.ipaddrs.length; i++) - html += String.format( - '<strong><%:IPv4%>:</strong> %s<br />', - ifc.ipaddrs[i] - ); - } - - if (ifc.ip6addrs && ifc.ip6addrs.length) - { - for (var i = 0; i < ifc.ip6addrs.length; i++) - html += String.format( - '<strong><%:IPv6%>:</strong> %s<br />', - ifc.ip6addrs[i] - ); - } - - if (ifc.ip6prefix) - html += String.format('<strong><%:IPv6-PD%>:</strong> %s<br />', ifc.ip6prefix); - - if (ifc.errors) - { - for (var i = 0; i < ifc.errors.length; i++) - html += String.format( - '<em class="error"><strong><%:Error%>:</strong> %h</em><br />', - ifc.errors[i] - ); - } - - d.innerHTML = html; - } - else if (d && !ifc.proto) - { - var e = document.getElementById(ifc.id + '-ifc-edit'); - if (e) - e.disabled = true; - - d.innerHTML = String.format( - '<em><%:Unsupported protocol type.%></em><br />' + - '<a href="%h"><%:Install protocol extensions...%></a>', - '<%=url("admin/system/packages")%>?query=luci-proto&display=available' - ); - } - else if (d && !ifc.ifname) - { - d.innerHTML = String.format( - '<em><%:Network without interfaces.%></em><br />' + - '<a href="<%=url("admin/network/network/%s")%>?tab.network.%s=physical"><%:Assign interfaces...%></a>', - ifc.name, ifc.name - ); - } - else if (d) - { - d.innerHTML = '<em><%:Interface not present or not connected yet.%></em>'; - } - } - } - } - ); -//]]></script> diff --git a/modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm b/modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm index 34be35dd20..a75b2755cd 100644 --- a/modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm +++ b/modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm @@ -1,66 +1,12 @@ <%+cbi/valueheader%> -<script type="text/javascript">//<![CDATA[ - XHR.poll(5, '<%=url('admin/network/iface_status', self.network)%>', null, - function(x, ifc) - { - if (ifc && (ifc = ifc[0])) - { - var s = document.getElementById('<%=self.option%>-ifc-status'), - img = s.querySelector('img'), - info = s.querySelector('span'), - html = '<strong><%:Device%>:</strong> %h<br />'.format(ifc.ifname); - - if (ifc.ifname) - { - if (ifc.is_up) - html += String.format('<strong><%:Uptime%>:</strong> %t<br />', ifc.uptime); - - if (ifc.macaddr) - html += String.format('<strong><%:MAC%>:</strong> %s<br />', ifc.macaddr); - - html += String.format( - '<strong><%:RX%></strong>: %.2mB (%d <%:Pkts.%>)<br />' + - '<strong><%:TX%></strong>: %.2mB (%d <%:Pkts.%>)<br />', - ifc.rx_bytes, ifc.rx_packets, - ifc.tx_bytes, ifc.tx_packets - ); - - if (ifc.ipaddrs && ifc.ipaddrs.length) - for (var i = 0; i < ifc.ipaddrs.length; i++) - html += String.format( - '<strong><%:IPv4%>:</strong> %s<br />', - ifc.ipaddrs[i] - ); - - if (ifc.ip6addrs && ifc.ip6addrs.length) - for (var i = 0; i < ifc.ip6addrs.length; i++) - html += String.format( - '<strong><%:IPv6%>:</strong> %s<br />', - ifc.ip6addrs[i] - ); - - if (ifc.ip6prefix) - html += String.format('<strong><%:IPv6-PD%>:</strong> %s<br />', ifc.ip6prefix); - - info.innerHTML = html; - } - else - { - info.innerHTML = '<em><%:Interface not present or not connected yet.%></em>'; - } - - img.src = '<%=resource%>/icons/%s%s.png'.format(ifc.type, ifc.is_up ? '' : '_disabled'); - } - } - ); -//]]></script> - -<span class="ifacebadge large" id="<%=self.option%>-ifc-status"> +<span class="ifacebadge large"<%=attr("data-iface-status", self.network)%>> <img src="<%=resource%>/icons/ethernet_disabled.png" /> <span> - <em><%:Collecting data...%></em> + <em class="spinning"><%:Collecting data...%></em> </span> </span> +<script type="text/javascript" src="<%=resource%>/view/network/iface_status.js"></script> + <%+cbi/valuefooter%> diff --git a/modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm b/modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm index 987123642f..5a61ba099c 100644 --- a/modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm +++ b/modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm @@ -19,185 +19,18 @@ <%+header%> -<script type="text/javascript">//<![CDATA[ - var xhr = new XHR(), - poll = null; - - function format_signal(bss) { - var qval = bss.quality || 0, - qmax = bss.quality_max || 100, - scale = 100 / qmax * qval, - range = 'none'; - - if (!bss.bssid || bss.bssid == '00:00:00:00:00:00') - range = 'none'; - else if (scale < 15) - range = '0'; - else if (scale < 35) - range = '0-25'; - else if (scale < 55) - range = '25-50'; - else if (scale < 75) - range = '50-75'; - else - range = '75-100'; - - return E('span', { - class: 'ifacebadge', - title: '<%:Signal%>: %d<%:dB%> / <%:Quality%>: %d/%d'.format(bss.signal, qval, qmax) - }, [ - E('img', { src: '<%=resource%>/icons/signal-%s.png'.format(range) }), - ' %d%%'.format(scale) - ]); - } - - function format_encryption(bss) { - var enc = bss.encryption || { } - - if (enc.wep === true) - return 'WEP'; - else if (enc.wpa > 0) - return E('abbr', { - title: 'Pairwise: %h / Group: %h'.format( - enc.pair_ciphers.join(', '), - enc.group_ciphers.join(', ')) - }, - '%h - %h'.format( - (enc.wpa === 3) ? '<%:mixed WPA/WPA2%>' : (enc.wpa === 2 ? 'WPA2' : 'WPA'), - enc.auth_suites.join(', '))); - else if (enc.enabled) - return '<em><%:unknown%></em>'; - else - return '<em><%:open%></em>'; - } - - function format_actions(bss) { - var enc = bss.encryption || { }, - input = [ - E('input', { type: 'submit', class: 'cbi-button cbi-button-action important', value: '<%:Join Network%>' }), - E('input', { type: 'hidden', name: 'token', value: '<%=token%>' }), - E('input', { type: 'hidden', name: 'device', value: '<%=dev%>' }), - E('input', { type: 'hidden', name: 'join', value: bss.ssid }), - E('input', { type: 'hidden', name: 'mode', value: bss.mode }), - E('input', { type: 'hidden', name: 'bssid', value: bss.bssid }), - E('input', { type: 'hidden', name: 'channel', value: bss.channel }), - E('input', { type: 'hidden', name: 'clbridge', value: <%=iw.type == "wl" and 1 or 0%> }), - E('input', { type: 'hidden', name: 'wep', value: enc.wep ? 1 : 0 }) - ]; - - if (enc.wpa) { - input.push(E('input', { type: 'hidden', name: 'wpa_version', value: enc.wpa })); - - enc.auth_suites.forEach(function(s) { - input.push(E('input', { type: 'hidden', name: 'wpa_suites', value: s })); - }); - - enc.group_ciphers.forEach(function(s) { - input.push(E('input', { type: 'hidden', name: 'wpa_group', value: s })); - }); - - enc.pair_ciphers.forEach(function(s) { - input.push(E('input', { type: 'hidden', name: 'wpa_pairwise', value: s })); - }); - } - - return E('form', { - class: 'inline', - method: 'post', - action: '<%=url("admin/network/wireless_join")%>' - }, input); - } - - function fade(bss, content) { - if (bss.stale) - return E('span', { style: 'opacity:0.5' }, content); - else - return content; - } - - function flush() { - XHR.stop(poll); - XHR.halt(); - - scan(); - } - - function scan() { - var tbl = document.getElementById('scan_results'); - - cbi_update_table(tbl, [], '<em><img src="<%=resource%>/icons/loading.gif" class="middle" /> <%:Starting wireless scan...%></em>'); - - xhr.post('<%=url("admin/network/wireless_scan_trigger", dev)%>', { token: '<%=token%>' }, - function(s) { - if (s.status !== 200) { - cbi_update_table(tbl, [], '<em><%:Scan request failed%></em>'); - return; - } - - var count = 0; - - poll = XHR.poll(3, '<%=url("admin/network/wireless_scan_results", dev)%>', null, - function(s, results) { - if (Array.isArray(results)) { - var bss = []; - - results.sort(function(a, b) { - var diff = (b.quality - a.quality) || (a.channel - b.channel); - - if (diff) - return diff; - - if (a.ssid < b.ssid) - return -1; - else if (a.ssid > b.ssid) - return 1; - - if (a.bssid < b.bssid) - return -1; - else if (a.bssid > b.bssid) - return 1; - }).forEach(function(res) { - bss.push([ - fade(res, format_signal(res)), - fade(res, res.ssid ? '%h'.format(res.ssid) : E('em', {}, '<%:hidden%>')), - fade(res, res.channel), - fade(res, res.mode), - fade(res, res.bssid), - fade(res, format_encryption(res)), - format_actions(res) - ]); - }); - - cbi_update_table(tbl, bss, '<em><img src="<%=resource%>/icons/loading.gif" class="middle" /> <%:No scan results available yet...%>'); - } - - if (count++ >= 3) { - count = 0; - xhr.post('<%=url("admin/network/wireless_scan_trigger", dev, "1")%>', - { token: '<%=token%>' }, function() { }); - } - }); - - XHR.run(); - }); - } - - document.addEventListener('DOMContentLoaded', scan); - -//]]></script> - <h2 name="content"><%:Join Network: Wireless Scan%></h2> <div class="cbi-map"> <div class="cbi-section"> - <div class="table" id="scan_results"> + <div class="table"<%=attr("data-wifi-scan", dev) .. attr("data-wifi-type", iw.type)%>> <div class="tr table-titles"> - <div class="th col-1 middle center"><%:Signal%></div> - <div class="th col-5 middle left"><%:SSID%></div> - <div class="th col-2 middle center"><%:Channel%></div> - <div class="th col-2 middle left"><%:Mode%></div> - <div class="th col-3 middle left"><%:BSSID%></div> - <div class="th col-2 middle left"><%:Encryption%></div> + <div class="th col-2 middle center"><%:Signal%></div> + <div class="th col-4 middle left"><%:SSID%></div> + <div class="th col-2 middle center hide-xs"><%:Channel%></div> + <div class="th col-2 middle left hide-xs"><%:Mode%></div> + <div class="th col-3 middle left hide-xs"><%:BSSID%></div> + <div class="th col-3 middle left"><%:Encryption%></div> <div class="th cbi-section-actions"> </div> </div> @@ -221,4 +54,6 @@ </form> </div> +<script type="text/javascript" src="<%=resource%>/view/network/wifi_join.js"></script> + <%+footer%> diff --git a/modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm b/modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm new file mode 100644 index 0000000000..89bb404fd8 --- /dev/null +++ b/modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm @@ -0,0 +1,61 @@ +<div class="cbi-section-node"> + <div class="table"> + <!-- physical device --> + <div class="tr cbi-rowstyle-2"> + <div class="td col-2 center middle"> + <span class="ifacebadge"><img src="<%=resource%>/icons/wifi_disabled.png" id="<%=self.dev:name()%>-iw-upstate" /> <%=self.dev:name()%></span> + </div> + <div class="td col-7 left middle"> + <big><strong><%=self.hw%></strong></big><br /> + <span id="<%=self.dev:name()%>-iw-devinfo"></span> + </div> + <div class="td middle cbi-section-actions"> + <div> + <input type="button" class="cbi-button cbi-button-neutral" title="<%:Restart radio interface%>" value="<%:Restart%>" data-radio="<%=self.dev:name()%>" onclick="wifi_restart(event)" /> + <input type="button" class="cbi-button cbi-button-action important" title="<%:Find and join network%>" value="<%:Scan%>" onclick="cbi_submit(this, 'device', '<%=self.dev:name()%>', '<%=url('admin/network/wireless_join')%>')" /> + <input type="button" class="cbi-button cbi-button-add" title="<%:Provide new network%>" value="<%:Add%>" onclick="cbi_submit(this, 'device', '<%=self.dev:name()%>', '<%=url('admin/network/wireless_add')%>')" /> + </div> + </div> + </div> + <!-- /physical device --> + + <!-- network list --> + <% if #self.wnets > 0 then %> + <% for i, net in ipairs(self.wnets) do local disabled = (self.dev:get("disabled") == "1" or net:get("disabled") == "1") %> + <div class="tr cbi-rowstyle-<%=1 + ((i-1) % 2)%>"> + <div class="td col-2 center middle" id="<%=net:id()%>-iw-signal"> + <span class="ifacebadge" title="<%:Not associated%>"><img src="<%=resource%>/icons/signal-<%= disabled and "none" or "0" %>.png" /> 0%</span> + </div> + <div class="td col-7 left middle" id="<%=net:id()%>-iw-status" data-network="<%=net:id()%>" data-disabled="<%= disabled and "true" or "false" %>"> + <em><%= disabled and translate("Wireless is disabled") or translate("Collecting data...") %></em> + </div> + <div class="td middle cbi-section-actions"> + <div> + <% if disabled then %> + <input name="cbid.wireless.<%=net:name()%>.__disable__" type="hidden" value="1" /> + <input name="cbi.apply" type="submit" class="cbi-button cbi-button-neutral" title="<%:Enable this network%>" value="<%:Enable%>" onclick="this.previousElementSibling.value='0'" /> + <% else %> + <input name="cbid.wireless.<%=net:name()%>.__disable__" type="hidden" value="0" /> + <input name="cbi.apply" type="submit" class="cbi-button cbi-button-neutral" title="<%:Disable this network%>" value="<%:Disable%>" onclick="this.previousElementSibling.value='1'" /> + <% end %> + + <input type="button" class="cbi-button cbi-button-action important" onclick="location.href='<%=net:adminlink()%>'" title="<%:Edit this network%>" value="<%:Edit%>" /> + + <input name="cbid.wireless.<%=net:name()%>.__delete__" type="hidden" value="" /> + <input name="cbi.apply" type="submit" class="cbi-button cbi-button-negative" title="<%:Delete this network%>" value="<%:Remove%>" onclick="wifi_delete(event)" /> + </div> + </div> + </div> + <% end %> + <% else %> + <div class="tr placeholder"> + <div class="td"> + <em><%:No network configured on this device%></em> + </div> + </div> + <% end %> + <!-- /network list --> + </div> +</div> + +<script type="text/javascript" src="<%=resource%>/view/network/wireless.js"></script> diff --git a/modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm b/modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm deleted file mode 100644 index 9730bc2c92..0000000000 --- a/modules/luci-mod-network/luasrc/view/admin_network/wifi_overview_status.htm +++ /dev/null @@ -1,127 +0,0 @@ -<%# - Copyright 2008-2009 Steven Barth <steven@midlink.org> - Copyright 2008-2018 Jo-Philipp Wich <jo@mein.io> - Licensed to the public under the Apache License 2.0. --%> - -<script type="text/javascript">//<![CDATA[ - function wifi_delete(ev) { - if (!confirm(<%=luci.http.write_json(translate('Really delete this wireless network? The deletion cannot be undone! You might lose access to this device if you are connected via this network.'))%>)) { - ev.preventDefault(); - return false; - } - - ev.target.previousElementSibling.value = '1'; - return true; - } - - function wifi_restart(ev) { - XHR.halt(); - - findParent(ev.target, '.table').querySelectorAll('[data-disabled="false"]').forEach(function(s) { - s.innerHTML = '<em><%:Wireless is restarting...%></em>'; - }); - - (new XHR()).post('<%=url('admin/network/wireless_reconnect')%>/' + ev.target.getAttribute('data-radio'), - { token: '<%=token%>' }, XHR.run); - } - - var networks = [ ]; - - document.querySelectorAll('[data-network]').forEach(function(n) { - networks.push(n.getAttribute('data-network')); - }); - - XHR.poll(5, '<%=url('admin/network/wireless_status')%>/' + networks.join(','), null, - function(x, st) - { - if (st) - { - var rowstyle = 1; - var radiostate = { }; - - st.forEach(function(s) { - var r = radiostate[s.device.device] || (radiostate[s.device.device] = {}); - - s.is_assoc = (s.bssid && s.bssid != '00:00:00:00:00:00' && s.channel && s.mode != 'Unknown' && !s.disabled); - - r.up = r.up || s.is_assoc; - r.channel = r.channel || s.channel; - r.bitrate = r.bitrate || s.bitrate; - r.frequency = r.frequency || s.frequency; - }); - - for( var i = 0; i < st.length; i++ ) - { - var iw = st[i], - sig = document.getElementById(iw.id + '-iw-signal'), - info = document.getElementById(iw.id + '-iw-status'), - disabled = (info && info.getAttribute('data-disabled') === 'true'); - - var p = iw.quality; - var q = disabled ? -1 : p; - - var icon; - if (q < 0) - icon = "<%=resource%>/icons/signal-none.png"; - else if (q == 0) - icon = "<%=resource%>/icons/signal-0.png"; - else if (q < 25) - icon = "<%=resource%>/icons/signal-0-25.png"; - else if (q < 50) - icon = "<%=resource%>/icons/signal-25-50.png"; - else if (q < 75) - icon = "<%=resource%>/icons/signal-50-75.png"; - else - icon = "<%=resource%>/icons/signal-75-100.png"; - - - if (sig) - sig.innerHTML = String.format( - '<span class="ifacebadge" title="<%:Signal%>: %d <%:dBm%> / <%:Noise%>: %d <%:dBm%>"><img src="%s" /> %d%%</span>', - iw.signal, iw.noise, icon, p - ); - - if (info) - { - if (iw.is_assoc) - info.innerHTML = String.format( - '<strong><%:SSID%>:</strong> %h | ' + - '<strong><%:Mode%>:</strong> %s<br />' + - '<strong><%:BSSID%>:</strong> %s | ' + - '<strong><%:Encryption%>:</strong> %s', - iw.ssid, iw.mode, iw.bssid, - iw.encryption ? iw.encryption : '<%:None%>' - ); - else - info.innerHTML = String.format( - '<strong><%:SSID%>:</strong> %h | ' + - '<strong><%:Mode%>:</strong> %s<br />' + - '<em>%s</em>', - iw.ssid || '?', iw.mode, - disabled ? '<em><%:Wireless is disabled%></em>' - : '<em><%:Wireless is not associated%></em>' - ); - } - } - - for (var dev in radiostate) - { - var img = document.getElementById(dev + '-iw-upstate'); - if (img) - img.src = '<%=resource%>/icons/wifi' + (radiostate[dev].up ? '' : '_disabled') + '.png'; - - var stat = document.getElementById(dev + '-iw-devinfo'); - if (stat) - stat.innerHTML = String.format( - '<strong><%:Channel%>:</strong> %s (%s <%:GHz%>) | ' + - '<strong><%:Bitrate%>:</strong> %s <%:Mbit/s%>', - radiostate[dev].channel ? radiostate[dev].channel : '?', - radiostate[dev].frequency ? radiostate[dev].frequency : '?', - radiostate[dev].bitrate ? radiostate[dev].bitrate : '?' - ); - } - } - } - ); -//]]></script> diff --git a/modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm b/modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm index bfad3d0804..93ae2f51fb 100644 --- a/modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm +++ b/modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm @@ -1,77 +1,14 @@ <%+cbi/valueheader%> -<script type="text/javascript">//<![CDATA[ - XHR.poll(5, '<%=url('admin/network/wireless_status', self.ifname)%>', null, - function(x, iw) - { - if (iw && (iw = iw[0])) - { - var is_assoc = (iw.bssid && iw.bssid != '00:00:00:00:00:00' && iw.channel && !iw.disabled); - var p = iw.quality; - var q = iw.disabled ? -1 : p; - - var icon; - if (q < 0) - icon = "<%=resource%>/icons/signal-none.png"; - else if (q == 0) - icon = "<%=resource%>/icons/signal-0.png"; - else if (q < 25) - icon = "<%=resource%>/icons/signal-0-25.png"; - else if (q < 50) - icon = "<%=resource%>/icons/signal-25-50.png"; - else if (q < 75) - icon = "<%=resource%>/icons/signal-50-75.png"; - else - icon = "<%=resource%>/icons/signal-75-100.png"; - - var s = document.getElementById('<%=self.option%>-iw-status'), - small = s.querySelector('small'), - info = s.querySelector('span'); - - small.innerHTML = info.innerHTML = String.format( - '<img src="%s" title="<%:Signal%>: %d <%:dBm%> / <%:Noise%>: %d <%:dBm%>" /> <br />%d%% ', - icon, iw.signal, iw.noise, p - ); - - if (is_assoc) - info.innerHTML = String.format( - '<strong><%:Mode%>:</strong> %s | ' + - '<strong><%:SSID%>:</strong> %h<br />' + - '<strong><%:BSSID%>:</strong> %s<br />' + - '<strong><%:Encryption%>:</strong> %s<br />' + - '<strong><%:Channel%>:</strong> %d (%.3f <%:GHz%>)<br />' + - '<strong><%:Tx-Power%>:</strong> %d <%:dBm%><br />' + - '<strong><%:Signal%>:</strong> %d <%:dBm%> | ' + - '<strong><%:Noise%>:</strong> %d <%:dBm%><br />' + - '<strong><%:Bitrate%>:</strong> %.1f <%:Mbit/s%> | ' + - '<strong><%:Country%>:</strong> %s', - iw.mode, iw.ssid, iw.bssid, - iw.encryption ? iw.encryption : '<%:None%>', - iw.channel, iw.frequency ? iw.frequency : 0, - iw.txpower, iw.signal, iw.noise, - iw.bitrate ? iw.bitrate : 0, iw.country - ); - else - info.innerHTML = String.format( - '<strong><%:SSID%>:</strong> %h | ' + - '<strong><%:Mode%>:</strong> %s<br />' + - '<em>%s</em>', - iw.ssid || '?', iw.mode, - iw.disabled ? '<em><%:Wireless is disabled%></em>' - : '<em><%:Wireless is not associated%></em>' - ); - } - } - ); -//]]></script> - -<span class="ifacebadge large" id="<%=self.option%>-iw-status"> +<span class="ifacebadge large"<%=attr("data-wifi-status", self.ifname)%>> <small> <img src="<%=resource%>/icons/signal-none.png" title="<%:Not associated%>" />  </small> <span> - <em><%:Collecting data...%></em> + <em class="spinning"><%:Collecting data...%></em> </span> </span> +<script type="text/javascript" src="<%=resource%>/view/network/wifi_status.js"></script> + <%+cbi/valuefooter%> diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js new file mode 100644 index 0000000000..c2aa3a9b0d --- /dev/null +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js @@ -0,0 +1,215 @@ +function progressbar(q, v, m) +{ + var pg = document.querySelector(q), + vn = parseInt(v) || 0, + mn = parseInt(m) || 100, + pc = Math.floor((100 / mn) * vn); + + if (pg) { + pg.firstElementChild.style.width = pc + '%'; + pg.setAttribute('title', '%s / %s (%d%%)'.format(v, m, pc)); + } +} + +function renderBox(title, active, childs) { + childs = childs || []; + childs.unshift(L.itemlist(E('span'), [].slice.call(arguments, 3))); + + return E('div', { class: 'ifacebox' }, [ + E('div', { class: 'ifacebox-head center ' + (active ? 'active' : '') }, + E('strong', title)), + E('div', { class: 'ifacebox-body left' }, childs) + ]); +} + +function renderBadge(icon, title) { + return E('span', { class: 'ifacebadge' }, [ + E('img', { src: icon, title: title || '' }), + L.itemlist(E('span'), [].slice.call(arguments, 2)) + ]); +} + +L.poll(5, L.location(), { status: 1 }, + function(x, info) + { + var us = document.getElementById('upstream_status_table'); + + while (us.lastElementChild) + us.removeChild(us.lastElementChild); + + var wan_list = info.wan || []; + + for (var i = 0; i < wan_list.length; i++) { + var ifc = wan_list[i]; + + us.appendChild(renderBox( + _('IPv4 Upstream'), + (ifc.ifname && ifc.proto != 'none'), + [ E('div', {}, renderBadge( + L.resource('icons/%s.png').format((ifc && ifc.type) ? ifc.type : 'ethernet_disabled'), null, + _('Device'), ifc ? (ifc.name || ifc.ifname || '-') : '-', + _('MAC-Address'), (ifc && ifc.ether) ? ifc.mac : null)) ], + _('Protocol'), ifc.i18n || E('em', _('Not connected')), + _('Address'), (ifc.ipaddr) ? ifc.ipaddr : '0.0.0.0', + _('Netmask'), (ifc.netmask && ifc.netmask != ifc.ipaddr) ? ifc.netmask : '255.255.255.255', + _('Gateway'), (ifc.gwaddr) ? ifc.gwaddr : '0.0.0.0', + _('DNS') + ' 1', (ifc.dns) ? ifc.dns[0] : null, + _('DNS') + ' 2', (ifc.dns) ? ifc.dns[1] : null, + _('DNS') + ' 3', (ifc.dns) ? ifc.dns[2] : null, + _('DNS') + ' 4', (ifc.dns) ? ifc.dns[3] : null, + _('DNS') + ' 5', (ifc.dns) ? ifc.dns[4] : null, + _('Expires'), (ifc.expires > -1) ? '%t'.format(ifc.expires) : null, + _('Connected'), (ifc.uptime > 0) ? '%t'.format(ifc.uptime) : null)); + } + + var wan6_list = info.wan6 || []; + + for (var i = 0; i < wan6_list.length; i++) { + var ifc6 = wan6_list[i]; + + us.appendChild(renderBox( + _('IPv6 Upstream'), + (ifc6.ifname && ifc6.proto != 'none'), + [ E('div', {}, renderBadge( + L.resource('icons/%s.png').format(ifc6.type || 'ethernet_disabled'), null, + _('Device'), ifc6 ? (ifc6.name || ifc6.ifname || '-') : '-', + _('MAC-Address'), (ifc6 && ifc6.ether) ? ifc6.mac : null)) ], + _('Protocol'), ifc6.i18n ? (ifc6.i18n + (ifc6.proto === 'dhcp' && ifc6.ip6prefix ? '-PD' : '')) : E('em', _('Not connected')), + _('Prefix Delegated'), ifc6.ip6prefix, + _('Address'), (ifc6.ip6prefix) ? (ifc6.ip6addr || null) : (ifc6.ip6addr || '::'), + _('Gateway'), (ifc6.gw6addr) ? ifc6.gw6addr : '::', + _('DNS') + ' 1', (ifc6.dns) ? ifc6.dns[0] : null, + _('DNS') + ' 2', (ifc6.dns) ? ifc6.dns[1] : null, + _('DNS') + ' 3', (ifc6.dns) ? ifc6.dns[2] : null, + _('DNS') + ' 4', (ifc6.dns) ? ifc6.dns[3] : null, + _('DNS') + ' 5', (ifc6.dns) ? ifc6.dns[4] : null, + _('Connected'), (ifc6.uptime > 0) ? '%t'.format(ifc6.uptime) : null)); + } + + var ds = document.getElementById('dsl_status_table'); + if (ds) { + while (ds.lastElementChild) + ds.removeChild(ds.lastElementChild); + + ds.appendChild(renderBox( + _('DSL Status'), + (info.dsl.line_state === 'UP'), [ ], + _('Line State'), '%s [0x%x]'.format(info.dsl.line_state, info.dsl.line_state_detail), + _('Line Mode'), info.dsl.line_mode_s || '-', + _('Line Uptime'), info.dsl.line_uptime_s || '-', + _('Annex'), info.dsl.annex_s || '-', + _('Profile'), info.dsl.profile_s || '-', + _('Data Rate'), '%s/s / %s/s'.format(info.dsl.data_rate_down_s, info.dsl.data_rate_up_s), + _('Max. Attainable Data Rate (ATTNDR)'), '%s/s / %s/s'.format(info.dsl.max_data_rate_down_s, info.dsl.max_data_rate_up_s), + _('Latency'), '%s / %s'.format(info.dsl.latency_num_down, info.dsl.latency_num_up), + _('Line Attenuation (LATN)'), '%.1f dB / %.1f dB'.format(info.dsl.line_attenuation_down, info.dsl.line_attenuation_up), + _('Signal Attenuation (SATN)'), '%.1f dB / %.1f dB'.format(info.dsl.signal_attenuation_down, info.dsl.signal_attenuation_up), + _('Noise Margin (SNR)'), '%.1f dB / %.1f dB'.format(info.dsl.noise_margin_down, info.dsl.noise_margin_up), + _('Aggregate Transmit Power(ACTATP)'), '%.1f dB / %.1f dB'.format(info.dsl.actatp_down, info.dsl.actatp_up), + _('Forward Error Correction Seconds (FECS)'), '%d / %d'.format(info.dsl.errors_fec_near, info.dsl.errors_fec_far), + _('Errored seconds (ES)'), '%d / %d'.format(info.dsl.errors_es_near, info.dsl.errors_es_far), + _('Severely Errored Seconds (SES)'), '%d / %d'.format(info.dsl.errors_ses_near, info.dsl.errors_ses_far), + _('Loss of Signal Seconds (LOSS)'), '%d / %d'.format(info.dsl.errors_loss_near, info.dsl.errors_loss_far), + _('Unavailable Seconds (UAS)'), '%d / %d'.format(info.dsl.errors_uas_near, info.dsl.errors_uas_far), + _('Header Error Code Errors (HEC)'), '%d / %d'.format(info.dsl.errors_hec_near, info.dsl.errors_hec_far), + _('Non Pre-emtive CRC errors (CRC_P)'), '%d / %d'.format(info.dsl.errors_crc_p_near, info.dsl.errors_crc_p_far), + _('Pre-emtive CRC errors (CRCP_P)'), '%d / %d'.format(info.dsl.errors_crcp_p_near, info.dsl.errors_crcp_p_far), + _('ATU-C System Vendor ID'), info.dsl.atuc_vendor_id, + _('Power Management Mode'), info.dsl.power_mode_s)); + } + + var ws = document.getElementById('wifi_status_table'); + if (ws) + { + while (ws.lastElementChild) + ws.removeChild(ws.lastElementChild); + + for (var didx = 0; didx < info.wifinets.length; didx++) + { + var dev = info.wifinets[didx]; + var net0 = (dev.networks && dev.networks[0]) ? dev.networks[0] : {}; + var vifs = []; + + for (var nidx = 0; nidx < dev.networks.length; nidx++) + { + var net = dev.networks[nidx]; + var is_assoc = (net.bssid != '00:00:00:00:00:00' && net.channel && !net.disabled); + + var icon; + if (net.disabled) + icon = L.resource('icons/signal-none.png'); + else if (net.quality <= 0) + icon = L.resource('icons/signal-0.png'); + else if (net.quality < 25) + icon = L.resource('icons/signal-0-25.png'); + else if (net.quality < 50) + icon = L.resource('icons/signal-25-50.png'); + else if (net.quality < 75) + icon = L.resource('icons/signal-50-75.png'); + else + icon = L.resource('icons/signal-75-100.png'); + + vifs.push(renderBadge( + icon, + '%s: %d dBm / %s: %d%%'.format(_('Signal'), net.signal, _('Quality'), net.quality), + _('SSID'), E('a', { href: net.link }, [ net.ssid || '?' ]), + _('Mode'), net.mode, + _('BSSID'), is_assoc ? (net.bssid || '-') : null, + _('Encryption'), is_assoc ? net.encryption : null, + _('Associations'), is_assoc ? (net.num_assoc || '-') : null, + null, is_assoc ? null : E('em', net.disabled ? _('Wireless is disabled') : _('Wireless is not associated')))); + } + + ws.appendChild(renderBox( + dev.device, dev.up || net0.up, + [ E('div', vifs) ], + _('Type'), dev.name.replace(/^Generic | Wireless Controller .+$/g, ''), + _('Channel'), net0.channel ? '%d (%.3f %s)'.format(net0.channel, net0.frequency, _('GHz')) : '-', + _('Bitrate'), net0.bitrate ? '%d %s'.format(net0.bitrate, _('Mbit/s')) : '-')); + } + + if (!ws.lastElementChild) + ws.appendChild(E('em', _('No information available'))); + } + + var e; + + if (e = document.getElementById('localtime')) + e.innerHTML = info.localtime; + + if (e = document.getElementById('uptime')) + e.innerHTML = String.format('%t', info.uptime); + + if (e = document.getElementById('loadavg')) + e.innerHTML = String.format( + '%.02f, %.02f, %.02f', + info.loadavg[0] / 65535.0, + info.loadavg[1] / 65535.0, + info.loadavg[2] / 65535.0 + ); + + progressbar('#memtotal', + ((info.memory.free + info.memory.buffered) / 1024) + ' ' + _('kB'), + (info.memory.total / 1024) + ' ' + _('kB')); + + progressbar('#memfree', + (info.memory.free / 1024) + ' ' + _('kB'), + (info.memory.total / 1024) + ' ' + _('kB')); + + progressbar('#membuff', + (info.memory.buffered / 1024) + ' ' + _('kB'), + (info.memory.total / 1024) + ' ' + _('kB')); + + progressbar('#swaptotal', + (info.swap.free / 1024) + ' ' + _('kB'), + (info.swap.total / 1024) + ' ' + _('kB')); + + progressbar('#swapfree', + (info.swap.free / 1024) + ' ' + _('kB'), + (info.swap.total / 1024) + ' ' + _('kB')); + + progressbar('#conns', + info.conncount, info.connmax); + + } +); diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js new file mode 100644 index 0000000000..39ddab3979 --- /dev/null +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js @@ -0,0 +1,253 @@ +var table_names = [ 'Filter', 'NAT', 'Mangle', 'Raw' ], + current_mode = document.querySelector('.cbi-tab[data-mode="6"]') ? 6 : 4; + +function create_table_section(table) +{ + var idiv = document.getElementById('iptables'), + tdiv = idiv.querySelector('[data-table="%s"]'.format(table)), + title = '%s: %s'.format(_('Table'), table); + + if (!tdiv) { + tdiv = E('div', { 'data-table': table }, [ + E('h3', {}, title), + E('div') + ]); + + if (idiv.firstElementChild.nodeName.toLowerCase() === 'p') + idiv.removeChild(idiv.firstElementChild); + + var added = false, thisIdx = table_names.indexOf(table); + + idiv.querySelectorAll('[data-table]').forEach(function(child) { + var childIdx = table_names.indexOf(child.getAttribute('data-table')); + + if (added === false && childIdx > thisIdx) { + idiv.insertBefore(tdiv, child); + added = true; + } + }); + + if (added === false) + idiv.appendChild(tdiv); + } + + return tdiv.lastElementChild; +} + +function create_chain_section(table, chain, policy, packets, bytes, references) +{ + var tdiv = create_table_section(table), + cdiv = tdiv.querySelector('[data-chain="%s"]'.format(chain)), + title; + + if (policy) + title = '%s <em>%s</em> <span>(%s: <em>%s</em>, %d %s, %.2mB %s)</span>' + .format(_('Chain'), chain, _('Policy'), policy, packets, _('Packets'), bytes, _('Traffic')); + else + title = '%s <em>%s</em> <span class="references">(%d %s)</span>' + .format(_('Chain'), chain, references, _('References')); + + if (!cdiv) { + cdiv = E('div', { 'data-chain': chain }, [ + E('h4', { 'id': 'rule_%s_%s'.format(table.toLowerCase(), chain) }, title), + E('div', { 'class': 'table' }, [ + E('div', { 'class': 'tr table-titles' }, [ + E('div', { 'class': 'th center' }, _('Pkts.')), + E('div', { 'class': 'th center' }, _('Traffic')), + E('div', { 'class': 'th' }, _('Target')), + E('div', { 'class': 'th' }, _('Prot.')), + E('div', { 'class': 'th' }, _('In')), + E('div', { 'class': 'th' }, _('Out')), + E('div', { 'class': 'th' }, _('Source')), + E('div', { 'class': 'th' }, _('Destination')), + E('div', { 'class': 'th' }, _('Options')), + E('div', { 'class': 'th' }, _('Comment')) + ]) + ]) + ]); + + tdiv.appendChild(cdiv); + } + else { + cdiv.firstElementChild.innerHTML = title; + } + + return cdiv.lastElementChild; +} + +function update_chain_section(chaintable, rows) +{ + if (!chaintable) + return; + + cbi_update_table(chaintable, rows, _('No rules in this chain.')); + + if (rows.length === 0 && + document.querySelector('form > [data-hide-empty="true"]')) + chaintable.parentNode.style.display = 'none'; + else + chaintable.parentNode.style.display = ''; + + chaintable.parentNode.setAttribute('data-empty', rows.length === 0); +} + +function hide_empty(btn) +{ + var hide = (btn.getAttribute('data-hide-empty') === 'false'); + + btn.setAttribute('data-hide-empty', hide); + btn.value = hide ? _('Show empty chains') : _('Hide empty chains'); + btn.blur(); + + document.querySelectorAll('[data-chain][data-empty="true"]') + .forEach(function(chaintable) { + chaintable.style.display = hide ? 'none' : ''; + }); +} + +function jump_target(ev) +{ + var link = ev.target, + table = findParent(link, '[data-table]').getAttribute('data-table'), + chain = link.textContent, + num = +link.getAttribute('data-num'), + elem = document.getElementById('rule_%s_%s'.format(table.toLowerCase(), chain)); + + if (elem) { + (document.documentElement || document.body.parentNode || document.body).scrollTop = elem.offsetTop - 40; + elem.classList.remove('flash'); + void elem.offsetWidth; + elem.classList.add('flash'); + + if (num) { + var rule = elem.nextElementSibling.childNodes[num]; + if (rule) { + rule.classList.remove('flash'); + void rule.offsetWidth; + rule.classList.add('flash'); + } + } + } +} + +function parse_output(table, s) +{ + var current_chain = null; + var current_rules = []; + var seen_chains = {}; + var chain_refs = {}; + var re = /([^\n]*)\n/g; + var m, m2; + + while ((m = re.exec(s)) != null) { + if (m[1].match(/^Chain (.+) \(policy (\w+) (\d+) packets, (\d+) bytes\)$/)) { + var chain = RegExp.$1, + policy = RegExp.$2, + packets = +RegExp.$3, + bytes = +RegExp.$4; + + update_chain_section(current_chain, current_rules); + + seen_chains[chain] = true; + current_chain = create_chain_section(table, chain, policy, packets, bytes); + current_rules = []; + } + else if (m[1].match(/^Chain (.+) \((\d+) references\)$/)) { + var chain = RegExp.$1, + references = +RegExp.$2; + + update_chain_section(current_chain, current_rules); + + seen_chains[chain] = true; + current_chain = create_chain_section(table, chain, null, null, null, references); + current_rules = []; + } + else if (m[1].match(/^num /)) { + continue; + } + else if ((m2 = m[1].match(/^(\d+) +(\d+) +(\d+) +(.*?) +(\S+) +(\S*) +(\S+) +(\S+) +([a-f0-9:.]+\/\d+) +([a-f0-9:.]+\/\d+) +(.+)$/)) !== null) { + var num = +m2[1], + pkts = +m2[2], + bytes = +m2[3], + target = m2[4], + proto = m2[5], + indev = m2[7], + outdev = m2[8], + srcnet = m2[9], + dstnet = m2[10], + options = m2[11] || '-', + comment = '-'; + + options = options.trim().replace(/(?:^| )\/\* (.+) \*\//, + function(m1, m2) { + comment = m2.replace(/^!fw3(: |$)/, '').trim() || '-'; + return ''; + }) || '-'; + + current_rules.push([ + '%.2m'.format(pkts).nobr(), + '%.2mB'.format(bytes).nobr(), + target ? '<span class="target">%s</span>'.format(target) : '-', + proto, + (indev !== '*') ? '<span class="ifacebadge">%s</span>'.format(indev) : '*', + (outdev !== '*') ? '<span class="ifacebadge">%s</span>'.format(outdev) : '*', + srcnet, + dstnet, + options, + comment + ]); + + if (target) { + chain_refs[target] = chain_refs[target] || []; + chain_refs[target].push([ current_chain, num ]); + } + } + } + + update_chain_section(current_chain, current_rules); + + document.querySelectorAll('[data-table="%s"] [data-chain]'.format(table)) + .forEach(function(cdiv) { + if (!seen_chains[cdiv.getAttribute('data-chain')]) { + cdiv.parentNode.removeChild(cdiv); + return; + } + + cdiv.querySelectorAll('.target').forEach(function(tspan) { + if (seen_chains[tspan.textContent]) { + tspan.classList.add('jump'); + tspan.addEventListener('click', jump_target); + } + }); + + cdiv.querySelectorAll('.references').forEach(function(rspan) { + var refs = chain_refs[cdiv.getAttribute('data-chain')]; + if (refs && refs.length) { + rspan.classList.add('cbi-tooltip-container'); + rspan.appendChild(E('small', { 'class': 'cbi-tooltip ifacebadge', 'style': 'top:1em; left:auto' }, [ E('ul') ])); + + refs.forEach(function(ref) { + var chain = ref[0].parentNode.getAttribute('data-chain'), + num = ref[1]; + + rspan.lastElementChild.lastElementChild.appendChild(E('li', {}, [ + _('Chain'), ' ', + E('span', { + 'class': 'jump', + 'data-num': num, + 'onclick': 'jump_target(event)' + }, chain), + ', %s #%d'.format(_('Rule'), num) + ])); + }); + } + }); + }); +} + +table_names.forEach(function(table) { + L.poll(5, L.url('admin/status/iptables_dump', current_mode, table.toLowerCase()), null, + function (xhr) { + parse_output(table, xhr.responseText); + }); +}); diff --git a/modules/luci-mod-status/luasrc/controller/admin/status.lua b/modules/luci-mod-status/luasrc/controller/admin/status.lua index 5b496d83f2..0d955c95fe 100644 --- a/modules/luci-mod-status/luasrc/controller/admin/status.lua +++ b/modules/luci-mod-status/luasrc/controller/admin/status.lua @@ -52,22 +52,12 @@ function dump_iptables(family, table) local s for s in lines do if s == table then - local ipt = io.popen( - "/usr/sbin/%stables -t %s --line-numbers -nxvL" - %{ prefix, table }) - - if ipt then - luci.http.prepare_content("text/plain") - - while true do - s = ipt:read(1024) - if not s then break end - luci.http.write(s) - end - - ipt:close() - return - end + luci.http.prepare_content("text/plain") + luci.sys.process.exec({ + "/usr/sbin/%stables" % prefix, "-w", "-t", table, + "--line-numbers", "-nxvL" + }, luci.http.write) + return end end end diff --git a/modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm b/modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm index 3bb55f9054..5cc661ad17 100644 --- a/modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm +++ b/modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm @@ -1,5 +1,5 @@ <%# - Copyright 2010 Jo-Philipp Wich <jow@openwrt.org> + Copyright 2010-2018 Jo-Philipp Wich <jo@mein.io> Licensed to the public under the Apache License 2.0. -%> @@ -34,7 +34,7 @@ var step = 5; var data_wanted = Math.floor(width / step); - var data_fill = 0; + var data_fill = 1; var data_stamp = 0; var data_rx = [ ]; @@ -178,6 +178,8 @@ if (data[i][TIME] <= data_stamp) continue; + data_fill++; + /* normalize difference against time interval */ if (i > 0) { @@ -193,6 +195,7 @@ /* cut off outdated entries */ data_rx = data_rx.slice(data_rx.length - data_wanted, data_rx.length); data_tx = data_tx.slice(data_tx.length - data_wanted, data_tx.length); + data_fill = Math.min(data_fill, data_wanted); /* find peak */ for (var i = 0; i < data_rx.length; i++) @@ -207,8 +210,8 @@ data_tx_avg += data_tx[i]; } - data_rx_avg = (data_rx_avg / Math.max(data_rx.length, 1)); - data_tx_avg = (data_tx_avg / Math.max(data_tx.length, 1)); + data_rx_avg = (data_rx_avg / data_fill); + data_tx_avg = (data_tx_avg / data_fill); var size = Math.floor(Math.log2(data_max)), div = Math.pow(2, size - (size % 10)), diff --git a/modules/luci-mod-status/luasrc/view/admin_status/connections.htm b/modules/luci-mod-status/luasrc/view/admin_status/connections.htm index 0a0db3be78..d9099aa078 100644 --- a/modules/luci-mod-status/luasrc/view/admin_status/connections.htm +++ b/modules/luci-mod-status/luasrc/view/admin_status/connections.htm @@ -1,5 +1,5 @@ <%# - Copyright 2010 Jo-Philipp Wich <jow@openwrt.org> + Copyright 2010-2018 Jo-Philipp Wich <jo@mein.io> Licensed to the public under the Apache License 2.0. -%> @@ -19,7 +19,7 @@ var step = 5; var data_wanted = Math.floor(width / step); - var data_fill = 0; + var data_fill = 1; var data_stamp = 0; var data_udp = [ ]; @@ -202,12 +202,15 @@ if (data[i][TIME] <= data_stamp) continue; + data_fill++; + data_udp.push(data[i][UDP]); data_tcp.push(data[i][TCP]); data_otr.push(data[i][OTHER]); } /* cut off outdated entries */ + data_fill = Math.min(data_fill, data_wanted); data_udp = data_udp.slice(data_udp.length - data_wanted, data_udp.length); data_tcp = data_tcp.slice(data_tcp.length - data_wanted, data_tcp.length); data_otr = data_otr.slice(data_otr.length - data_wanted, data_otr.length); @@ -223,20 +226,15 @@ data_tcp_peak = Math.max(data_tcp_peak, data_tcp[i]); data_otr_peak = Math.max(data_otr_peak, data_otr[i]); - if (i > 0) - { - data_udp_avg = (data_udp_avg + data_udp[i]) / 2; - data_tcp_avg = (data_tcp_avg + data_tcp[i]) / 2; - data_otr_avg = (data_otr_avg + data_otr[i]) / 2; - } - else - { - data_udp_avg = data_udp[i]; - data_tcp_avg = data_tcp[i]; - data_otr_avg = data_otr[i]; - } + data_udp_avg += data_udp[i]; + data_tcp_avg += data_tcp[i]; + data_otr_avg += data_otr[i]; } + data_udp_avg = data_udp_avg / data_fill; + data_tcp_avg = data_tcp_avg / data_fill; + data_otr_avg = data_otr_avg / data_fill; + /* remember current timestamp, calculate horizontal scale */ data_stamp = data[data.length-1][TIME]; data_scale = height / (data_max * 1.1); diff --git a/modules/luci-mod-status/luasrc/view/admin_status/index.htm b/modules/luci-mod-status/luasrc/view/admin_status/index.htm index 54e35b82a0..465226fe09 100644 --- a/modules/luci-mod-status/luasrc/view/admin_status/index.htm +++ b/modules/luci-mod-status/luasrc/view/admin_status/index.htm @@ -1,6 +1,6 @@ <%# Copyright 2008 Steven Barth <steven@midlink.org> - Copyright 2008-2011 Jo-Philipp Wich <jow@openwrt.org> + Copyright 2008-2018 Jo-Philipp Wich <jo@mein.io> Licensed to the public under the Apache License 2.0. -%> @@ -11,29 +11,24 @@ local stat = require "luci.tools.status" local ver = require "luci.version" - local has_ipv6 = fs.access("/proc/net/ipv6_route") - local has_dhcp = fs.access("/etc/config/dhcp") - local has_wifi = ((fs.stat("/etc/config/wireless", "size") or 0) > 0) + if luci.http.formvalue("status") == "1" then - local sysinfo = luci.util.ubus("system", "info") or { } - local boardinfo = luci.util.ubus("system", "board") or { } - local unameinfo = nixio.uname() or { } + local sysinfo = luci.util.ubus("system", "info") or { } - local meminfo = sysinfo.memory or { - total = 0, - free = 0, - buffered = 0, - shared = 0 - } + local meminfo = sysinfo.memory or { + total = 0, + free = 0, + buffered = 0, + shared = 0 + } - local swapinfo = sysinfo.swap or { - total = 0, - free = 0 - } + local swapinfo = sysinfo.swap or { + total = 0, + free = 0 + } - local has_dsl = fs.access("/etc/init.d/dsl_control") + local has_dsl = fs.access("/etc/init.d/dsl_control") - if luci.http.formvalue("status") == "1" then local ntm = require "luci.model.network".init() local wan_nets = ntm:get_wan_networks() local wan6_nets = ntm:get_wan6_networks() @@ -131,357 +126,24 @@ <%+header%> -<script type="text/javascript">//<![CDATA[ - function progressbar(v, m) - { - var vn = parseInt(v) || 0; - var mn = parseInt(m) || 100; - var pc = Math.floor((100 / mn) * vn); - - return String.format( - '<div style="width:100%%; max-width:200px; position:relative; border:1px solid #999999">' + - '<div style="background-color:#CCCCCC; width:%d%%; height:15px">' + - '<div style="position:absolute; left:0; top:0; text-align:center; width:100%%; color:#000000">' + - '<small>%s / %s (%d%%)</small>' + - '</div>' + - '</div>' + - '</div>', pc, v, m, pc - ); - } - - function labelList(items, offset) { - var rv = [ ]; - - for (var i = offset || 0; i < items.length; i += 2) { - var label = items[i], - value = items[i+1]; - - if (value === undefined || value === null) - continue; - - if (label) - rv.push(E('strong', [label, ': '])); - - rv.push(value, E('br')); - } - - return rv; - } - - function renderBox(title, active, childs) { - childs = childs || []; - childs.unshift(E('span', labelList(arguments, 3))); - - return E('div', { class: 'ifacebox' }, [ - E('div', { class: 'ifacebox-head center ' + (active ? 'active' : '') }, - E('strong', title)), - E('div', { class: 'ifacebox-body left' }, childs) - ]); - } - - function renderBadge(icon, title) { - return E('span', { class: 'ifacebadge' }, [ - E('img', { src: icon, title: title || '' }), - E('span', labelList(arguments, 2)) - ]); - } - - XHR.poll(5, '<%=REQUEST_URI%>', { status: 1 }, - function(x, info) - { - var us = document.getElementById('upstream_status_table'); - - while (us.lastElementChild) - us.removeChild(us.lastElementChild); - - var wan_list = info.wan || []; - - for (var i = 0; i < wan_list.length; i++) { - var ifc = wan_list[i]; - - us.appendChild(renderBox( - '<%:IPv4 Upstream%>', - (ifc.ifname && ifc.proto != 'none'), - [ E('div', {}, renderBadge( - '<%=resource%>' + '/icons/%s.png'.format((ifc && ifc.type) ? ifc.type : 'ethernet_disabled'), null, - '<%:Device%>', ifc ? (ifc.name || ifc.ifname || '-') : '-', - '<%:MAC-Address%>', (ifc && ifc.ether) ? ifc.mac : null)) ], - '<%:Protocol%>', ifc.i18n || E('em', '<%:Not connected%>'), - '<%:Address%>', (ifc.ipaddr) ? ifc.ipaddr : '0.0.0.0', - '<%:Netmask%>', (ifc.netmask && ifc.netmask != ifc.ipaddr) ? ifc.netmask : '255.255.255.255', - '<%:Gateway%>', (ifc.gwaddr) ? ifc.gwaddr : '0.0.0.0', - '<%:DNS%> 1', (ifc.dns) ? ifc.dns[0] : null, - '<%:DNS%> 2', (ifc.dns) ? ifc.dns[1] : null, - '<%:DNS%> 3', (ifc.dns) ? ifc.dns[2] : null, - '<%:DNS%> 4', (ifc.dns) ? ifc.dns[3] : null, - '<%:DNS%> 5', (ifc.dns) ? ifc.dns[4] : null, - '<%:Expires%>', (ifc.expires > -1) ? '%t'.format(ifc.expires) : null, - '<%:Connected%>', (ifc.uptime > 0) ? '%t'.format(ifc.uptime) : null)); - } - - <% if has_ipv6 then %> - var wan6_list = info.wan6 || []; - - for (var i = 0; i < wan6_list.length; i++) { - var ifc6 = wan6_list[i]; - - us.appendChild(renderBox( - '<%:IPv6 Upstream%>', - (ifc6.ifname && ifc6.proto != 'none'), - [ E('div', {}, renderBadge( - '<%=resource%>/icons/%s.png'.format(ifc6.type || 'ethernet_disabled'), null, - '<%:Device%>', ifc6 ? (ifc6.name || ifc6.ifname || '-') : '-', - '<%:MAC-Address%>', (ifc6 && ifc6.ether) ? ifc6.mac : null)) ], - '<%:Protocol%>', ifc6.i18n ? (ifc6.i18n + (ifc6.proto === 'dhcp' && ifc6.ip6prefix ? '-PD' : '')) : E('em', '<%:Not connected%>'), - '<%:Prefix Delegated%>', ifc6.ip6prefix, - '<%:Address%>', (ifc6.ip6prefix) ? (ifc6.ip6addr || null) : (ifc6.ip6addr || '::'), - '<%:Gateway%>', (ifc6.gw6addr) ? ifc6.gw6addr : '::', - '<%:DNS%> 1', (ifc6.dns) ? ifc6.dns[0] : null, - '<%:DNS%> 2', (ifc6.dns) ? ifc6.dns[1] : null, - '<%:DNS%> 3', (ifc6.dns) ? ifc6.dns[2] : null, - '<%:DNS%> 4', (ifc6.dns) ? ifc6.dns[3] : null, - '<%:DNS%> 5', (ifc6.dns) ? ifc6.dns[4] : null, - '<%:Connected%>', (ifc6.uptime > 0) ? '%t'.format(ifc6.uptime) : null)); - } - <% end %> - - <% if has_dsl then %> - var ds = document.getElementById('dsl_status_table'); - - while (ds.lastElementChild) - ds.removeChild(ds.lastElementChild); - - ds.appendChild(renderBox( - '<%:DSL Status%>', - (info.dsl.line_state === 'UP'), [ ], - '<%:Line State%>', '%s [0x%x]'.format(info.dsl.line_state, info.dsl.line_state_detail), - '<%:Line Mode%>', info.dsl.line_mode_s || '-', - '<%:Line Uptime%>', info.dsl.line_uptime_s || '-', - '<%:Annex%>', info.dsl.annex_s || '-', - '<%:Profile%>', info.dsl.profile_s || '-', - '<%:Data Rate%>', '%s/s / %s/s'.format(info.dsl.data_rate_down_s, info.dsl.data_rate_up_s), - '<%:Max. Attainable Data Rate (ATTNDR)%>', '%s/s / %s/s'.format(info.dsl.max_data_rate_down_s, info.dsl.max_data_rate_up_s), - '<%:Latency%>', '%s / %s'.format(info.dsl.latency_num_down, info.dsl.latency_num_up), - '<%:Line Attenuation (LATN)%>', '%.1f dB / %.1f dB'.format(info.dsl.line_attenuation_down, info.dsl.line_attenuation_up), - '<%:Signal Attenuation (SATN)%>', '%.1f dB / %.1f dB'.format(info.dsl.signal_attenuation_down, info.dsl.signal_attenuation_up), - '<%:Noise Margin (SNR)%>', '%.1f dB / %.1f dB'.format(info.dsl.noise_margin_down, info.dsl.noise_margin_up), - '<%:Aggregate Transmit Power(ACTATP)%>', '%.1f dB / %.1f dB'.format(info.dsl.actatp_down, info.dsl.actatp_up), - '<%:Forward Error Correction Seconds (FECS)%>', '%d / %d'.format(info.dsl.errors_fec_near, info.dsl.errors_fec_far), - '<%:Errored seconds (ES)%>', '%d / %d'.format(info.dsl.errors_es_near, info.dsl.errors_es_far), - '<%:Severely Errored Seconds (SES)%>', '%d / %d'.format(info.dsl.errors_ses_near, info.dsl.errors_ses_far), - '<%:Loss of Signal Seconds (LOSS)%>', '%d / %d'.format(info.dsl.errors_loss_near, info.dsl.errors_loss_far), - '<%:Unavailable Seconds (UAS)%>', '%d / %d'.format(info.dsl.errors_uas_near, info.dsl.errors_uas_far), - '<%:Header Error Code Errors (HEC)%>', '%d / %d'.format(info.dsl.errors_hec_near, info.dsl.errors_hec_far), - '<%:Non Pre-emtive CRC errors (CRC_P)%>', '%d / %d'.format(info.dsl.errors_crc_p_near, info.dsl.errors_crc_p_far), - '<%:Pre-emtive CRC errors (CRCP_P)%>', '%d / %d'.format(info.dsl.errors_crcp_p_near, info.dsl.errors_crcp_p_far), - '<%:ATU-C System Vendor ID%>', info.dsl.atuc_vendor_id, - '<%:Power Management Mode%>', info.dsl.power_mode_s)); - <% end %> - - <% if has_wifi then %> - var ws = document.getElementById('wifi_status_table'); - if (ws) - { - while (ws.lastElementChild) - ws.removeChild(ws.lastElementChild); - - for (var didx = 0; didx < info.wifinets.length; didx++) - { - var dev = info.wifinets[didx]; - var net0 = (dev.networks && dev.networks[0]) ? dev.networks[0] : {}; - var vifs = []; - - for (var nidx = 0; nidx < dev.networks.length; nidx++) - { - var net = dev.networks[nidx]; - var is_assoc = (net.bssid != '00:00:00:00:00:00' && net.channel && !net.disabled); - - var icon; - if (net.disabled) - icon = "<%=resource%>/icons/signal-none.png"; - else if (net.quality <= 0) - icon = "<%=resource%>/icons/signal-0.png"; - else if (net.quality < 25) - icon = "<%=resource%>/icons/signal-0-25.png"; - else if (net.quality < 50) - icon = "<%=resource%>/icons/signal-25-50.png"; - else if (net.quality < 75) - icon = "<%=resource%>/icons/signal-50-75.png"; - else - icon = "<%=resource%>/icons/signal-75-100.png"; - - vifs.push(renderBadge( - icon, - '<%:Signal%>: %d dBm / <%:Quality%>: %d%%'.format(net.signal, net.quality), - '<%:SSID%>', E('a', { href: net.link }, [ net.ssid || '?' ]), - '<%:Mode%>', net.mode, - '<%:BSSID%>', is_assoc ? (net.bssid || '-') : null, - '<%:Encryption%>', is_assoc ? net.encryption : null, - '<%:Associations%>', is_assoc ? (net.num_assoc || '-') : null, - null, is_assoc ? null : E('em', net.disabled ? '<%:Wireless is disabled%>' : '<%:Wireless is not associated%>'))); - } - - ws.appendChild(renderBox( - dev.device, dev.up || net0.up, - [ E('div', vifs) ], - '<%:Type%>', dev.name.replace(/^Generic | Wireless Controller .+$/g, ''), - '<%:Channel%>', net0.channel ? '%d (%.3f <%:GHz%>)'.format(net0.channel, net0.frequency) : '-', - '<%:Bitrate%>', net0.bitrate ? '%d <%:Mbit/s%>'.format(net0.bitrate) : '-')); - } - - if (!ws.lastElementChild) - ws.appendChild(E('<em><%:No information available%></em>')); - } - <% end %> - - var e; - - if (e = document.getElementById('localtime')) - e.innerHTML = info.localtime; - - if (e = document.getElementById('uptime')) - e.innerHTML = String.format('%t', info.uptime); - - if (e = document.getElementById('loadavg')) - e.innerHTML = String.format( - '%.02f, %.02f, %.02f', - info.loadavg[0] / 65535.0, - info.loadavg[1] / 65535.0, - info.loadavg[2] / 65535.0 - ); - - if (e = document.getElementById('memtotal')) - e.innerHTML = progressbar( - ((info.memory.free + info.memory.buffered) / 1024) + " <%:kB%>", - (info.memory.total / 1024) + " <%:kB%>" - ); - - if (e = document.getElementById('memfree')) - e.innerHTML = progressbar( - (info.memory.free / 1024) + " <%:kB%>", - (info.memory.total / 1024) + " <%:kB%>" - ); - - if (e = document.getElementById('membuff')) - e.innerHTML = progressbar( - (info.memory.buffered / 1024) + " <%:kB%>", - (info.memory.total / 1024) + " <%:kB%>" - ); - - if (e = document.getElementById('swaptotal')) - e.innerHTML = progressbar( - (info.swap.free / 1024) + " <%:kB%>", - (info.swap.total / 1024) + " <%:kB%>" - ); - - if (e = document.getElementById('swapfree')) - e.innerHTML = progressbar( - (info.swap.free / 1024) + " <%:kB%>", - (info.swap.total / 1024) + " <%:kB%>" - ); - - if (e = document.getElementById('conns')) - e.innerHTML = progressbar(info.conncount, info.connmax); - - } - ); -//]]></script> - <h2 name="content"><%:Status%></h2> -<div class="cbi-section"> - <h3><%:System%></h3> - - <div class="table" width="100%"> - <div class="tr"><div class="td left" width="33%"><%:Hostname%></div><div class="td left"><%=luci.sys.hostname() or "?"%></div></div> - <div class="tr"><div class="td left" width="33%"><%:Model%></div><div class="td left"><%=pcdata(boardinfo.model or "?")%></div></div> - <div class="tr"><div class="td left" width="33%"><%:Architecture%></div><div class="td left"><%=pcdata(boardinfo.system or "?")%></div></div> - <div class="tr"><div class="td left" width="33%"><%:Firmware Version%></div><div class="td left"> - <%=pcdata(ver.distname)%> <%=pcdata(ver.distversion)%> / - <%=pcdata(ver.luciname)%> (<%=pcdata(ver.luciversion)%>) - </div></div> - <div class="tr"><div class="td left" width="33%"><%:Kernel Version%></div><div class="td left"><%=unameinfo.release or "?"%></div></div> - <div class="tr"><div class="td left" width="33%"><%:Local Time%></div><div class="td left" id="localtime">-</div></div> - <div class="tr"><div class="td left" width="33%"><%:Uptime%></div><div class="td left" id="uptime">-</div></div> - <div class="tr"><div class="td left" width="33%"><%:Load Average%></div><div class="td left" id="loadavg">-</div></div> - </div> -</div> - -<div class="cbi-section"> - <h3><%:Memory%></h3> - - <div class="table" width="100%"> - <div class="tr"><div class="td left" width="33%"><%:Total Available%></div><div class="td left" id="memtotal">-</div></div> - <div class="tr"><div class="td left" width="33%"><%:Free%></div><div class="td left" id="memfree">-</div></div> - <div class="tr"><div class="td left" width="33%"><%:Buffered%></div><div class="td left" id="membuff">-</div></div> - </div> -</div> - -<% if swapinfo.total > 0 then %> -<div class="cbi-section"> - <h3><%:Swap%></h3> - - <div class="table" width="100%"> - <div class="tr"><div class="td left" width="33%"><%:Total Available%></div><div class="td left" id="swaptotal">-</div></div> - <div class="tr"><div class="td left" width="33%"><%:Free%></div><div class="td left" id="swapfree">-</div></div> - </div> -</div> -<% end %> - -<div class="cbi-section"> - <h3><%:Network%></h3> - - <div id="upstream_status_table" class="network-status-table"> - <p><em><%:Collecting data...%></em></p> - </div> - - <div class="table" width="100%"> - <div class="tr"><div class="td left" width="33%"><%:Active Connections%></div><div class="td left" id="conns">-</div></div> - </div> -</div> - -<% - if has_dhcp then - include("lease_status") - end -%> - -<% if has_dsl then %> -<div class="cbi-section"> - <h3><%:DSL%></h3> - - <div id="dsl_status_table" class="network-status-table"> - <p><em><%:Collecting data...%></em></p> - </div> -</div> -<% end %> - -<% if has_wifi then %> -<div class="cbi-section"> - <h3><%:Wireless%></h3> - - <div id="wifi_status_table" class="network-status-table"> - <p><em><%:Collecting data...%></em></p> - </div> -</div> - -<div class="cbi-section"> - <h3><%:Associated Stations%></h3> - - <%+wifi_assoclist%> -</div> -<% end %> - <%- local incdir = util.libpath() .. "/view/admin_status/index/" if fs.access(incdir) then - local inc + local _, inc + local includes = {} for inc in fs.dir(incdir) do if inc:match("%.htm$") then - include("admin_status/index/" .. inc:gsub("%.htm$", "")) + includes[#includes + 1] = inc:gsub("%.htm$", "") end end + for _, inc in luci.util.vspairs(includes) do + include("admin_status/index/" .. inc) + end end -%> +<script type="text/javascript" src="<%=resource%>/view/status/index.js"></script> + <%+footer%> diff --git a/modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm b/modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm new file mode 100644 index 0000000000..994550ec2b --- /dev/null +++ b/modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm @@ -0,0 +1,29 @@ +<%# + Copyright 2008 Steven Barth <steven@midlink.org> + Copyright 2008-2018 Jo-Philipp Wich <jo@mein.io> + Licensed to the public under the Apache License 2.0. +-%> + +<% + local boardinfo = luci.util.ubus("system", "board") or { } + local unameinfo = nixio.uname() or { } + local ver = require "luci.version" +%> + +<div class="cbi-section"> + <h3><%:System%></h3> + + <div class="table" width="100%"> + <div class="tr"><div class="td left" width="33%"><%:Hostname%></div><div class="td left"><%=luci.sys.hostname() or "?"%></div></div> + <div class="tr"><div class="td left" width="33%"><%:Model%></div><div class="td left"><%=pcdata(boardinfo.model or "?")%></div></div> + <div class="tr"><div class="td left" width="33%"><%:Architecture%></div><div class="td left"><%=pcdata(boardinfo.system or "?")%></div></div> + <div class="tr"><div class="td left" width="33%"><%:Firmware Version%></div><div class="td left"> + <%=pcdata(ver.distname)%> <%=pcdata(ver.distversion)%> / + <%=pcdata(ver.luciname)%> (<%=pcdata(ver.luciversion)%>) + </div></div> + <div class="tr"><div class="td left" width="33%"><%:Kernel Version%></div><div class="td left"><%=unameinfo.release or "?"%></div></div> + <div class="tr"><div class="td left" width="33%"><%:Local Time%></div><div class="td left" id="localtime">-</div></div> + <div class="tr"><div class="td left" width="33%"><%:Uptime%></div><div class="td left" id="uptime">-</div></div> + <div class="tr"><div class="td left" width="33%"><%:Load Average%></div><div class="td left" id="loadavg">-</div></div> + </div> +</div> diff --git a/modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm b/modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm new file mode 100644 index 0000000000..13774704fe --- /dev/null +++ b/modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm @@ -0,0 +1,31 @@ +<%# + Copyright 2008 Steven Barth <steven@midlink.org> + Copyright 2008-2018 Jo-Philipp Wich <jo@mein.io> + Licensed to the public under the Apache License 2.0. +-%> + +<% + local sysinfo = luci.util.ubus("system", "info") or { } + local has_swap = sysinfo.swap and sysinfo.swap.total > 0 or false +%> + +<div class="cbi-section"> + <h3><%:Memory%></h3> + + <div class="table" width="100%"> + <div class="tr"><div class="td left" width="33%"><%:Total Available%></div><div class="td left"><div id="memtotal" class="cbi-progressbar" title="-"><div></div></div></div></div> + <div class="tr"><div class="td left" width="33%"><%:Free%></div><div class="td left"><div id="memfree" class="cbi-progressbar" title="-"><div></div></div></div></div> + <div class="tr"><div class="td left" width="33%"><%:Buffered%></div><div class="td left"><div id="membuff" class="cbi-progressbar" title="-"><div></div></div></div></div> + </div> +</div> + +<% if has_swap then %> +<div class="cbi-section"> + <h3><%:Swap%></h3> + + <div class="table" width="100%"> + <div class="tr"><div class="td left" width="33%"><%:Total Available%></div><div class="td left"><div id="swaptotal" class="cbi-progressbar" title="-"><div></div></div></div></div> + <div class="tr"><div class="td left" width="33%"><%:Free%></div><div class="td left"><div id="swapfree" class="cbi-progressbar" title="-"><div></div></div></div></div> + </div> +</div> +<% end %> diff --git a/modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm b/modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm new file mode 100644 index 0000000000..945a31b2e5 --- /dev/null +++ b/modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm @@ -0,0 +1,17 @@ +<%# + Copyright 2008 Steven Barth <steven@midlink.org> + Copyright 2008-2018 Jo-Philipp Wich <jo@mein.io> + Licensed to the public under the Apache License 2.0. +-%> + +<div class="cbi-section"> + <h3><%:Network%></h3> + + <div id="upstream_status_table" class="network-status-table"> + <p><em><%:Collecting data...%></em></p> + </div> + + <div class="table" width="100%"> + <div class="tr"><div class="td left" width="33%"><%:Active Connections%></div><div class="td left"><div id="conns" class="cbi-progressbar" title="-"><div></div></div></div></div> + </div> +</div> diff --git a/modules/luci-mod-status/luasrc/view/admin_status/index/40-dhcp-leases.htm b/modules/luci-mod-status/luasrc/view/admin_status/index/40-dhcp-leases.htm new file mode 100644 index 0000000000..aaf3661442 --- /dev/null +++ b/modules/luci-mod-status/luasrc/view/admin_status/index/40-dhcp-leases.htm @@ -0,0 +1,14 @@ +<%# + Copyright 2008 Steven Barth <steven@midlink.org> + Copyright 2008-2018 Jo-Philipp Wich <jo@mein.io> + Licensed to the public under the Apache License 2.0. +-%> + +<% + local fs = require "nixio.fs" + local has_dhcp = fs.access("/etc/config/dhcp") + + if has_dhcp then + include("lease_status") + end +%> diff --git a/modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm b/modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm new file mode 100644 index 0000000000..f37bf147a3 --- /dev/null +++ b/modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm @@ -0,0 +1,20 @@ +<%# + Copyright 2008 Steven Barth <steven@midlink.org> + Copyright 2008-2018 Jo-Philipp Wich <jo@mein.io> + Licensed to the public under the Apache License 2.0. +-%> + +<% + local fs = require "nixio.fs" + local has_dsl = fs.access("/etc/init.d/dsl_control") +%> + +<% if has_dsl then %> +<div class="cbi-section"> + <h3><%:DSL%></h3> + + <div id="dsl_status_table" class="network-status-table"> + <p><em><%:Collecting data...%></em></p> + </div> +</div> +<% end %> diff --git a/modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm b/modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm new file mode 100644 index 0000000000..7338bc77f1 --- /dev/null +++ b/modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm @@ -0,0 +1,26 @@ +<%# + Copyright 2008 Steven Barth <steven@midlink.org> + Copyright 2008-2018 Jo-Philipp Wich <jo@mein.io> + Licensed to the public under the Apache License 2.0. +-%> + +<% + local fs = require "nixio.fs" + local has_wifi = ((fs.stat("/etc/config/wireless", "size") or 0) > 0) +%> + +<% if has_wifi then %> +<div class="cbi-section"> + <h3><%:Wireless%></h3> + + <div id="wifi_status_table" class="network-status-table"> + <p><em><%:Collecting data...%></em></p> + </div> +</div> + +<div class="cbi-section"> + <h3><%:Associated Stations%></h3> + + <%+wifi_assoclist%> +</div> +<% end %> diff --git a/modules/luci-mod-status/luasrc/view/admin_status/iptables.htm b/modules/luci-mod-status/luasrc/view/admin_status/iptables.htm index 50defac90e..89f229f3ba 100644 --- a/modules/luci-mod-status/luasrc/view/admin_status/iptables.htm +++ b/modules/luci-mod-status/luasrc/view/admin_status/iptables.htm @@ -41,265 +41,16 @@ } </style> -<script type="text/javascript">//<![CDATA[ - var table_names = [ 'Filter', 'NAT', 'Mangle', 'Raw' ]; - - function create_table_section(table) - { - var idiv = document.getElementById('iptables'), - tdiv = idiv.querySelector('[data-table="%s"]'.format(table)), - title = '<%:Table%>: %s'.format(table); - - if (!tdiv) { - tdiv = E('div', { 'data-table': table }, [ - E('h3', {}, title), - E('div') - ]); - - if (idiv.firstElementChild.nodeName.toLowerCase() === 'p') - idiv.removeChild(idiv.firstElementChild); - - var added = false, thisIdx = table_names.indexOf(table); - - idiv.querySelectorAll('[data-table]').forEach(function(child) { - var childIdx = table_names.indexOf(child.getAttribute('data-table')); - - if (added === false && childIdx > thisIdx) { - idiv.insertBefore(tdiv, child); - added = true; - } - }); - - if (added === false) - idiv.appendChild(tdiv); - } - - return tdiv.lastElementChild; - } - - function create_chain_section(table, chain, policy, packets, bytes, references) - { - var tdiv = create_table_section(table), - cdiv = tdiv.querySelector('[data-chain="%s"]'.format(chain)), - title; - - if (policy) - title = '<%:Chain%> <em>%s</em> <span>(<%:Policy%>: <em>%s</em>, %d <%:Packets%>, %.2mB <%:Traffic%>)</span>'.format(chain, policy, packets, bytes); - else - title = '<%:Chain%> <em>%s</em> <span class="references">(%d <%:References%>)</span>'.format(chain, references); - - if (!cdiv) { - cdiv = E('div', { 'data-chain': chain }, [ - E('h4', { 'id': 'rule_%s_%s'.format(table.toLowerCase(), chain) }, title), - E('div', { 'class': 'table' }, [ - E('div', { 'class': 'tr table-titles' }, [ - E('div', { 'class': 'th center' }, '<%:Pkts.%>'), - E('div', { 'class': 'th center' }, '<%:Traffic%>'), - E('div', { 'class': 'th' }, '<%:Target%>'), - E('div', { 'class': 'th' }, '<%:Prot.%>'), - E('div', { 'class': 'th' }, '<%:In%>'), - E('div', { 'class': 'th' }, '<%:Out%>'), - E('div', { 'class': 'th' }, '<%:Source%>'), - E('div', { 'class': 'th' }, '<%:Destination%>'), - E('div', { 'class': 'th' }, '<%:Options%>'), - E('div', { 'class': 'th' }, '<%:Comment%>') - ]) - ]) - ]); - - tdiv.appendChild(cdiv); - } - else { - cdiv.firstElementChild.innerHTML = title; - } - - return cdiv.lastElementChild; - } - - function update_chain_section(chaintable, rows) - { - if (!chaintable) - return; - - cbi_update_table(chaintable, rows, '<%:No rules in this chain.%>'); - - if (rows.length === 0 && - document.querySelector('form > [data-hide-empty="true"]')) - chaintable.parentNode.style.display = 'none'; - else - chaintable.parentNode.style.display = ''; - - chaintable.parentNode.setAttribute('data-empty', rows.length === 0); - } - - function hide_empty(btn) - { - var hide = (btn.getAttribute('data-hide-empty') === 'false'); - - btn.setAttribute('data-hide-empty', hide); - btn.value = hide ? '<%:Show empty chains%>' : '<%:Hide empty chains%>'; - btn.blur(); - - document.querySelectorAll('[data-chain][data-empty="true"]') - .forEach(function(chaintable) { - chaintable.style.display = hide ? 'none' : ''; - }); - } - - function jump_target(ev) - { - var link = ev.target, - table = findParent(link, '[data-table]').getAttribute('data-table'), - chain = link.textContent, - num = +link.getAttribute('data-num'), - elem = document.getElementById('rule_%s_%s'.format(table.toLowerCase(), chain)); - - if (elem) { - (document.documentElement || document.body.parentNode || document.body).scrollTop = elem.offsetTop - 40; - elem.classList.remove('flash'); - void elem.offsetWidth; - elem.classList.add('flash'); - - if (num) { - var rule = elem.nextElementSibling.childNodes[num]; - if (rule) { - rule.classList.remove('flash'); - void rule.offsetWidth; - rule.classList.add('flash'); - } - } - } - } - - function parse_output(table, s) - { - var current_chain = null; - var current_rules = []; - var seen_chains = {}; - var chain_refs = {}; - var re = /([^\n]*)\n/g; - var m, m2; - - while ((m = re.exec(s)) != null) { - if (m[1].match(/^Chain (.+) \(policy (\w+) (\d+) packets, (\d+) bytes\)$/)) { - var chain = RegExp.$1, - policy = RegExp.$2, - packets = +RegExp.$3, - bytes = +RegExp.$4; - - update_chain_section(current_chain, current_rules); - - seen_chains[chain] = true; - current_chain = create_chain_section(table, chain, policy, packets, bytes); - current_rules = []; - } - else if (m[1].match(/^Chain (.+) \((\d+) references\)$/)) { - var chain = RegExp.$1, - references = +RegExp.$2; - - update_chain_section(current_chain, current_rules); - - seen_chains[chain] = true; - current_chain = create_chain_section(table, chain, null, null, null, references); - current_rules = []; - } - else if (m[1].match(/^num /)) { - continue; - } - else if ((m2 = m[1].match(/^(\d+) +(\d+) +(\d+) +(.*?) +(\S+) +(\S*) +(\S+) +(\S+) +([a-f0-9:.]+\/\d+) +([a-f0-9:.]+\/\d+) +(.+)$/)) !== null) { - var num = +m2[1], - pkts = +m2[2], - bytes = +m2[3], - target = m2[4], - proto = m2[5], - indev = m2[7], - outdev = m2[8], - srcnet = m2[9], - dstnet = m2[10], - options = m2[11] || '-', - comment = '-'; - - options = options.trim().replace(/(?:^| )\/\* (.+) \*\//, - function(m1, m2) { - comment = m2.replace(/^!fw3(: |$)/, '').trim() || '-'; - return ''; - }) || '-'; - - current_rules.push([ - '%.2m'.format(pkts).nobr(), - '%.2mB'.format(bytes).nobr(), - target ? '<span class="target">%s</span>'.format(target) : '-', - proto, - (indev !== '*') ? '<span class="ifacebadge">%s</span>'.format(indev) : '*', - (outdev !== '*') ? '<span class="ifacebadge">%s</span>'.format(outdev) : '*', - srcnet, - dstnet, - options, - comment - ]); - - if (target) { - chain_refs[target] = chain_refs[target] || []; - chain_refs[target].push([ current_chain, num ]); - } - } - } - - update_chain_section(current_chain, current_rules); - - document.querySelectorAll('[data-table="%s"] [data-chain]'.format(table)) - .forEach(function(cdiv) { - if (!seen_chains[cdiv.getAttribute('data-chain')]) { - cdiv.parentNode.removeChild(cdiv); - return; - } - - cdiv.querySelectorAll('.target').forEach(function(tspan) { - if (seen_chains[tspan.textContent]) { - tspan.classList.add('jump'); - tspan.addEventListener('click', jump_target); - } - }); - - cdiv.querySelectorAll('.references').forEach(function(rspan) { - var refs = chain_refs[cdiv.getAttribute('data-chain')]; - if (refs && refs.length) { - rspan.classList.add('cbi-tooltip-container'); - rspan.appendChild(E('small', { 'class': 'cbi-tooltip ifacebadge', 'style': 'top:1em; left:auto' }, [ E('ul') ])); - - refs.forEach(function(ref) { - var chain = ref[0].parentNode.getAttribute('data-chain'), - num = ref[1]; - - rspan.lastElementChild.lastElementChild.appendChild(E('li', {}, [ - '<%:Chain%> ', - E('span', { - 'class': 'jump', - 'data-num': num, - 'onclick': 'jump_target(event)' - }, chain), - ', <%:Rule%> #%d'.format(num) - ])); - }); - } - }); - }); - } - - table_names.forEach(function(table) { - XHR.poll(5, '<%=url("admin/status/iptables_dump", tostring(mode))%>/' + table.toLowerCase(), null, - function (xhr) { - parse_output(table, xhr.responseText); - }); - }); -//]]></script> - <h2 name="content"><%:Firewall Status%></h2> <% if has_ip6tables then %> <ul class="cbi-tabmenu"> - <li class="cbi-tab<%= mode ~= 4 and "-disabled" %>"><a href="<%=url("admin/status/iptables/4")%>"><%:IPv4 Firewall%></a></li> - <li class="cbi-tab<%= mode ~= 6 and "-disabled" %>"><a href="<%=url("admin/status/iptables/6")%>"><%:IPv6 Firewall%></a></li> + <li data-mode="4" class="cbi-tab<%= mode ~= 4 and "-disabled" %>"> + <a href="<%=url("admin/status/iptables/4")%>"><%:IPv4 Firewall%></a> + </li> + <li data-mode="6" class="cbi-tab<%= mode ~= 6 and "-disabled" %>"> + <a href="<%=url("admin/status/iptables/6")%>"><%:IPv6 Firewall%></a> + </li> </ul> <% end %> @@ -314,7 +65,9 @@ </div> <div id="iptables"> - <p><em><%:Collecting data...%></em></p> + <p><em class="spinning"><%:Collecting data...%></em></p> </div> +<script type="text/javascript" src="<%=resource%>/view/status/iptables.js"></script> + <%+footer%> diff --git a/modules/luci-mod-status/luasrc/view/admin_status/load.htm b/modules/luci-mod-status/luasrc/view/admin_status/load.htm index bced06fa22..d31d340621 100644 --- a/modules/luci-mod-status/luasrc/view/admin_status/load.htm +++ b/modules/luci-mod-status/luasrc/view/admin_status/load.htm @@ -1,5 +1,5 @@ <%# - Copyright 2010 Jo-Philipp Wich <jow@openwrt.org> + Copyright 2010-2018 Jo-Philipp Wich <jo@mein.io> Licensed to the public under the Apache License 2.0. -%> @@ -19,7 +19,7 @@ var step = 5; var data_wanted = Math.floor(width / step); - var data_fill = 0; + var data_fill = 1; var data_stamp = 0; var data_01 = [ ]; @@ -148,12 +148,15 @@ if (data[i][TIME] <= data_stamp) continue; + data_fill++; + data_01.push(data[i][L01]); data_05.push(data[i][L05]); data_15.push(data[i][L15]); } /* cut off outdated entries */ + data_fill = Math.min(data_fill, data_wanted); data_01 = data_01.slice(data_01.length - data_wanted, data_01.length); data_05 = data_05.slice(data_05.length - data_wanted, data_05.length); data_15 = data_15.slice(data_15.length - data_wanted, data_15.length); @@ -169,20 +172,15 @@ data_05_peak = Math.max(data_05_peak, data_05[i]); data_15_peak = Math.max(data_15_peak, data_15[i]); - if (i > 0) - { - data_01_avg = (data_01_avg + data_01[i]) / 2; - data_05_avg = (data_05_avg + data_05[i]) / 2; - data_15_avg = (data_15_avg + data_15[i]) / 2; - } - else - { - data_01_avg = data_01[i]; - data_05_avg = data_05[i]; - data_15_avg = data_15[i]; - } + data_01_avg += data_01[i]; + data_05_avg += data_05[i]; + data_15_avg += data_15[i]; } + data_01_avg = data_01_avg / data_fill; + data_05_avg = data_05_avg / data_fill; + data_15_avg = data_15_avg / data_fill; + /* remember current timestamp, calculate horizontal scale */ data_stamp = data[data.length-1][TIME]; data_scale = height / (data_max * 1.1); diff --git a/modules/luci-mod-status/luasrc/view/admin_status/wireless.htm b/modules/luci-mod-status/luasrc/view/admin_status/wireless.htm index 03ea2bef01..5ac2eb462d 100644 --- a/modules/luci-mod-status/luasrc/view/admin_status/wireless.htm +++ b/modules/luci-mod-status/luasrc/view/admin_status/wireless.htm @@ -1,5 +1,5 @@ <%# - Copyright 2011 Jo-Philipp Wich <jow@openwrt.org> + Copyright 2011-2018 Jo-Philipp Wich <jo@mein.io> Licensed to the public under the Apache License 2.0. -%> @@ -33,7 +33,7 @@ var step = 5; var data_wanted = Math.floor(width / step); - var data_fill = 0; + var data_fill = 1; var data_stamp = 0; var data_rssi = [ ]; @@ -201,12 +201,15 @@ if (data[i][TIME] <= data_stamp) continue; + data_fill++; + data_rssi.push(data[i][RSSI] - noise_floor); data_noise.push(data[i][NOISE] - noise_floor); data_rate.push(Math.floor(data[i][RATE] / 1000)); } /* cut off outdated entries */ + data_fill = Math.min(data_fill, data_wanted); data_rssi = data_rssi.slice(data_rssi.length - data_wanted, data_rssi.length); data_noise = data_noise.slice(data_noise.length - data_wanted, data_noise.length); data_rate = data_rate.slice(data_rate.length - data_wanted, data_rate.length); @@ -221,20 +224,15 @@ data_noise_peak = Math.max(data_noise_peak, data_noise[i]); data_rate_peak = Math.max(data_rate_peak, data_rate[i]); - if (i > 0) - { - data_rssi_avg = (data_rssi_avg + data_rssi[i]) / 2; - data_noise_avg = (data_noise_avg + data_noise[i]) / 2; - data_rate_avg = (data_rate_avg + data_rate[i]) / 2; - } - else - { - data_rssi_avg = data_rssi[i]; - data_noise_avg = data_noise[i]; - data_rate_avg = data_rate[i]; - } + data_rssi_avg += data_rssi[i]; + data_noise_avg += data_noise[i]; + data_rate_avg += data_rate[i]; } + data_rssi_avg = data_rssi_avg / data_fill; + data_noise_avg = data_noise_avg / data_fill; + data_rate_avg = data_rate_avg / data_fill; + /* remember current timestamp, calculate horizontal scale */ data_stamp = data[data.length-1][TIME]; data_scale = (height / (data_max * 1.1)).toFixed(1); diff --git a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js new file mode 100644 index 0000000000..7a79d7e2da --- /dev/null +++ b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js @@ -0,0 +1,31 @@ +function submitPassword(ev) { + var pw1 = document.body.querySelector('[name="pw1"]'), + pw2 = document.body.querySelector('[name="pw2"]'); + + if (!pw1.value.length || !pw2.value.length) + return; + + if (pw1.value === pw2.value) { + L.showModal(_('Change login password'), + E('p', { class: 'spinning' }, _('Changing password…'))); + + L.post('admin/system/admin/password/json', { password: pw1.value }, + function() { + showModal(_('Change login password'), [ + E('div', _('The system password has been successfully changed.')), + E('div', { 'class': 'right' }, + E('div', { class: 'btn', click: L.hideModal }, _('Dismiss'))) + ]); + + pw1.value = pw2.value = ''; + }); + } + else { + L.showModal(_('Change login password'), [ + E('div', { class: 'alert-message warning' }, + _('Given password confirmation did not match, password not changed!')), + E('div', { 'class': 'right' }, + E('div', { class: 'btn', click: L.hideModal }, _('Dismiss'))) + ]); + } +} diff --git a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js new file mode 100644 index 0000000000..d298b3be98 --- /dev/null +++ b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js @@ -0,0 +1,215 @@ +SSHPubkeyDecoder.prototype = { + lengthDecode: function(s, off) + { + var l = (s.charCodeAt(off++) << 24) | + (s.charCodeAt(off++) << 16) | + (s.charCodeAt(off++) << 8) | + s.charCodeAt(off++); + + if (l < 0 || (off + l) > s.length) + return -1; + + return l; + }, + + decode: function(s) + { + var parts = s.split(/\s+/); + if (parts.length < 2) + return null; + + var key = null; + try { key = atob(parts[1]); } catch(e) {} + if (!key) + return null; + + var off, len; + + off = 0; + len = this.lengthDecode(key, off); + + if (len <= 0) + return null; + + var type = key.substr(off + 4, len); + if (type !== parts[0]) + return null; + + off += 4 + len; + + var len1 = off < key.length ? this.lengthDecode(key, off) : 0; + if (len1 <= 0) + return null; + + var curve = null; + if (type.indexOf('ecdsa-sha2-') === 0) { + curve = key.substr(off + 4, len1); + + if (!len1 || type.substr(11) !== curve) + return null; + + type = 'ecdsa-sha2'; + curve = curve.replace(/^nistp(\d+)$/, 'NIST P-$1'); + } + + off += 4 + len1; + + var len2 = off < key.length ? this.lengthDecode(key, off) : 0; + if (len2 < 0) + return null; + + if (len1 & 1) + len1--; + + if (len2 & 1) + len2--; + + var comment = parts.slice(2).join(' '), + fprint = parts[1].length > 68 ? parts[1].substr(0, 33) + '…' + parts[1].substr(-34) : parts[1]; + + switch (type) + { + case 'ssh-rsa': + return { type: 'RSA', bits: len2 * 8, comment: comment, fprint: fprint }; + + case 'ssh-dss': + return { type: 'DSA', bits: len1 * 8, comment: comment, fprint: fprint }; + + case 'ssh-ed25519': + return { type: 'ECDH', curve: 'Curve25519', comment: comment, fprint: fprint }; + + case 'ecdsa-sha2': + return { type: 'ECDSA', curve: curve, comment: comment, fprint: fprint }; + + default: + return null; + } + } +}; + +function SSHPubkeyDecoder() {} + +function renderKeys(keys) { + var list = document.querySelector('.cbi-dynlist[name="sshkeys"]'), + decoder = new SSHPubkeyDecoder(); + + while (!matchesElem(list.firstElementChild, '.add-item')) + list.removeChild(list.firstElementChild); + + keys.forEach(function(key) { + var pubkey = decoder.decode(key); + if (pubkey) + list.insertBefore(E('div', { + class: 'item', + click: removeKey, + 'data-key': key + }, [ + E('strong', pubkey.comment || _('Unnamed key')), E('br'), + E('small', [ + '%s, %s'.format(pubkey.type, pubkey.curve || _('%d Bit').format(pubkey.bits)), + E('br'), E('code', pubkey.fprint) + ]) + ]), list.lastElementChild); + }); + + if (list.firstElementChild === list.lastElementChild) + list.insertBefore(E('p', _('No public keys present yet.')), list.lastElementChild); +} + +function saveKeys(keys) { + L.showModal(_('Add key'), E('div', { class: 'spinning' }, _('Saving keys…'))); + L.post('admin/system/admin/sshkeys/json', { keys: JSON.stringify(keys) }, function(xhr, keys) { + renderKeys(keys); + L.hideModal(); + }); +} + +function addKey(ev) { + var decoder = new SSHPubkeyDecoder(), + list = findParent(ev.target, '.cbi-dynlist'), + input = list.querySelector('input[type="text"]'), + key = input.value.trim(), + pubkey = decoder.decode(key), + keys = []; + + if (!key.length) + return; + + list.querySelectorAll('.item').forEach(function(item) { + keys.push(item.getAttribute('data-key')); + }); + + if (keys.indexOf(key) !== -1) { + L.showModal(_('Add key'), [ + E('div', { class: 'alert-message warning' }, _('The given SSH public key has already been added.')), + E('div', { class: 'right' }, E('div', { class: 'btn', click: L.hideModal }, _('Close'))) + ]); + } + else if (!pubkey) { + L.showModal(_('Add key'), [ + E('div', { class: 'alert-message warning' }, _('The given SSH public key is invalid. Please supply proper public RSA or ECDSA keys.')), + E('div', { class: 'right' }, E('div', { class: 'btn', click: L.hideModal }, _('Close'))) + ]); + } + else { + keys.push(key); + saveKeys(keys); + input.value = ''; + } +} + +function removeKey(ev) { + var list = findParent(ev.target, '.cbi-dynlist'), + delkey = ev.target.getAttribute('data-key'), + keys = []; + + list.querySelectorAll('.item').forEach(function(item) { + var key = item.getAttribute('data-key'); + if (key !== delkey) + keys.push(key); + }); + + L.showModal(_('Delete key'), [ + E('div', _('Do you really want to delete the following SSH key?')), + E('pre', delkey), + E('div', { class: 'right' }, [ + E('div', { class: 'btn', click: L.hideModal }, _('Cancel')), + ' ', + E('div', { class: 'btn danger', click: function(ev) { saveKeys(keys) } }, _('Delete key')), + ]) + ]); +} + +function dragKey(ev) { + ev.stopPropagation(); + ev.preventDefault(); + ev.dataTransfer.dropEffect = 'copy'; +} + +function dropKey(ev) { + var file = ev.dataTransfer.files[0], + input = ev.currentTarget.querySelector('input[type="text"]'), + reader = new FileReader(); + + if (file) { + reader.onload = function(rev) { + input.value = rev.target.result.trim(); + addKey(ev); + input.value = ''; + }; + + reader.readAsText(file); + } + + ev.stopPropagation(); + ev.preventDefault(); +} + +window.addEventListener('dragover', function(ev) { ev.preventDefault() }); +window.addEventListener('drop', function(ev) { ev.preventDefault() }); + +requestAnimationFrame(function() { + L.get('admin/system/admin/sshkeys/json', null, function(xhr, keys) { + renderKeys(keys); + }); +}); diff --git a/modules/luci-mod-system/luasrc/controller/admin/system.lua b/modules/luci-mod-system/luasrc/controller/admin/system.lua index 4e83769ee0..3e58896d63 100644 --- a/modules/luci-mod-system/luasrc/controller/admin/system.lua +++ b/modules/luci-mod-system/luasrc/controller/admin/system.lua @@ -10,11 +10,14 @@ function index() entry({"admin", "system", "system"}, cbi("admin_system/system"), _("System"), 1) entry({"admin", "system", "clock_status"}, post_on({ set = true }, "action_clock_status")) - entry({"admin", "system", "admin"}, cbi("admin_system/admin"), _("Administration"), 2) - - if fs.access("/bin/opkg") then - entry({"admin", "system", "packages"}, post_on({ exec = "1" }, "action_packages"), _("Software"), 10) - entry({"admin", "system", "packages", "ipkg"}, form("admin_system/ipkg")) + entry({"admin", "system", "admin"}, firstchild(), _("Administration"), 2) + entry({"admin", "system", "admin", "password"}, template("admin_system/password"), _("Router Password"), 1) + entry({"admin", "system", "admin", "password", "json"}, post("action_password")) + + if fs.access("/etc/config/dropbear") then + entry({"admin", "system", "admin", "dropbear"}, cbi("admin_system/dropbear"), _("SSH Access"), 2) + entry({"admin", "system", "admin", "sshkeys"}, template("admin_system/sshkeys"), _("SSH-Keys"), 3) + entry({"admin", "system", "admin", "sshkeys", "json"}, post_on({ keys = true }, "action_sshkeys")) end entry({"admin", "system", "startup"}, form("admin_system/startup"), _("Startup"), 45) @@ -61,124 +64,6 @@ function action_clock_status() luci.http.write_json({ timestring = os.date("%c") }) end -function action_packages() - local fs = require "nixio.fs" - local ipkg = require "luci.model.ipkg" - local submit = (luci.http.formvalue("exec") == "1") - local update, upgrade - local changes = false - local install = { } - local remove = { } - local stdout = { "" } - local stderr = { "" } - local out, err - - -- Display - local display = luci.http.formvalue("display") or "available" - - -- Letter - local letter = string.byte(luci.http.formvalue("letter") or "A", 1) - letter = (letter == 35 or (letter >= 65 and letter <= 90)) and letter or 65 - - -- Search query - local query = luci.http.formvalue("query") - query = (query ~= '') and query or nil - - - -- Modifying actions - if submit then - -- Packets to be installed - local ninst = luci.http.formvalue("install") - local uinst = nil - - -- Install from URL - local url = luci.http.formvalue("url") - if url and url ~= '' then - uinst = url - end - - -- Do install - if ninst then - install[ninst], out, err = ipkg.install(ninst) - stdout[#stdout+1] = out - stderr[#stderr+1] = err - changes = true - end - - if uinst then - local pkg - for pkg in luci.util.imatch(uinst) do - install[uinst], out, err = ipkg.install(pkg) - stdout[#stdout+1] = out - stderr[#stderr+1] = err - changes = true - end - end - - -- Remove packets - local rem = luci.http.formvalue("remove") - if rem then - remove[rem], out, err = ipkg.remove(rem) - stdout[#stdout+1] = out - stderr[#stderr+1] = err - changes = true - end - - - -- Update all packets - update = luci.http.formvalue("update") - if update then - update, out, err = ipkg.update() - stdout[#stdout+1] = out - stderr[#stderr+1] = err - end - - - -- Upgrade all packets - upgrade = luci.http.formvalue("upgrade") - if upgrade then - upgrade, out, err = ipkg.upgrade() - stdout[#stdout+1] = out - stderr[#stderr+1] = err - end - end - - - -- List state - local no_lists = true - local old_lists = false - if fs.access("/var/opkg-lists/") then - local list - for list in fs.dir("/var/opkg-lists/") do - no_lists = false - if (fs.stat("/var/opkg-lists/"..list, "mtime") or 0) < (os.time() - (24 * 60 * 60)) then - old_lists = true - break - end - end - end - - - luci.template.render("admin_system/packages", { - display = display, - letter = letter, - query = query, - install = install, - remove = remove, - update = update, - upgrade = upgrade, - no_lists = no_lists, - old_lists = old_lists, - stdout = table.concat(stdout, ""), - stderr = table.concat(stderr, "") - }) - - -- Remove index cache - if changes then - fs.unlink("/tmp/luci-indexcache") - end -end - local function image_supported(image) return (os.execute("sysupgrade -T %q >/dev/null" % image) == 0) end @@ -301,38 +186,32 @@ function action_sysupgrade() msg = luci.i18n.translate("The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a few minutes before you try to reconnect. It might be necessary to renew the address of your computer to reach the device again, depending on your settings."), addr = (#keep > 0) and (#force > 0) and "192.168.1.1" or nil }) - fork_exec("sleep 1; killall dropbear uhttpd; sleep 1; /sbin/sysupgrade %s %s %q" %{ keep, force, image_tmp }) + luci.sys.process.exec({ "/bin/sh", "-c","sleep 1; killall dropbear uhttpd; sleep 1; /sbin/sysupgrade %s %s %q" %{ keep, force, image_tmp } }, nil, nil, true) end end function action_backup() - local reader = ltn12_popen("sysupgrade --create-backup - 2>/dev/null") - - luci.http.header( - 'Content-Disposition', 'attachment; filename="backup-%s-%s.tar.gz"' %{ - luci.sys.hostname(), - os.date("%Y-%m-%d") - }) + luci.http.header('Content-Disposition', 'attachment; filename="backup-%s-%s.tar.gz"' + %{ luci.sys.hostname(), os.date("%Y-%m-%d") }) luci.http.prepare_content("application/x-targz") - luci.ltn12.pump.all(reader, luci.http.write) + luci.sys.process.exec({ "/sbin/sysupgrade", "--create-backup", "-" }, luci.http.write) end function action_backupmtdblock() - local http = require "luci.http" - local mv = http.formvalue("mtdblockname") - local m, s, n = mv:match('^([^%s]+)/([^%s]+)/([^%s]+)') + local mv = luci.http.formvalue("mtdblockname") or "" + local m, n = mv:match('^([^%s%./"]+)/%d+/(%d+)$') - local reader = ltn12_popen("dd if=/dev/mtd%s conv=fsync,notrunc 2>/dev/null" % n) + if not m and n then + luci.http.status(400, "Bad Request") + return + end - luci.http.header( - 'Content-Disposition', 'attachment; filename="backup-%s-%s-%s.bin"' %{ - luci.sys.hostname(), m, - os.date("%Y-%m-%d") - }) + luci.http.header('Content-Disposition', 'attachment; filename="backup-%s-%s-%s.bin"' + %{ luci.sys.hostname(), m, os.date("%Y-%m-%d") }) luci.http.prepare_content("application/octet-stream") - luci.ltn12.pump.all(reader, luci.http.write) + luci.sys.process.exec({ "/bin/dd", "if=/dev/mtd%s" % n, "conv=fsync,notrunc" }, luci.http.write) end function action_restore() @@ -387,83 +266,74 @@ function action_reset() addr = "192.168.1.1" }) - fork_exec("sleep 1; killall dropbear uhttpd; sleep 1; jffs2reset -y && reboot") + luci.sys.process.exec({ "/bin/sh", "-c", "sleep 1; killall dropbear uhttpd; sleep 1; jffs2reset -y && reboot" }, nil, nil, true) return end http.redirect(luci.dispatcher.build_url('admin/system/flashops')) end -function action_passwd() - local p1 = luci.http.formvalue("pwd1") - local p2 = luci.http.formvalue("pwd2") - local stat = nil - - if p1 or p2 then - if p1 == p2 then - stat = luci.sys.user.setpasswd("root", p1) - else - stat = 10 - end +function action_password() + local password = luci.http.formvalue("password") + if not password then + luci.http.status(400, "Bad Request") + return end - luci.template.render("admin_system/passwd", {stat=stat}) + luci.http.prepare_content("application/json") + luci.http.write_json({ code = luci.sys.user.setpasswd("root", password) }) end -function action_reboot() - luci.sys.reboot() -end +function action_sshkeys() + local keys = luci.http.formvalue("keys") + if keys then + keys = luci.jsonc.parse(keys) + if not keys or type(keys) ~= "table" then + luci.http.status(400, "Bad Request") + return + end -function fork_exec(command) - local pid = nixio.fork() - if pid > 0 then - return - elseif pid == 0 then - -- change to root dir - nixio.chdir("/") - - -- patch stdin, out, err to /dev/null - local null = nixio.open("/dev/null", "w+") - if null then - nixio.dup(null, nixio.stderr) - nixio.dup(null, nixio.stdout) - nixio.dup(null, nixio.stdin) - if null:fileno() > 2 then - null:close() + local fd, err = io.open("/etc/dropbear/authorized_keys", "w") + if not fd then + luci.http.status(503, err) + return + end + + local _, k + for _, k in ipairs(keys) do + if type(k) == "string" and k:match("^%w+%-") then + fd:write(k) + fd:write("\n") end end - -- replace with target command - nixio.exec("/bin/sh", "-c", command) + fd:close() end -end - -function ltn12_popen(command) - - local fdi, fdo = nixio.pipe() - local pid = nixio.fork() - if pid > 0 then - fdo:close() - local close - return function() - local buffer = fdi:read(2048) - local wpid, stat = nixio.waitpid(pid, "nohang") - if not close and wpid and stat == "exited" then - close = true - end + local fd, err = io.open("/etc/dropbear/authorized_keys", "r") + if not fd then + luci.http.status(503, err) + return + end - if buffer and #buffer > 0 then - return buffer - elseif close then - fdi:close() - return nil - end + local rv = {} + while true do + local ln = fd:read("*l") + if not ln then + break + elseif ln:match("^[%w%-]+%s+[A-Za-z0-9+/=]+$") or + ln:match("^[%w%-]+%s+[A-Za-z0-9+/=]+%s") + then + rv[#rv+1] = ln end - elseif pid == 0 then - nixio.dup(fdo, nixio.stdout) - fdi:close() - fdo:close() - nixio.exec("/bin/sh", "-c", command) end + + fd:close() + + luci.http.prepare_content("application/json") + luci.http.write_json(rv) +end + +function action_reboot() + luci.sys.reboot() end diff --git a/modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua b/modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua deleted file mode 100644 index 34289533bf..0000000000 --- a/modules/luci-mod-system/luasrc/model/cbi/admin_system/admin.lua +++ /dev/null @@ -1,124 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -local fs = require "nixio.fs" - -m = Map("system", translate("Router Password"), - translate("Changes the administrator password for accessing the device")) -m.apply_on_parse = true - -s = m:section(TypedSection, "_dummy", "") -s.addremove = false -s.anonymous = true - -pw1 = s:option(Value, "pw1", translate("Password")) -pw1.password = true - -pw2 = s:option(Value, "pw2", translate("Confirmation")) -pw2.password = true - -function s.cfgsections() - return { "_pass" } -end - -function m.parse(map) - local v1 = pw1:formvalue("_pass") - local v2 = pw2:formvalue("_pass") - - if v1 and v2 and #v1 > 0 and #v2 > 0 then - if v1 == v2 then - if luci.sys.user.setpasswd(luci.dispatcher.context.authuser, v1) == 0 then - m.message = translate("Password successfully changed!") - else - m.message = translate("Unknown Error, password not changed!") - end - else - m.message = translate("Given password confirmation did not match, password not changed!") - end - end - - Map.parse(map) -end - - -if fs.access("/etc/config/dropbear") then - -m2 = Map("dropbear", translate("SSH Access"), - translate("Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server")) -m2.apply_on_parse = true - -s = m2:section(TypedSection, "dropbear", translate("Dropbear Instance")) -s.anonymous = true -s.addremove = true - - -ni = s:option(Value, "Interface", translate("Interface"), - translate("Listen only on the given interface or, if unspecified, on all")) - -ni.template = "cbi/network_netlist" -ni.nocreate = true -ni.unspecified = true - - -pt = s:option(Value, "Port", translate("Port"), - translate("Specifies the listening port of this <em>Dropbear</em> instance")) - -pt.datatype = "port" -pt.default = 22 - - -pa = s:option(Flag, "PasswordAuth", translate("Password authentication"), - translate("Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication")) - -pa.enabled = "on" -pa.disabled = "off" -pa.default = pa.enabled -pa.rmempty = false - - -ra = s:option(Flag, "RootPasswordAuth", translate("Allow root logins with password"), - translate("Allow the <em>root</em> user to login with password")) - -ra.enabled = "on" -ra.disabled = "off" -ra.default = ra.enabled - - -gp = s:option(Flag, "GatewayPorts", translate("Gateway ports"), - translate("Allow remote hosts to connect to local SSH forwarded ports")) - -gp.enabled = "on" -gp.disabled = "off" -gp.default = gp.disabled - - -s2 = m2:section(TypedSection, "_dummy", translate("SSH-Keys"), - translate("Here you can paste public SSH-Keys (one per line) for SSH public-key authentication.")) -s2.addremove = false -s2.anonymous = true -s2.template = "cbi/tblsection" - -function s2.cfgsections() - return { "_keys" } -end - -keys = s2:option(TextValue, "_data", "") -keys.wrap = "off" -keys.rows = 3 - -function keys.cfgvalue() - return fs.readfile("/etc/dropbear/authorized_keys") or "" -end - -function keys.write(self, section, value) - return fs.writefile("/etc/dropbear/authorized_keys", value:gsub("\r\n", "\n")) -end - -function keys.remove(self, section, value) - return fs.writefile("/etc/dropbear/authorized_keys", "") -end - -end - -return m, m2 diff --git a/modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua b/modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua new file mode 100644 index 0000000000..1a1695d2be --- /dev/null +++ b/modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua @@ -0,0 +1,53 @@ +-- Copyright 2008 Steven Barth <steven@midlink.org> +-- Copyright 2011-2018 Jo-Philipp Wich <jo@mein.io> +-- Licensed to the public under the Apache License 2.0. + +m = Map("dropbear", translate("SSH Access"), + translate("Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server")) +m.apply_on_parse = true + +s = m:section(TypedSection, "dropbear", translate("Dropbear Instance")) +s.anonymous = true +s.addremove = true + + +ni = s:option(Value, "Interface", translate("Interface"), + translate("Listen only on the given interface or, if unspecified, on all")) + +ni.template = "cbi/network_netlist" +ni.nocreate = true +ni.unspecified = true + + +pt = s:option(Value, "Port", translate("Port"), + translate("Specifies the listening port of this <em>Dropbear</em> instance")) + +pt.datatype = "port" +pt.default = 22 + + +pa = s:option(Flag, "PasswordAuth", translate("Password authentication"), + translate("Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication")) + +pa.enabled = "on" +pa.disabled = "off" +pa.default = pa.enabled +pa.rmempty = false + + +ra = s:option(Flag, "RootPasswordAuth", translate("Allow root logins with password"), + translate("Allow the <em>root</em> user to login with password")) + +ra.enabled = "on" +ra.disabled = "off" +ra.default = ra.enabled + + +gp = s:option(Flag, "GatewayPorts", translate("Gateway ports"), + translate("Allow remote hosts to connect to local SSH forwarded ports")) + +gp.enabled = "on" +gp.disabled = "off" +gp.default = gp.disabled + +return m diff --git a/modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua b/modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua index 6f0921fdcf..4a31146a03 100644 --- a/modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua +++ b/modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua @@ -117,14 +117,14 @@ function used.cfgvalue(self, section) end unmount = v:option(Button, "unmount", translate("Unmount")) +function unmount.cfgvalue(self, section) + return non_system_mounts[section].umount +end + unmount.render = function(self, section, scope) - if non_system_mounts[section].umount then - self.title = translate("Unmount") - self.inputstyle = "remove" - Button.render(self, section, scope) - else - luci.http.write(" ") - end + self.title = translate("Unmount") + self.inputstyle = "remove" + Button.render(self, section, scope) end unmount.write = function(self, section) diff --git a/modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua b/modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua deleted file mode 100644 index 7c6d7e1c66..0000000000 --- a/modules/luci-mod-system/luasrc/model/cbi/admin_system/ipkg.lua +++ /dev/null @@ -1,64 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Copyright 2008-2011 Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -local ipkgfile = "/etc/opkg.conf" -local distfeeds = "/etc/opkg/distfeeds.conf" -local customfeeds = "/etc/opkg/customfeeds.conf" - -f = SimpleForm("ipkgconf", translate("OPKG-Configuration"), translate("General options for opkg")) - -f:append(Template("admin_system/ipkg")) - -t = f:field(TextValue, "lines") -t.wrap = "off" -t.rows = 10 -function t.cfgvalue() - return nixio.fs.readfile(ipkgfile) or "" -end - -function t.write(self, section, data) - return nixio.fs.writefile(ipkgfile, data:gsub("\r\n", "\n")) -end - -function f.handle(self, state, data) - return true -end - -g = SimpleForm("distfeedconf", translate("Distribution feeds"), - translate("Build/distribution specific feed definitions. This file will NOT be preserved in any sysupgrade.")) - -d = g:field(TextValue, "lines2") -d.wrap = "off" -d.rows = 10 -function d.cfgvalue() - return nixio.fs.readfile(distfeeds) or "" -end - -function d.write(self, section, data) - return nixio.fs.writefile(distfeeds, data:gsub("\r\n", "\n")) -end - -function g.handle(self, state, data) - return true -end - -h = SimpleForm("customfeedconf", translate("Custom feeds"), - translate("Custom feed definitions, e.g. private feeds. This file can be preserved in a sysupgrade.")) - -c = h:field(TextValue, "lines3") -c.wrap = "off" -c.rows = 10 -function c.cfgvalue() - return nixio.fs.readfile(customfeeds) or "" -end - -function c.write(self, section, data) - return nixio.fs.writefile(customfeeds, data:gsub("\r\n", "\n")) -end - -function h.handle(self, state, data) - return true -end - -return f, g, h diff --git a/modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua b/modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua index 7558d42161..c26fd475a4 100644 --- a/modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua +++ b/modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua @@ -153,7 +153,7 @@ function o.write(self, section, value) end -o = s:taboption("language", ListValue, "_mediaurlbase", translate("Design")) +o = s:taboption("language", ListValue, "_mediaurlbase", translate("Theme")) for k, v in pairs(conf.themes) do if k:sub(1, 1) ~= "." then o:value(v, k) diff --git a/modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm b/modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm deleted file mode 100644 index a7ff4e50bd..0000000000 --- a/modules/luci-mod-system/luasrc/view/admin_system/ipkg.htm +++ /dev/null @@ -1,10 +0,0 @@ -<%# - Copyright 2008 Steven Barth <steven@midlink.org> - Copyright 2008 Jo-Philipp Wich <jow@openwrt.org> - Licensed to the public under the Apache License 2.0. --%> - -<ul class="cbi-tabmenu"> - <li class="cbi-tab-disabled"><a href="<%=url("admin/system/packages")%>"><%:Actions%></a></li> - <li class="cbi-tab"><a href="#"><%:Configuration%></a></li> -</ul> diff --git a/modules/luci-mod-system/luasrc/view/admin_system/packages.htm b/modules/luci-mod-system/luasrc/view/admin_system/packages.htm deleted file mode 100644 index 9e364d69ae..0000000000 --- a/modules/luci-mod-system/luasrc/view/admin_system/packages.htm +++ /dev/null @@ -1,213 +0,0 @@ -<%# - Copyright 2008 Steven Barth <steven@midlink.org> - Copyright 2008-2010 Jo-Philipp Wich <jow@openwrt.org> - Licensed to the public under the Apache License 2.0. --%> - -<%- -local opkg = require "luci.model.ipkg" -local fs = require "nixio.fs" -local wa = require "luci.tools.webadmin" -local rowcnt = 1 - -function rowstyle() - rowcnt = rowcnt + 1 - return (rowcnt % 2) + 1 -end - -local fstat = fs.statvfs(opkg.overlay_root()) -local space_total = fstat and fstat.blocks or 0 -local space_free = fstat and fstat.bfree or 0 -local space_used = space_total - space_free - -local used_perc = math.floor(0.5 + ((space_total > 0) and ((100 / space_total) * space_used) or 100)) -local free_byte = space_free * fstat.frsize - -local filter = { } - - -local opkg_list = luci.model.ipkg.list_all -local querypat -if query and #query > 0 then - querypat = '*%s*' % query - opkg_list = luci.model.ipkg.find -end - -local letterpat -if letter == 35 then - letterpat = "[^a-z]*" -else - letterpat = string.char(letter, 42) -- 'A' '*' -end - --%> - -<%+header%> - - -<h2 name="content"><%:Software%></h2> - -<div class="cbi-map"> - - <ul class="cbi-tabmenu"> - <li class="cbi-tab"><a href="#"><%:Actions%></a></li> - <li class="cbi-tab-disabled"><a href="<%=REQUEST_URI%>/ipkg"><%:Configuration%></a></li> - </ul> - - <form method="post" action="<%=REQUEST_URI%>"> - <input type="hidden" name="exec" value="1" /> - <input type="hidden" name="token" value="<%=token%>" /> - - <div class="cbi-section"> - <div class="cbi-section-node"> - <% if (install and next(install)) or (remove and next(remove)) or update or upgrade then %> - <div class="cbi-value"> - <% if #stdout > 0 then %><pre><%=pcdata(stdout)%></pre><% end %> - <% if #stderr > 0 then %><pre class="error"><%=pcdata(stderr)%></pre><% end %> - </div> - <% end %> - - <% if querypat then %> - <div class="cbi-value"> - <%:Displaying only packages containing%> <strong>"<%=pcdata(query)%>"</strong> - <input type="button" onclick="location.href='?display=<%=luci.http.urlencode(display)%>'" href="#" class="cbi-button cbi-button-reset" style="margin-left:1em" value="<%:Reset%>" /> - <br style="clear:both" /> - </div> - <% end %> - - <% if no_lists or old_lists then %> - <div class="cbi-value"> - <% if old_lists then %> - <%:Package lists are older than 24 hours%> - <% else %> - <%:No package lists available%> - <% end %> - <input type="submit" name="update" href="#" class="cbi-button cbi-button-apply" style="margin-left:3em" value="<%:Update lists%>" /> - </div> - <% end %> - - <div class="cbi-value cbi-value-last"> - <%:Free space%>: <strong><%=(100-used_perc)%>%</strong> (<strong><%=wa.byte_format(free_byte)%></strong>) - <div style="margin:3px 0; width:300px; height:10px; border:1px solid #000000; background-color:#80C080" id="swfreespace"> - <div style="background-color:#F08080; border-right:1px solid #000000; height:100%; width:<%=used_perc%>%"> </div> - </div> - </div> - </div> - - <br /> - - <div class="cbi-section-node"> - <input type="hidden" name="display" value="<%=pcdata(display)%>" /> - - <div class="cbi-value"> - <label class="cbi-value-title"><%:Download and install package%>:</label> - <div class="cbi-value-field"> - <span><input type="text" name="url" size="30" <% if no_lists then %>disabled="disabled" placeholder="<%:Please update package lists first%>"<% end %> value="" /></span> - <input class="cbi-button cbi-button-save" type="submit" name="go" <% if no_lists then %>disabled="disabled"<% end %> value="<%:OK%>" /> - </div> - </div> - - <div class="cbi-value cbi-value-last"> - <label class="cbi-value-title"><%:Filter%>:</label> - <div class="cbi-value-field"> - <span><input type="text" name="query" size="20" <% if no_lists then %>disabled="disabled" placeholder="<%:Please update package lists first%>"<% else %>value="<%=pcdata(query)%>"<% end %> /></span> - <input type="submit" class="cbi-button cbi-button-action" name="search" <% if no_lists then %>disabled="disabled"<% end %> value="<%:Find package%>" /> - </div> - </div> - </div> - </div> - </form> - - - <h3><%:Status%></h3> - - - <ul class="cbi-tabmenu"> - <li class="cbi-tab<% if display ~= "available" then %>-disabled<% end %>"><a href="?display=available&query=<%=pcdata(query)%>"><%:Available packages%><% if query then %> (<%=pcdata(query)%>)<% end %></a></li> - <li class="cbi-tab<% if display ~= "installed" then %>-disabled<% end %>"><a href="?display=installed&query=<%=pcdata(query)%>"><%:Installed packages%><% if query then %> (<%=pcdata(query)%>)<% end %></a></li> - </ul> - - <% if display ~= "available" then %> - <div class="cbi-section"> - <div class="cbi-section-node"> - <div class="table"> - <div class="tr cbi-section-table-titles"> - <div class="th left"><%:Package name%></div> - <div class="th left"><%:Version%></div> - <div class="th cbi-section-actions"> </div> - </div> - <% local empty = true; luci.model.ipkg.list_installed(querypat, function(n, v, s, d) empty = false; filter[n] = true %> - <div class="tr cbi-rowstyle-<%=rowstyle()%>"> - <div class="td left"><%=luci.util.pcdata(n)%></div> - <div class="td left"><%=luci.util.pcdata(v)%></div> - <div class="td cbi-section-actions"> - <form method="post" class="inline" action="<%=REQUEST_URI%>"> - <input type="hidden" name="exec" value="1" /> - <input type="hidden" name="token" value="<%=token%>" /> - <input type="hidden" name="remove" value="<%=pcdata(n)%>" /> - <input class="cbi-button cbi-button-remove" type="submit" onclick="window.confirm('<%:Remove%> "<%=luci.util.pcdata(n)%>" ?') && this.parentNode.submit(); return false" value="<%:Remove%>" /> - </form> - </div> - </div> - <% end) %> - <% if empty then %> - <div class="tr cbi-section-table-row"> - <div class="td left"> </div> - <div class="td left"><em><%:none%></em></div> - <div class="td left"><em><%:none%></em></div> - </div> - <% end %> - </div> - </div> - </div> - <% else %> - <div class="cbi-section"> - <% if not querypat then %> - <ul class="cbi-tabmenu" style="flex-wrap:wrap"> - <% local i; for i = 65, 90 do %> - <li class="cbi-tab<% if letter ~= i then %>-disabled<% end %>"><a href="?display=available&letter=<%=string.char(i)%>"><%=string.char(i)%></a></li> - <% end %> - <li class="cbi-tab<% if letter ~= 35 then %>-disabled<% end %>"><a href="?display=available&letter=%23">#</a></li> - </ul> - <% end %> - <div class="cbi-section-node cbi-section-node-tabbed"> - <div class="table"> - <div class="tr cbi-section-table-titles"> - <div class="th col-2 left"><%:Package name%></div> - <div class="th col-2 left"><%:Version%></div> - <div class="th col-1 center"><%:Size (.ipk)%></div> - <div class="th col-10 left"><%:Description%></div> - <div class="th cbi-section-actions"> </div> - </div> - <% local empty = true; opkg_list(querypat or letterpat, function(n, v, s, d) if filter[n] then return end; empty = false %> - <div class="tr cbi-rowstyle-<%=rowstyle()%>"> - <div class="td col-2 left"><%=luci.util.pcdata(n)%></div> - <div class="td col-2 left"><%=luci.util.pcdata(v)%></div> - <div class="td col-1 center"><%=luci.util.pcdata(s)%></div> - <div class="td col-10 left"><%=luci.util.pcdata(d)%></div> - <div class="td cbi-section-actions"> - <form method="post" class="inline" action="<%=REQUEST_URI%>"> - <input type="hidden" name="exec" value="1" /> - <input type="hidden" name="token" value="<%=token%>" /> - <input type="hidden" name="install" value="<%=pcdata(n)%>" /> - <input class="cbi-button cbi-button-apply" type="submit" onclick="window.confirm('<%:Install%> "<%=luci.util.pcdata(n)%>" ?') && this.parentNode.submit(); return false" value="<%:Install%>" /> - </form> - </div> - </div> - <% end) %> - <% if empty then %> - <div class="tr"> - <div class="td left"> </div> - <div class="td left"><em><%:none%></em></div> - <div class="td left"><em><%:none%></em></div> - <div class="td right"><em><%:none%></em></div> - <div class="td left"><em><%:none%></em></div> - </div> - <% end %> - </div> - </div> - </div> - <% end %> -</div> - -<%+footer%> diff --git a/modules/luci-mod-system/luasrc/view/admin_system/password.htm b/modules/luci-mod-system/luasrc/view/admin_system/password.htm new file mode 100644 index 0000000000..09cea4f74a --- /dev/null +++ b/modules/luci-mod-system/luasrc/view/admin_system/password.htm @@ -0,0 +1,37 @@ +<%+header%> + +<input type="password" aria-hidden="true" style="position:absolute; left:-10000px" /> + +<div class="cbi-map"> + <h2><%:Router Password%></h2> + + <div class="cbi-section-descr"> + <%:Changes the administrator password for accessing the device%> + </div> + + <div class="cbi-section-node"> + <div class="cbi-value"> + <label class="cbi-value-title" for="image"><%:Password%></label> + <div class="cbi-value-field"> + <input type="password" name="pw1" /><!-- + --><button class="cbi-button cbi-button-neutral" title="<%:Reveal/hide password%>" aria-label="<%:Reveal/hide password%>" onclick="var e = this.previousElementSibling; e.type = (e.type === 'password') ? 'text' : 'password'">∗</button> + </div> + </div> + + <div class="cbi-value"> + <label class="cbi-value-title" for="image"><%:Confirmation%></label> + <div class="cbi-value-field"> + <input type="password" name="pw2" onkeydown="if (event.keyCode === 13) submitPassword(event)" /><!-- + --><button class="cbi-button cbi-button-neutral" title="<%:Reveal/hide password%>" aria-label="<%:Reveal/hide password%>" onclick="var e = this.previousElementSibling; e.type = (e.type === 'password') ? 'text' : 'password'">∗</button> + </div> + </div> + </div> +</div> + +<div class="cbi-page-actions"> + <button class="btn cbi-button-apply" onclick="submitPassword(event)"><%:Save%></button> +</div> + +<script type="application/javascript" src="<%=resource%>/view/system/password.js"></script> + +<%+footer%> diff --git a/modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm b/modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm new file mode 100644 index 0000000000..ac453f3f6c --- /dev/null +++ b/modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm @@ -0,0 +1,46 @@ +<%+header%> + +<style type="text/css"> + .cbi-dynlist { + max-width: 100%; + } + + .cbi-dynlist .item > small { + display: block; + direction: rtl; + overflow: hidden; + text-align: left; + } + + .cbi-dynlist .item > small > code { + direction: ltr; + white-space: nowrap; + unicode-bidi: bidi-override; + } + + @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .cbi-dynlist .item > small { direction: ltr } + } +</style> + +<div class="cbi-map"> + <h2><%:SSH-Keys%></h2> + + <div class="cbi-section-descr"> + <%_Public keys allow for the passwordless SSH logins with a higher security compared to the use of plain passwords. In order to upload a new key to the device, paste an OpenSSH compatible public key line or drag a <code>.pub</code> file into the input field.%> + </div> + + <div class="cbi-section-node"> + <div class="cbi-dynlist" name="sshkeys"> + <p class="spinning"><%:Loading SSH keys…%></p> + <div class="add-item" ondragover="dragKey(event)" ondrop="dropKey(event)"> + <input class="cbi-input-text" type="text" placeholder="<%:Paste or drag SSH key file…%>" onkeydown="if (event.keyCode === 13) addKey(event)" /> + <button class="cbi-button" onclick="addKey(event)"><%:Add key%></button> + </div> + </div> + </div> +</div> + +<script type="application/javascript" src="<%=resource%>/view/system/sshkeys.js"></script> + +<%+footer%> |