diff options
Diffstat (limited to 'applications/luci-app-opkg')
39 files changed, 7535 insertions, 4104 deletions
diff --git a/applications/luci-app-opkg/Makefile b/applications/luci-app-opkg/Makefile index 5763e9115e..0f3d8a7027 100644 --- a/applications/luci-app-opkg/Makefile +++ b/applications/luci-app-opkg/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk LUCI_TITLE:=OPKG package management application -LUCI_DEPENDS:=+opkg +LUCI_DEPENDS:=+luci-base +opkg include ../../luci.mk diff --git a/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js b/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js index a5abfc168c..af1e972efc 100644 --- a/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js +++ b/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js @@ -98,6 +98,8 @@ var packages = { installed: { providers: {}, pkgs: {} } }; +var languages = ['en']; + var currentDisplayMode = 'available', currentDisplayRows = []; function parseList(s, dest) @@ -181,7 +183,7 @@ function parseList(s, dest) key = RegExp.$1.toLowerCase(); val = RegExp.$2.trim(); } - else { + else if (pkg) { dest.pkgs[pkg.name] = pkg; var provides = dest.providers[pkg.name] ? [] : [ pkg.name ]; @@ -201,13 +203,24 @@ function display(pattern) { var src = packages[currentDisplayMode === 'updates' ? 'installed' : currentDisplayMode], table = document.querySelector('#packages'), - pager = document.querySelector('#pager'); + pagers = document.querySelectorAll('.controls > .pager'), + i18n_filter = null; currentDisplayRows.length = 0; if (typeof(pattern) === 'string' && pattern.length > 0) pattern = new RegExp(pattern.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), 'ig'); + switch (document.querySelector('input[name="filter_i18n"]:checked').value) { + case 'all': + i18n_filter = /^luci-i18n-/; + break; + + case 'lang': + i18n_filter = new RegExp('^luci-i18n-(base-.+|.+-(' + languages.join('|') + '))$'); + break; + } + for (var name in src.pkgs) { var pkg = src.pkgs[name], desc = pkg.description || '', @@ -226,6 +239,9 @@ function display(pattern) !name.match(pattern) && !desc.match(pattern)) continue; + if (name.indexOf('luci-i18n-') === 0 && (!(i18n_filter instanceof RegExp) || !name.match(i18n_filter))) + continue; + var btn, ver; if (currentDisplayMode === 'updates') { @@ -294,8 +310,9 @@ function display(pattern) currentDisplayRows.push([ name, ver, - pkg.size ? '%.1024mB'.format(pkg.size) - : (altsize ? '~%.1024mB'.format(altsize) : '-'), + [ pkg.size || 0, + pkg.size ? '%1024mB'.format(pkg.size) + : (altsize ? '~%1024mB'.format(altsize) : '-') ], desc, btn ]); @@ -310,44 +327,50 @@ function display(pattern) return 0; }); - pager.parentNode.style.display = ''; - pager.setAttribute('data-offset', 100); - handlePage({ target: pager.querySelector('.prev') }); + for (var i = 0; i < pagers.length; i++) { + pagers[i].parentNode.style.display = ''; + pagers[i].setAttribute('data-offset', 100); + } + + handlePage({ target: pagers[0].querySelector('.prev') }); } function handlePage(ev) { var filter = document.querySelector('input[name="filter"]'), - pager = ev.target.parentNode, - offset = +pager.getAttribute('data-offset'), - next = ev.target.classList.contains('next'); + offset = +ev.target.parentNode.getAttribute('data-offset'), + next = ev.target.classList.contains('next'), + pagers = document.querySelectorAll('.controls > .pager'); if ((next && (offset + 100) >= currentDisplayRows.length) || (!next && (offset < 100))) return; offset += next ? 100 : -100; - pager.setAttribute('data-offset', offset); - pager.querySelector('.text').firstChild.data = currentDisplayRows.length - ? _('Displaying %d-%d of %d').format(1 + offset, Math.min(offset + 100, currentDisplayRows.length), currentDisplayRows.length) - : _('No packages'); - if (offset < 100) - pager.querySelector('.prev').setAttribute('disabled', 'disabled'); - else - pager.querySelector('.prev').removeAttribute('disabled'); + for (var i = 0; i < pagers.length; i++) { + pagers[i].setAttribute('data-offset', offset); + pagers[i].querySelector('.text').firstChild.data = currentDisplayRows.length + ? _('Displaying %d-%d of %d').format(1 + offset, Math.min(offset + 100, currentDisplayRows.length), currentDisplayRows.length) + : _('No packages'); - if ((offset + 100) >= currentDisplayRows.length) - pager.querySelector('.next').setAttribute('disabled', 'disabled'); - else - pager.querySelector('.next').removeAttribute('disabled'); + if (offset < 100) + pagers[i].querySelector('.prev').setAttribute('disabled', 'disabled'); + else + pagers[i].querySelector('.prev').removeAttribute('disabled'); + + if ((offset + 100) >= currentDisplayRows.length) + pagers[i].querySelector('.next').setAttribute('disabled', 'disabled'); + else + pagers[i].querySelector('.next').removeAttribute('disabled'); + } var placeholder = _('No information available'); if (filter.value) placeholder = [ E('span', {}, _('No packages matching "<strong>%h</strong>".').format(filter.value)), ' (', - E('a', { href: '#', onclick: 'handleReset(event)' }, _('Reset')), ')' + E('a', { href: '#', click: handleReset }, _('Reset')), ')' ]; cbi_update_table('#packages', currentDisplayRows.slice(offset, offset + 100), @@ -376,6 +399,11 @@ function handleMode(ev) ev.preventDefault(); } +function handleI18nFilter(ev) +{ + display(document.querySelector('input[name="filter"]').value); +} + function orderOf(c) { if (c === '~') @@ -515,7 +543,7 @@ function pkgStatus(pkg, vop, ver, info) } } -function renderDependencyItem(dep, info) +function renderDependencyItem(dep, info, flat) { var li = E('li'), vop = dep.version ? dep.version[0] : null, @@ -533,9 +561,9 @@ function renderDependencyItem(dep, info) var text = pkg.name; if (pkg.installsize) - text += ' (%.1024mB)'.format(pkg.installsize); + text += ' (%1024mB)'.format(pkg.installsize); else if (pkg.size) - text += ' (~%.1024mB)'.format(pkg.size); + text += ' (~%1024mB)'.format(pkg.size); li.appendChild(E('span', { 'data-tooltip': pkg.description }, [ text, ' ', pkgStatus(pkg, vop, ver, info) ])); @@ -551,14 +579,16 @@ function renderDependencyItem(dep, info) [ dep.name, ' ', pkgStatus({ name: dep.name, missing: true }, vop, ver, info) ])); - var subdeps = renderDependencies(depends, info); - if (subdeps) - li.appendChild(subdeps); + if (!flat) { + var subdeps = renderDependencies(depends, info); + if (subdeps) + li.appendChild(subdeps); + } return li; } -function renderDependencies(depends, info) +function renderDependencies(depends, info, flat) { var deps = depends || [], items = []; @@ -571,7 +601,7 @@ function renderDependencies(depends, info) if (deps[i] === 'libc') continue; - if (deps[i].match(/^(.+)\s+\((<=|<|>|>=|=|<<|>>)(.+)\)$/)) { + if (deps[i].match(/^(.+?)\s+\((<=|>=|<<|>>|<|>|=)(.+?)\)/)) { dep = RegExp.$1.trim(); vop = RegExp.$2.trim(); ver = RegExp.$3.trim(); @@ -600,7 +630,7 @@ function renderDependencies(depends, info) version: [vop, ver] }; - items.push(renderDependencyItem(info.seen[dep], info)); + items.push(renderDependencyItem(info.seen[dep], info, flat)); } if (items.length) @@ -636,9 +666,9 @@ function handleInstall(ev) size; if (pkg.installsize) - size = _('~%.1024mB installed').format(pkg.installsize); + size = _('~%1024mB installed').format(pkg.installsize); else if (pkg.size) - size = _('~%.1024mB compressed').format(pkg.size); + size = _('~%1024mB compressed').format(pkg.size); else size = _('unknown'); @@ -653,7 +683,8 @@ function handleInstall(ev) } var totalsize = pkg.installsize || pkg.size || 0, - totalpkgs = 1; + totalpkgs = 1, + suggestsize = 0; if (depcache.install && depcache.install.length) depcache.install.forEach(function(ipkg) { @@ -661,9 +692,53 @@ function handleInstall(ev) totalpkgs++; }); - inst = E('p', {}, - _('Require approx. %.1024mB size for %d package(s) to install.') - .format(totalsize, totalpkgs)); + var luci_basename = pkg.name.match(/^luci-([^-]+)-(.+)$/), + i18n_packages = [], + i18n_tree; + + if (luci_basename && (luci_basename[1] != 'i18n' || luci_basename[2].indexOf('base-') === 0)) { + var i18n_filter; + + if (luci_basename[1] == 'i18n') { + var basenames = []; + + for (var pkgname in packages.installed.pkgs) { + var m = pkgname.match(/^luci-([^-]+)-(.+)$/); + + if (m && m[1] != 'i18n') + basenames.push(m[2]); + } + + if (basenames.length) + i18n_filter = new RegExp('^luci-i18n-(' + basenames.join('|') + ')-' + pkg.name.replace(/^luci-i18n-base-/, '') + '$'); + } + else { + i18n_filter = new RegExp('^luci-i18n-' + luci_basename[2] + '-(' + languages.join('|') + ')$'); + } + + if (i18n_filter) { + for (var pkgname in packages.available.pkgs) + if (pkgname != pkg.name && pkgname.match(i18n_filter)) + i18n_packages.push(pkgname); + + var i18ncache = {}; + + i18n_tree = renderDependencies(i18n_packages, i18ncache, true); + + if (i18ncache.install && i18ncache.install.length) { + i18ncache.install.forEach(function(ipkg) { + suggestsize += ipkg.installsize || ipkg.size || 0; + }); + } + } + } + + inst = E('p', [ + _('Require approx. %1024mB size for %d package(s) to install.') + .format(totalsize, totalpkgs), + ' ', + suggestsize ? _('Suggested translations require approx. %1024mB additional space.').format(suggestsize) : '' + ]); if (deps) { tree = E('li', '<strong>%s:</strong>'.format(_('Dependencies'))); @@ -682,15 +757,43 @@ function handleInstall(ev) E('li', '<strong>%s:</strong> %h'.format(_('Version'), pkg.version)), E('li', '<strong>%s:</strong> %h'.format(_('Size'), size)), tree || '', + i18n_packages.length ? E('li', [ + E('strong', [_('Suggested translations'), ':']), + i18n_tree + ]) : '' ]), desc || '', errs || inst || '', + E('div', [ + E('hr'), + i18n_packages.length ? E('p', [ + E('label', { 'class': 'cbi-checkbox' }, [ + E('input', { + 'id': 'i18ninstall-cb', + 'type': 'checkbox', + 'name': 'i18ninstall', + 'data-packages': i18n_packages.join(' '), + 'disabled': isReadonlyView, + 'checked': true + }), ' ', + E('label', { 'for': 'i18ninstall-cb' }), ' ', + _('Install suggested translation packages as well') + ]) + ]) : '', + E('p', [ + E('label', { 'class': 'cbi-checkbox' }, [ + E('input', { + 'id': 'overwrite-cb', + 'type': 'checkbox', + 'name': 'overwrite', + 'disabled': isReadonlyView + }), ' ', + E('label', { 'for': 'overwrite-cb' }), ' ', + _('Allow overwriting conflicting package files') + ]) + ]) + ]), E('div', { 'class': 'right' }, [ - E('label', { 'class': 'cbi-checkbox', 'style': 'float:left' }, [ - E('input', { 'id': 'overwrite-cb', 'type': 'checkbox', 'name': 'overwrite', 'disabled': isReadonlyView }), ' ', - E('label', { 'for': 'overwrite-cb' }), ' ', - _('Overwrite files from other package(s)') - ]), E('div', { 'class': 'btn', 'click': ui.hideModal @@ -824,9 +927,9 @@ function handleRemove(ev) size, desc; if (avail.installsize) - size = _('~%.1024mB installed').format(avail.installsize); + size = _('~%1024mB installed').format(avail.installsize); else if (avail.size) - size = _('~%.1024mB compressed').format(avail.size); + size = _('~%1024mB compressed').format(avail.size); else size = _('unknown'); @@ -873,7 +976,8 @@ function handleOpkg(ev) var cmd = ev.target.getAttribute('data-command'), pkg = ev.target.getAttribute('data-package'), rem = document.querySelector('input[name="autoremove"]'), - owr = document.querySelector('input[name="overwrite"]'); + owr = document.querySelector('input[name="overwrite"]'), + i18n = document.querySelector('input[name="i18ninstall"]'); var dlg = ui.showModal(_('Executing package manager'), [ E('p', { 'class': 'spinning' }, @@ -888,6 +992,9 @@ function handleOpkg(ev) if (owr && owr.checked) argv.push('--force-overwrite'); + if (i18n && i18n.checked) + argv.push.apply(argv, i18n.getAttribute('data-packages').split(' ')); + if (pkg != null) argv.push(pkg); @@ -985,22 +1092,26 @@ function updateLists(data) .sort(function(a, b) { return a.mount > b.mount })[0] || { size: 0, free: 0 }; pg.firstElementChild.style.width = Math.floor(mount.size ? ((100 / mount.size) * mount.free) : 100) + '%'; - pg.setAttribute('title', '%s (%.1024mB)'.format(pg.firstElementChild.style.width, mount.free)); + pg.setAttribute('title', '%s (%1024mB)'.format(pg.firstElementChild.style.width, mount.free)); parseList(data[1], packages.available); parseList(data[2], packages.installed); + for (var pkgname in packages.installed.pkgs) + if (pkgname.indexOf('luci-i18n-base-') === 0) + languages.push(pkgname.substring(15)); + display(document.querySelector('input[name="filter"]').value); }); } -var keyTimeout = null; +var inputTimeout = null; -function handleKeyUp(ev) { - if (keyTimeout !== null) - window.clearTimeout(keyTimeout); +function handleInput(ev) { + if (inputTimeout !== null) + window.clearTimeout(inputTimeout); - keyTimeout = window.setTimeout(function() { + inputTimeout = window.setTimeout(function() { display(ev.target.value); }, 250); } @@ -1027,7 +1138,7 @@ return view.extend({ E('div', {}, [ E('label', {}, _('Filter') + ':'), E('span', { 'class': 'control-group' }, [ - E('input', { 'type': 'text', 'name': 'filter', 'placeholder': _('Type to filter…'), 'value': query, 'keyup': handleKeyUp }), + E('input', { 'type': 'text', 'name': 'filter', 'placeholder': _('Type to filter…'), 'value': query, 'input': handleInput }), E('button', { 'class': 'btn cbi-button', 'click': handleReset }, [ _('Clear') ]) ]) ]), @@ -1047,6 +1158,51 @@ return view.extend({ E('button', { 'class': 'btn cbi-button-action', 'click': handleUpload, 'disabled': isReadonlyView }, [ _('Upload Package…') ]), ' ', E('button', { 'class': 'btn cbi-button-neutral', 'click': handleConfig }, [ _('Configure opkg…') ]) ]) + ]), + + E('div', {}, [ + E('label', {}, _('Display LuCI translation packages') + ':'), ' ', + E('div', [ + E('label', { + 'data-tooltip': _('Display base translation packages and translation packages for already installed languages only') + }, [ + E('input', { + 'type': 'radio', + 'name': 'filter_i18n', + 'value': 'lang', + 'change': handleI18nFilter, + 'checked': true + }), + ' ', + _('filtered', 'Display translation packages') + ]), + ' \u00a0 ', + E('label', { + 'data-tooltip': _('Display all available translation packages') + }, [ + E('input', { + 'type': 'radio', + 'name': 'filter_i18n', + 'value': 'all', + 'change': handleI18nFilter + }), + ' ', + _('all', 'Display translation packages') + ]), + ' \u00a0 ', + E('label', { + 'data-tooltip': _('Hide all translation packages') + }, [ + E('input', { + 'type': 'radio', + 'name': 'filter_i18n', + 'value': 'none', + 'change': handleI18nFilter + }), + ' ', + _('none', 'Display translation packages') + ]) + ]) ]) ]), @@ -1057,20 +1213,28 @@ return view.extend({ ]), E('div', { 'class': 'controls', 'style': 'display:none' }, [ - E('div', { 'id': 'pager', 'class': 'center' }, [ + E('div', { 'class': 'pager center' }, [ E('button', { 'class': 'btn cbi-button-neutral prev', 'aria-label': _('Previous page'), 'click': handlePage }, [ '«' ]), E('div', { 'class': 'text' }, [ 'dummy' ]), E('button', { 'class': 'btn cbi-button-neutral next', 'aria-label': _('Next page'), 'click': handlePage }, [ '»' ]) ]) ]), - E('div', { 'id': 'packages', 'class': 'table' }, [ - E('div', { 'class': 'tr cbi-section-table-titles' }, [ - E('div', { 'class': 'th col-2 left' }, [ _('Package name') ]), - E('div', { 'class': 'th col-2 left version' }, [ _('Version') ]), - E('div', { 'class': 'th col-1 center size'}, [ _('Size (.ipk)') ]), - E('div', { 'class': 'th col-10 left' }, [ _('Description') ]), - E('div', { 'class': 'th right cbi-section-actions' }, [ '\u00a0' ]) + E('table', { 'id': 'packages', 'class': 'table' }, [ + E('tr', { 'class': 'tr cbi-section-table-titles' }, [ + E('th', { 'class': 'th col-2 left' }, [ _('Package name') ]), + E('th', { 'class': 'th col-2 left version' }, [ _('Version') ]), + E('th', { 'class': 'th col-1 center size'}, [ _('Size (.ipk)') ]), + E('th', { 'class': 'th col-10 left' }, [ _('Description') ]), + E('th', { 'class': 'th right cbi-section-actions' }, [ '\u00a0' ]) + ]) + ]), + + E('div', { 'class': 'controls', 'style': 'display:none' }, [ + E('div', { 'class': 'pager center' }, [ + E('button', { 'class': 'btn cbi-button-neutral prev', 'aria-label': _('Previous page'), 'click': handlePage }, [ '«' ]), + E('div', { 'class': 'text' }, [ 'dummy' ]), + E('button', { 'class': 'btn cbi-button-neutral next', 'aria-label': _('Next page'), 'click': handlePage }, [ '»' ]) ]) ]) ]); diff --git a/applications/luci-app-opkg/po/ar/opkg.po b/applications/luci-app-opkg/po/ar/opkg.po index 9673f6e0b3..96587e1ddf 100644 --- a/applications/luci-app-opkg/po/ar/opkg.po +++ b/applications/luci-app-opkg/po/ar/opkg.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-07-09 06:17+0000\n" -"Last-Translator: Mohammed Abu Hassan <medo94125@gmail.com>\n" +"PO-Revision-Date: 2021-03-04 13:50+0000\n" +"Last-Translator: Said Zakaria <said.zakaria@gmail.com>\n" "Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/ar/>\n" "Language: ar\n" @@ -9,329 +9,387 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5.1-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" +msgstr "إجراءات" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" -msgstr "" +msgstr "قم بإزالة التبعيات غير المستخدمة تلقائيًا" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "متاح" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " "custom repository entries. The configuration in the other files may be " "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" +"يوجد أدناه قائمة بملفات التكوين المتنوعة المستخدمة بواسطة <em> opkg </em>. " +"استخدم <em> opkg.conf </em> للإعدادات العامة و <em> customfeeds.conf </em> " +"لإدخالات المستودع المخصصة. قد يتم تغيير التهيئة في الملفات الأخرى ولكن عادةً " +"لا يتم الاحتفاظ بها بواسطة <em> sysupgrade </em>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "إلغاء" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" -msgstr "" +msgstr "إجلاء" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" -msgstr "" +msgstr "تكوين opkg …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" -msgstr "" +msgstr "التبعيات" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "الوصف" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" -msgstr "" +msgstr "تفاصيل الحزمة <em>%h </em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" +msgstr "إلغاء" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 -msgid "Displaying %d-%d of %d" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 -msgid "Download and install package" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 +msgid "Displaying %d-%d of %d" +msgstr "عرض d% -%d من %d" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 +msgid "Download and install package" +msgstr "قم بتنزيل الحزمة وتثبيتها" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" -msgstr "" +msgstr "أخطاء" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" -msgstr "" +msgstr "تنفيذ مدير الحزم" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" -msgstr "" +msgstr "مصفي" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" -msgstr "" +msgstr "مساحة فارغة" #: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 msgid "Grant access to opkg management" +msgstr "منح حقوق الدخول لإدارة opkg" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" +msgstr "تثبيت" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" -msgstr "" +msgstr "مثبت" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" +"يعد تثبيت الحزم من مصادر غير موثوق بها مخاطرة أمنية محتملة! هل تحاول حقًا " +"تثبيت <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" -msgstr "" +msgstr "تثبيت…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" -msgstr "" +msgstr "تحميل بيانات التكوين …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" -msgstr "" +msgstr "جارٍ تحميل معلومات الحزمة …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" -msgstr "" +msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" -msgstr "" +msgstr "قم بتثبيت الحزمة يدويًا" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" -msgstr "" +msgstr "يحتاج إلى ترقية" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" -msgstr "" +msgstr "الصفحة التالية" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" -msgstr "" +msgstr "لا توجد معلومات متاحة" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" -msgstr "" +msgstr "لا توجد حزم" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." -msgstr "" +msgstr "لا توجد حزم تطابق \"<strong>%h </strong>\"." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" -msgstr "" +msgstr "غير متوفر" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" -msgstr "" +msgstr "غير مثبت" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" -msgstr "" +msgstr "موافق" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" -msgstr "" +msgstr "تكوين OPKG" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" -msgstr "" +msgstr "اسم الحزمة" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" -msgstr "" +msgstr "اسم الحزمة أو URL …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" -msgstr "" +msgstr "الصفحة السابقة" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" -msgstr "" +msgstr "هل تحاول حقًا تثبيت <em> %h </em>؟" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" -msgstr "" +msgstr "نزع" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" -msgstr "" +msgstr "قم بإزالة الحزمة <em>% h </em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" -msgstr "" +msgstr "يزيل…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "تتطلب تقريبا. ٪ .1024 ميغا بايت حجم لتثبيت %d حزمة (حزم)." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" -msgstr "" +msgstr "إصدار مطلوب %h% h ، مثبت %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." -msgstr "" +msgstr "حزمة التبعية المطلوبة <em>%h </em> غير متوفرة في أي مستودع." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" -msgstr "" +msgstr "يتطلب التحديث إلى %h% h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" -msgstr "" +msgstr "إعادة ضبط" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" -msgstr "" +msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" -msgstr "" +msgstr "إحفض" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" -msgstr "" +msgstr "جارٍ حفظ بيانات التكوين …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" -msgstr "" +msgstr "مقاس" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" -msgstr "" +msgstr "الحجم (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" +msgstr "برنامج" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 -msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 +msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." +msgstr "فشل الأمر <em> opkg % h </em> برمز <code>%d </code>." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" +"الإصدار المثبت من الحزمة <em>% h </em> غير متوافق ، يتطلب٪ s أثناء تثبيت %s." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." -msgstr "" +msgstr "الحزمة <em>%h </em> ليست متاحة في أي مستودع تم تكوينه." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" +"إصدار المستودع للحزمة <em>%h </em> غير متوافق ، يتطلب %s ولكن يتوفر%s فقط." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" -msgstr "" +msgstr "اكتب للتصفية …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" -msgstr "" +msgstr "تعذر تنفيذ أمر <em> opkg %s </em>:%s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" -msgstr "" +msgstr "غير قادر على قراءة٪ s: %s%" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" -msgstr "" +msgstr "غير قادر على حفظ٪ %s% : s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" -msgstr "" +msgstr "تحديث القوائم …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" -msgstr "" +msgstr "التحديثات" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" -msgstr "" +msgstr "تحديث النظام…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" -msgstr "" +msgstr "تحميل الحزمة …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" -msgstr "" +msgstr "الإصدار" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" -msgstr "" +msgstr "الإصدار غير متوافق" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" -msgstr "" +msgstr "في انتظار إكمال أمر <em> opkg %h </em> …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 -msgid "unknown" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 +msgid "unknown" +msgstr "غير معروف" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "مضغوط ~٪ .1024 ميغا بايت" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "تم تثبيت ~٪ .1024 ميغا بايت" + +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "الكتابة فوق الملفات من حزم أخرى" diff --git a/applications/luci-app-opkg/po/bg/opkg.po b/applications/luci-app-opkg/po/bg/opkg.po index c32680191f..445e921ec6 100644 --- a/applications/luci-app-opkg/po/bg/opkg.po +++ b/applications/luci-app-opkg/po/bg/opkg.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2020-05-22 12:40+0000\n" -"Last-Translator: Stefan M <sm@voip-office.eu>\n" +"PO-Revision-Date: 2021-08-31 01:32+0000\n" +"Last-Translator: Iskren Mihaylov <iskren.mihaylov91@gmail.com>\n" "Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/bg/>\n" "Language: bg\n" @@ -12,329 +12,389 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.8.1-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" +msgstr "Действия" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" -msgstr "" +msgstr "Автоматично премахни неизползвани зависимости" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" -msgstr "" +msgstr "Налични" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " "custom repository entries. The configuration in the other files may be " "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" +"Отдолу е списък с различни конфигурационни файлове използвани от <em>opkg</" +"em>. Използвайте <em>opkg.conf</em> за глобални настройки и <em>customfeeds." +"conf</em> за ваши записи на хранилища. Конфигурацията в други файлове може " +"да се промени, но обикновено не се запазва при <em>sysupgrade</em>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" -msgstr "" +msgstr "Отмени" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" -msgstr "" +msgstr "Изчисти" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" -msgstr "" +msgstr "Конфигуриране opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" -msgstr "" +msgstr "Зависимости" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Описание" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" -msgstr "" +msgstr "Детайли за пакет <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" +msgstr "Затвори" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 -msgid "Displaying %d-%d of %d" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 -msgid "Download and install package" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 +msgid "Displaying %d-%d of %d" +msgstr "Показване %d-%d of %d" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 +msgid "Download and install package" +msgstr "Свали и инсталирай пакет" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" -msgstr "" +msgstr "Грешки" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" -msgstr "" +msgstr "Стартиране на пакетния мениджър" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" -msgstr "" +msgstr "Филтър" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" -msgstr "" +msgstr "Свободно място" #: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 msgid "Grant access to opkg management" +msgstr "Разрешаване достъп до opkg менажиране" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" +msgstr "Инсталирай" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" -msgstr "" +msgstr "Инсталирани" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" +"Инсталиране на пакети от недоверени източници е потенциален риск за " +"сигурността! Наистина ли да се опитам да инсталирам <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" -msgstr "" +msgstr "Инсталиране…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" -msgstr "" +msgstr "Зареждане на конфигурации…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" -msgstr "" +msgstr "Зареждане пакетна информация…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" -msgstr "" +msgstr "Ръчно инсталирай пакет" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" -msgstr "" +msgstr "Нуждаещ се от ъпгрейд" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" -msgstr "" +msgstr "Следваща страница" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" -msgstr "" +msgstr "Няма налична информация" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" -msgstr "" +msgstr "Няма пакети" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." -msgstr "" +msgstr "Няма съвпадение за \"<strong>%h</strong>\"." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" -msgstr "" +msgstr "Липсва" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" -msgstr "" +msgstr "Не е инсталиран" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" -msgstr "" +msgstr "ОК" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" -msgstr "" +msgstr "OPKG Конфигурация" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" -msgstr "" +msgstr "Име на пакет" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" -msgstr "" +msgstr "Име на пакет или URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" -msgstr "" +msgstr "Предишна страница" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" -msgstr "" +msgstr "Да се направи опит за инсталиране на <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" -msgstr "" +msgstr "Премахни" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" -msgstr "" +msgstr "Премахни пакет <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" -msgstr "" +msgstr "Премахване…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "Нужни са прибл. %1024mB място за инсталиране на %d пакет(а)." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" -msgstr "" +msgstr "Изисква версия %h %h, инсталирана %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." -msgstr "" +msgstr "Необходим пакет <em>%h</em> не е наличен в никое хранилище." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" -msgstr "" +msgstr "Изисква се ъпдейт към %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" -msgstr "" +msgstr "Нулирай" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" -msgstr "" +msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" -msgstr "" +msgstr "Запази" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" -msgstr "" +msgstr "Запазване на конфигурация…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" -msgstr "" +msgstr "Размер" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" -msgstr "" +msgstr "Размер (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" +msgstr "Софтуер" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 -msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 +msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." +msgstr "Команда <em>opkg %h</em> се провали с код <code>%d</code>." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" +"Инсталираната версия на пакета <em>%h</em> не е съвместима, изисква се %s " +"докато %s е инсталирана." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." -msgstr "" +msgstr "Пакетът <em>%h</em> не е наличен в нито едно от хранилищата." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" +"Версията на пакета в хранилището <em>%h</em> не е свъместима, изисква се %s " +"но само %s е налична." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" -msgstr "" +msgstr "Пиши за филтър…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" -msgstr "" +msgstr "Не може да се изпълни <em>opkg %s</em> команда: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" -msgstr "" +msgstr "Не може да се прочете %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" -msgstr "" +msgstr "Не може да се запази %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" -msgstr "" +msgstr "Обновяване на списъци…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" -msgstr "" +msgstr "Обновления" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" -msgstr "" +msgstr "Надстройване…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" -msgstr "" +msgstr "Качване пакет…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" -msgstr "" +msgstr "Версия" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" -msgstr "" +msgstr "Несъвместима версия" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" -msgstr "" +msgstr "Изчкаване <em>opkg %h</em> команда да приключи…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 -msgid "unknown" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 +msgid "unknown" +msgstr "неизвестен" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB архивирани" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB инсталирани" + +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Заместване на файлове от други пакет(и)" diff --git a/applications/luci-app-opkg/po/bn_BD/opkg.po b/applications/luci-app-opkg/po/bn_BD/opkg.po index d8c06e864b..7024972627 100644 --- a/applications/luci-app-opkg/po/bn_BD/opkg.po +++ b/applications/luci-app-opkg/po/bn_BD/opkg.po @@ -3,29 +3,34 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2019-12-07 10:44+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2021-10-08 17:53+0000\n" +"Last-Translator: Rayhan Nabi <rayhanjanam@gmail.com>\n" +"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationsopkg/bn_BD/>\n" "Language: bn_BD\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: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" +msgstr "ক্রিয়া" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -33,61 +38,75 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" -msgstr "" +msgstr "বাতিল করুন" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" -msgstr "" +msgstr "বর্ণনা" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" +msgstr "বাতিল" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" -msgstr "" +msgstr "ছাঁকনি" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "" @@ -95,245 +114,274 @@ msgstr "" msgid "Grant access to opkg management" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" -msgstr "" +msgstr "সংরক্ষণ করুন" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" -msgstr "" +msgstr "সংস্করণ" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 -msgid "unknown" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 +msgid "unknown" +msgstr "অজ্ঞাত" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/ca/opkg.po b/applications/luci-app-opkg/po/ca/opkg.po index 5dfbe1c399..832a554d5d 100644 --- a/applications/luci-app-opkg/po/ca/opkg.po +++ b/applications/luci-app-opkg/po/ca/opkg.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2020-01-14 15:22+0000\n" -"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"PO-Revision-Date: 2021-09-17 06:52+0000\n" +"Last-Translator: Roger Pueyo Centelles <weblate@rogerpueyo.com>\n" "Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/ca/>\n" "Language: ca\n" @@ -12,21 +12,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Accions" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Disponible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -34,63 +38,77 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" -msgstr "Cancel·la" +msgstr "Cancel•lar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 #, fuzzy msgid "Configure opkg…" msgstr "Configuració" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Descripció" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" +msgstr "Oblida-ho" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Descarrega i instal·la el paquet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 #, fuzzy msgid "Errors" msgstr "Error" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Filtre" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Espai lliure" @@ -98,258 +116,287 @@ msgstr "Espai lliure" msgid "Grant access to opkg management" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Instal·la" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 #, fuzzy msgid "Installed" msgstr "Instal·la" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 #, fuzzy msgid "Install…" msgstr "Instal·la" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 #, fuzzy msgid "Loading configuration data…" msgstr "Vés a la pàgina de configuració" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 #, fuzzy msgid "Manually install package" msgstr "Descarrega i instal·la el paquet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "No hi ha informació disponible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 #, fuzzy msgid "No packages" msgstr "Cerca paquet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 #, fuzzy msgid "Not available" msgstr "Total disponible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 #, fuzzy msgid "Not installed" msgstr "No connectat" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "D'acord" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 #, fuzzy msgid "OPKG Configuration" msgstr "Configuració d'OPKG" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Nom del paquet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 #, fuzzy msgid "Package name or URL…" msgstr "Nom del paquet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Treu" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Treu…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Restableix" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" -msgstr "" +msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" -msgstr "Desa" +msgstr "Desar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 #, fuzzy msgid "Saving configuration data…" msgstr "Configuració de dispositiu" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Mida" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "Mida (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Programari" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 #, fuzzy msgid "Update lists…" msgstr "Actualitza les llistes" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 #, fuzzy msgid "Updates" msgstr "Actualitza les llistes" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Versió" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 #, fuzzy msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Esperant que s'acabi l'ordre..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "desconegut" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/cs/opkg.po b/applications/luci-app-opkg/po/cs/opkg.po index e4e2038c88..ad2c7d4f95 100644 --- a/applications/luci-app-opkg/po/cs/opkg.po +++ b/applications/luci-app-opkg/po/cs/opkg.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-02-04 05:03+0000\n" -"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n" +"PO-Revision-Date: 2023-01-13 15:13+0000\n" +"Last-Translator: Lukáš Wagner <lukaswagner1@gmail.com>\n" "Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/cs/>\n" "Language: cs\n" @@ -11,21 +11,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.15.1-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Akce" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Povolit přepsání souborů konfliktních balíčků" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "Automatické odstranění nepoužívaných závislostí" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" -msgstr "Dostupné" +msgstr "K dispozici" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -37,82 +41,106 @@ msgstr "" "<em>customfeeds.conf</em> pro vlastní položky úložiště. Konfigurace v jiných " "souborech může být změněna, ale obvykle není spravována <em>sysupgrade</em>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" -msgstr "Storno" +msgstr "Zrušit" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "Prázdný" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "Nakonfigurujte opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "Závislosti" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Popis" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "Podrobnosti o balíčku <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" msgstr "Zahodit" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "Zobrazit balíčky překladů LuCI" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "Zobrazit všechny dostupné balíčky překladů" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" +"Zobrazit základní balíčky překladů a balíčky překladů pro již nainstalované " +"jazyky" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "Zobrazuji %d-%d z %d" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Stáhnout a nainstalovat balíček" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "Chyby" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "Spuštění správce balíčků" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Filtr" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Volné místo" #: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 msgid "Grant access to opkg management" -msgstr "" +msgstr "Udělit přístup ke správě opkg" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "Skrýt všechny balíčky překladů" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Instalovat" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "Instalovat také navrhované balíčky překladů" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" -msgstr "Instalací" +msgstr "Instalováno" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -120,152 +148,158 @@ msgstr "" "Instalace balíků z nedůvěryhodných zdrojů je potenciálním bezpečnostním " "rizikem! Opravdu se pokusíte nainstalovat <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "Instalovat…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "Načítání konfiguračních dat…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "Načítání informací o balíčku…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "Ručně nainstalujte balíček" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "Vyžaduje upgrade" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "Další stránka" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "Údaje nejsou k dispozici" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "Žádné balíčky" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "Žádné balíčky odpovídající \"<strong>%h</strong>\"." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "Není dostupný" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "Není instalován" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "Konfigurace OPKG" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "Přepsat soubory z jiných balíčků" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Název balíčku" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "Název balíčku nebo adresa URLL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "Předchozí stránka" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "Opravdu se pokusíte nainstalovat <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Odstranit" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "Odstraňte balíček <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Odstranit…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "Vyžadovat cca. %.1024mB velikost pro balíčky %d instalaci." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "Vyžadovat cca. %1024mB velikost pro balíčky %d instalaci." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "Vyžadovat verzi %h %h, instalovaná %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" "Požadovaný balíček závislostí <em>%h</em> není dostupný v žádném úložišti." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "Vyžaduje aktualizaci na %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Reset" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Uložit" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "Ukládání konfiguračních dat…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Velikost" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "Velikost (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Software" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Navrhované překlady" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "Navrhované překlady vyžadují přibližně %1024mB dalšího prostoru." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "Příkaz <em>opkg %h</em> byl označen kódem <code>%d</code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -273,11 +307,11 @@ msgstr "" "Nainstalovaná verze balíku <em>%h</em> není kompatibilní, vyžaduje instalaci " "%s, ale %s." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "Balík <em>%h</em> není k dispozici v žádném nakonfigurovaném úložišti." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -285,66 +319,84 @@ msgstr "" "Verze balíčku <em>%h</em> není kompatibilní, vyžaduje %s, ale k dispozici je " "pouze %s." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "Začněte psát pro filtrování…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" -msgstr "" +msgstr "Nelze provést <em>opkg %s</em> příkaz: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" -msgstr "" +msgstr "Nelze přečíst %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" -msgstr "" +msgstr "Nelze uložit %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "Aktualizovat seznamy…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "Aktualizace" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "Přechod na novější verzi…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "Nahrát balíček…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Verze" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "Verze nekompatibilní" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Čekání na dokončení příkazu <em>opkg %h</em> …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "vše" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "filtrovaný" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "žádný" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "neznámý" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "~%.1024mB komprimován" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB komprimován" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB nainstalován" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "~%.1024mB nainstalován" +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Přepsat soubory z jiných balíčků" diff --git a/applications/luci-app-opkg/po/da/opkg.po b/applications/luci-app-opkg/po/da/opkg.po new file mode 100644 index 0000000000..c24b995c4a --- /dev/null +++ b/applications/luci-app-opkg/po/da/opkg.po @@ -0,0 +1,401 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2022-08-05 01:21+0000\n" +"Last-Translator: drax red <drax@outlook.dk>\n" +"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsopkg/da/>\n" +"Language: da\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.14-dev\n" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 +msgid "Actions" +msgstr "Handlinger" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Tillad overskrivning af modstridende pakkefiler" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 +msgid "Automatically remove unused dependencies" +msgstr "Fjern automatisk ubrugte dependencies" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 +msgid "Available" +msgstr "Tilgængelig" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +msgid "" +"Below is a listing of the various configuration files used by <em>opkg</em>. " +"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " +"custom repository entries. The configuration in the other files may be " +"changed but is usually not preserved by <em>sysupgrade</em>." +msgstr "" +"Nedenfor er en liste over de forskellige konfigurationsfiler, der anvendes " +"af <em>opkg</em>. Brug<em>opkg.conf</em>til globale indstillinger og " +"<em>customfeeds.conf</em> til brugerdefinerede poster i repositoriet. " +"Konfigurationen i de andre filer kan ændres, men den bevares normalt ikke af " +"<em>sysupgrade</em>." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +msgid "Cancel" +msgstr "Annuller" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 +msgid "Clear" +msgstr "Ryd" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 +msgid "Configure opkg…" +msgstr "Konfigurer opkg…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 +msgid "Dependencies" +msgstr "Dependencies" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 +msgid "Description" +msgstr "Beskrivelse" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 +msgid "Details for package <em>%h</em>" +msgstr "Detaljer for pakke <em>%h</em>" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +msgid "Dismiss" +msgstr "Afvis" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "Vis LuCI-oversættelsespakker" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "Vis alle tilgængelige oversættelsespakker" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" +"Vis kun basisoversættelsespakker og oversættelsespakker til allerede " +"installerede sprog" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 +msgid "Displaying %d-%d of %d" +msgstr "Viser %d-%d af %d" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 +msgid "Download and install package" +msgstr "Download og installer pakken" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 +msgid "Errors" +msgstr "Fejl" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 +msgid "Executing package manager" +msgstr "Udførelse af pakkeadministrator" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 +msgid "Filter" +msgstr "Filter" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 +msgid "Free space" +msgstr "Ledig plads" + +#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 +msgid "Grant access to opkg management" +msgstr "Giv adgang til opkg administration" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "Skjul alle oversættelsespakker" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 +msgid "Install" +msgstr "Installer" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "Installer også de foreslåede oversættelsespakker" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 +msgid "Installed" +msgstr "Installeret" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 +msgid "" +"Installing packages from untrusted sources is a potential security risk! " +"Really attempt to install <em>%h</em>?" +msgstr "" +"Installation af pakker fra kilder, der ikke er tillid til, er en potentiel " +"sikkerhedsrisiko! Forsøger du virkelig at installere <em>%h</em>?" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 +msgid "Install…" +msgstr "Installer…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 +msgid "Loading configuration data…" +msgstr "Indlæser konfigurationsdata…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 +msgid "Loading package information…" +msgstr "Indlæser pakkeoplysninger…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +msgid "MD5" +msgstr "MD5" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 +msgid "Manually install package" +msgstr "Installer pakke manuelt" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 +msgid "Needs upgrade" +msgstr "Skal opgraderes" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 +msgid "Next page" +msgstr "Næste side" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 +msgid "No information available" +msgstr "Ingen oplysninger tilgængelige" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 +msgid "No packages" +msgstr "Ingen pakker" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +msgid "No packages matching \"<strong>%h</strong>\"." +msgstr "Ingen pakker, der matcher \"<strong>%h</strong>\"." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 +msgid "Not available" +msgstr "Ikke tilgængelig" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 +msgid "Not installed" +msgstr "Ikke installeret" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 +msgid "OK" +msgstr "OK" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 +msgid "OPKG Configuration" +msgstr "OPKG konfiguration" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 +msgid "Package name" +msgstr "Pakkenavn" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 +msgid "Package name or URL…" +msgstr "Pakkenavn eller URL…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 +msgid "Previous page" +msgstr "Forrige side" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 +msgid "Really attempt to install <em>%h</em>?" +msgstr "Forsøger du virkelig at installere <em>%h</em>?" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 +msgid "Remove" +msgstr "Fjern" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 +msgid "Remove package <em>%h</em>" +msgstr "Fjern pakke <em>%h</em>" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 +msgid "Remove…" +msgstr "Fjern…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "Kræver ca. %1024mB størrelse for %d pakke(r) at installere." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 +msgid "Require version %h %h, installed %h" +msgstr "Kræver version %h %h, installeret %h" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 +msgid "" +"Required dependency package <em>%h</em> is not available in any repository." +msgstr "" +"Påkrævet dependency pakke <em>%h</em> er ikke tilgængelig i noget repository." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 +msgid "Requires update to %h %h" +msgstr "Kræver opdatering til %h %h" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 +msgid "Reset" +msgstr "Nulstil" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +msgid "SHA256" +msgstr "SHA256" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 +msgid "Save" +msgstr "Gem" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 +msgid "Saving configuration data…" +msgstr "Gemmer konfigurationsdata…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 +msgid "Size" +msgstr "Størrelse" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 +msgid "Size (.ipk)" +msgstr "Størrelse (.ipk)" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 +#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 +msgid "Software" +msgstr "Software" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Forslag til oversættelser" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "Foreslåede oversættelser kræver ca. %1024mB ekstra plads." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 +msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." +msgstr "Kommandoen <em>opkg %h</em> mislykkedes med koden <code>%d</code>." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 +msgid "" +"The installed version of package <em>%h</em> is not compatible, require %s " +"while %s is installed." +msgstr "" +"Den installerede version af pakken <em>%h</em> er ikke kompatibel, kræver %s " +"mens %s er installeret." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 +msgid "The package <em>%h</em> is not available in any configured repository." +msgstr "" +"Pakken <em>%h</em> er ikke tilgængelig i noget konfigureret repository." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 +msgid "" +"The repository version of package <em>%h</em> is not compatible, require %s " +"but only %s is available." +msgstr "" +"repository version af pakken <em>%h</em> er ikke kompatibel, kræver %s, men " +"kun %s er tilgængelig." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 +msgid "Type to filter…" +msgstr "Skriv for at filtrere…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 +msgid "Unable to execute <em>opkg %s</em> command: %s" +msgstr "Kan ikke udføre <em>opkg %s</em> kommando: %s" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 +msgid "Unable to read %s: %s" +msgstr "Kan ikke læse %s: %s" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 +msgid "Unable to save %s: %s" +msgstr "Kan ikke gemme %s: %s" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 +msgid "Update lists…" +msgstr "Opdater lister…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 +msgid "Updates" +msgstr "Opdateringer" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 +msgid "Upgrade…" +msgstr "Opgrader…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 +msgid "Upload Package…" +msgstr "Upload pakke…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 +msgid "Version" +msgstr "Version" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 +msgid "Version incompatible" +msgstr "Version inkompatibel" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 +msgid "Waiting for the <em>opkg %h</em> command to complete…" +msgstr "Venter på at kommandoen <em>opkg %h</em> afsluttes…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "alle" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "filtreret" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "ingen" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 +msgid "unknown" +msgstr "ukendt" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB komprimeret" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB installeret" + +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Overskriv filer fra andre pakke(r)" diff --git a/applications/luci-app-opkg/po/de/opkg.po b/applications/luci-app-opkg/po/de/opkg.po index ddb3eaf5a5..2ff78e6f86 100644 --- a/applications/luci-app-opkg/po/de/opkg.po +++ b/applications/luci-app-opkg/po/de/opkg.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-26 17:57+0200\n" -"PO-Revision-Date: 2020-07-11 21:29+0000\n" +"PO-Revision-Date: 2023-02-13 12:12+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/de/>\n" @@ -12,21 +12,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.16-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Aktionen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Überschreiben von Dateien bei Konflikten mit anderen Paketen erlauben" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "Unbenutzte Abhängigkeiten automatisch entfernen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Verfügbar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -40,82 +44,106 @@ msgstr "" "Konfigurationsdateien kann zwar geändert werden, wird aber überlicherweise " "bei <em>Systemupdates</em> zurückgesetzt." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Abbrechen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "Zurücksetzen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "Konfiguriere opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "Abhängigkeiten" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Beschreibung" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "Details für Paket <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" msgstr "Verwerfen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "LuCI Sprachpakete anzeigen" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "Alle verfügbaren Sprachpakete anzeigen" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" +"Nur Basis-Sprachpakete und zusätzliche Sprachpakete für bereits installierte " +"Sprachen anzeigen" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "Einträge %d-%d von %d" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Paket herunterladen und installieren" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "Fehler" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "Paketmanager ausführen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Filter" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Freier Platz" #: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 msgid "Grant access to opkg management" -msgstr "Gewähre Zugriff auf die Verwaltung von opkg" +msgstr "Zugriff auf die opkg-Verwaltung gewähren" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "Alle Sprachpakete ausblenden" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Installieren" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "Vorgeschlagene Sprachpakete auch installieren" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "Installiert" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -124,154 +152,162 @@ msgstr "" "Sicherheitsrisiko! Soll wirklich versucht werden, <em>%h</em> zu " "installieren?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "Installieren…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "Lade Konfigurationsdaten…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "Lade Paketinformationen…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "Paket manuell installieren" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "Aktualisierung benötigt" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "Nächste Seite" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "Keine Informationen verfügbar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "Keine Pakete" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "Keine auf \"<strong>%h</strong>\" zutreffenden Pakete." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "Nicht verfügbar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "Nicht installiert" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "OPKG-Konfiguration" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "Überschreiben von Dateien anderer Pakete erlauben" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Paketname" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "Paketname oder URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "Vorige Seite" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "Soll wirklich versucht werden, <em>%h</em> zu installieren?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Entfernen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "Paket <em>%h</em> entfernen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Entfernen…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." msgstr "" -"Benötige etwa %.1024mB Speicherplatz für die Installation von %d Pakete(n)." +"Benötige etwa %1024mB Speicherplatz für die Installation von %d Pakete(n)." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "Erforderliche Version %h %h, installiert %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" "Benötigtes abhängiges Paket <em>%h</em> ist in keinem Repository verfügbar." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "Benötigt Update auf Version %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Zurücksetzen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Speichern" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "Speichere Konfigurationsdaten…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Größe" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "Größe (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Paketverwaltung" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Vorgeschlagene Sprachpakete" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" +"Die vorgeschlagenen Sprachpakete benötigen etwa %1024mB zusätzlichen " +"Speicherplatz." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" "Das <em>opkg %h</em> Kommando wurde mit Fehlercode <code>%d</code> beendet." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -279,12 +315,12 @@ msgstr "" "Die installierte Version von Paket <em>%h</em> ist nicht kompatibel, " "benötige Version %s während %s installiert ist." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" "Das Paket <em>%h</em> ist in keinem konfiguriertem Repository verfügbar." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -292,69 +328,87 @@ msgstr "" "Die Repository-Version von Paket <em>%h</em> ist nicht kompatibel, benötige " "Version %s aber nur %s ist verfügbar." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "Tippen zum Filtern…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "Der Befehl <em>opkg %s</em> konnte nicht ausgeführt werden: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "Kann %s nicht lesen: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "%s kann nicht gespeichert werden: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "Listen aktualisieren…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "Aktualisierungen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "Aktualisieren…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "Paket hochladen…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Version" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "Version inkompatibel" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Warte auf das <em>opkg %h</em> Kommando…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "alle" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "gefiltert" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "keine" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "unbekannt" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "ca. %.1024mB komprimiert" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "ca. %1024mB komprimiert" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "ca. %1024mB installiert" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "ca. %.1024mB installiert" +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Überschreiben von Dateien anderer Pakete erlauben" #~ msgid "" #~ "Require version %h %h,\n" diff --git a/applications/luci-app-opkg/po/el/opkg.po b/applications/luci-app-opkg/po/el/opkg.po index 383d069caa..daa09c336c 100644 --- a/applications/luci-app-opkg/po/el/opkg.po +++ b/applications/luci-app-opkg/po/el/opkg.po @@ -14,19 +14,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Ενέργειες" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Διαθέσιμο" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -34,63 +38,77 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Ακύρωση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 #, fuzzy msgid "Configure opkg…" msgstr "Παραμετροποίηση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Περιγραφή" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Κατέβασμα και εγκατάσταση πακέτου" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 #, fuzzy msgid "Errors" msgstr "Σφάλμα" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Φίλτρο" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Ελεύθερος χώρος" @@ -98,255 +116,284 @@ msgstr "Ελεύθερος χώρος" msgid "Grant access to opkg management" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Εγκατάσταση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 #, fuzzy msgid "Installed" msgstr "Εγκατάσταση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 #, fuzzy msgid "Install…" msgstr "Εγκατάσταση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 #, fuzzy msgid "Loading configuration data…" msgstr "Μετάβαση στη σχετική σελίδα ρυθμίσεων" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 #, fuzzy msgid "Manually install package" msgstr "Κατέβασμα και εγκατάσταση πακέτου" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "Δεν υπάρχουν πληροφορίες διαθέσιμες" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 #, fuzzy msgid "No packages" msgstr "Εύρεση πακέτου" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 #, fuzzy msgid "Not available" msgstr "Διαθέσιμο Συνολικά" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 #, fuzzy msgid "Not installed" msgstr "Εγκατάσταση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "Εντάξει" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 #, fuzzy msgid "OPKG Configuration" msgstr "Παραμετροποίηση OPKG" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Όνομα πακέτου" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 #, fuzzy msgid "Package name or URL…" msgstr "Όνομα πακέτου" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Αφαίρεση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Αφαίρεση…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Αρχικοποίηση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Αποθήκευση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 #, fuzzy msgid "Saving configuration data…" msgstr "Παραμετροποίηση Συσκευής" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Μέγεθος" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Λογισμικό" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Έκδοση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/en/opkg.po b/applications/luci-app-opkg/po/en/opkg.po index 17c6296daa..7e0d54fd7e 100644 --- a/applications/luci-app-opkg/po/en/opkg.po +++ b/applications/luci-app-opkg/po/en/opkg.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2019-12-07 10:44+0000\n" -"Last-Translator: Guillaume D. <2a3b@protonmail.com>\n" +"PO-Revision-Date: 2023-11-30 14:34+0000\n" +"Last-Translator: rygle <pittos@post.com>\n" "Language-Team: English <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/en/>\n" "Language: en\n" @@ -12,21 +12,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 5.3-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -34,61 +38,75 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" -msgstr "" +msgstr "Cancel" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "" @@ -96,245 +114,274 @@ msgstr "" msgid "Grant access to opkg management" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" -msgstr "" +msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" -msgstr "" +msgstr "Version" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/es/opkg.po b/applications/luci-app-opkg/po/es/opkg.po index 5843562454..1de3cdadbe 100644 --- a/applications/luci-app-opkg/po/es/opkg.po +++ b/applications/luci-app-opkg/po/es/opkg.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2020-05-02 15:55+0000\n" +"PO-Revision-Date: 2022-08-28 23:17+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/es/>\n" @@ -12,21 +12,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.14.1-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Acciones" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Permitir sobrescribir archivos de paquetes en conflicto" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "Eliminar automáticamente las dependencias no utilizadas" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Disponible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -35,65 +39,81 @@ msgid "" msgstr "" "A continuación se muestra una lista de los diversos archivos de " "configuración utilizados por <em>opkg</em>. Use <em>opkg.conf</em> para la " -"configuración global y <em>customfeeds.conf</em> para las entradas " -"personalizadas del repositorio. La configuración en los otros archivos puede " +"configuración global y <em>customfeeds.conf</em> para entradas de " +"repositorio personalizadas. La configuración en los otros archivos puede " "cambiarse, pero por lo general no se conserva mediante <em>sysupgrade</em>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "Limpiar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "Configurar opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "Dependencias" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Descripción" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "Detalles para el paquete <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" msgstr "Descartar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "Mostrar paquetes de traducción de LuCI" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "Mostrar todos los paquetes de traducción disponibles" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" +"Mostrar paquetes de traducción base y paquetes de traducción solo para " +"idiomas ya instalados" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "Mostrando %d-%d de %d" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Descargar e instalar paquete" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "Errores" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "Ejecutando el gestor de paquetes" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Filtrar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Espacio libre" @@ -101,20 +121,28 @@ msgstr "Espacio libre" msgid "Grant access to opkg management" msgstr "Conceder acceso a la gestión de opkg" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "Ocultar todos los paquetes de traducción" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Instalar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "Instalar también los paquetes de traducción sugeridos" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "Instalado" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -122,153 +150,160 @@ msgstr "" "¡Instalar paquetes de fuentes no confiables es un riesgo potencial de " "seguridad! ¿Realmente intentas instalar <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "Instalar…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "Cargando datos de configuración…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "Cargando información del paquete…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "Instalar manualmente el paquete" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "Necesita actualización" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "Página siguiente" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "No hay información disponible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "Sin paquetes" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "Ningún paquete coincide con «<strong>%h</strong>»." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "No disponible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "No instalado" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "Aceptar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "Configuración de OPKG" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "Sobrescribir archivos de otro/s paquete/s" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Nombre del paquete" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "Nombre de paquete o URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "Página anterior" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "¿Confirma que quiere instalar <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Eliminar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "Eliminar paquete <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Desinstalar…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "Se necesitan aproximadamente %.1024mB para instalar %d paquete/s." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "Se necesitan aproximadamente %1024mB para instalar %d paquete/s." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "Requiere la versión%h%h, instalado %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" "El paquete de dependencia requerido <em>%h</em> no está disponible en ningún " "repositorio." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "Requiere actualización a %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Restablecer" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Guardar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "Guardando datos de configuración…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Tamaño" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "Tamaño (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Software" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Traducciones sugeridas" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" +"Las traducciones sugeridas requieren aprox. %1024mB de espacio adicional." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "El comando <em>opkg %h</em> falló con el código <code>%d</code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -276,12 +311,12 @@ msgstr "" "La versión instalada del paquete <em>%h</em> no es compatible; requiere %s, " "mientras que %s está instalado." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" "El paquete <em>%h</em> no está disponible en ningún repositorio configurado." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -289,69 +324,87 @@ msgstr "" "La versión de repositorio del paquete <em>%h</em> no es compatible, requiere " "%s pero solo %s está disponible." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "Escriba para filtrar…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "No se puede ejecutar el comando <em>opkg %s</em>: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "No se puede leer %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "No se puede guardar %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "Actualizar listas…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "Actualizaciones" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "Actualizar…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "Subir paquete…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Versión" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "Versión incompatible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Esperando a que el comando <em>opkg %h</em> finalice…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "todos" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "filtrado" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "ninguno" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "desconocido" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "~%.1024mB comprimido" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB comprimido" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB instalado" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "~%.1024mB instalado" +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Sobrescribir archivos de otro/s paquete/s" #~ msgid "" #~ "Require version %h %h,\n" diff --git a/applications/luci-app-opkg/po/fa/opkg.po b/applications/luci-app-opkg/po/fa/opkg.po new file mode 100644 index 0000000000..517203373e --- /dev/null +++ b/applications/luci-app-opkg/po/fa/opkg.po @@ -0,0 +1,393 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2023-11-26 17:59+0000\n" +"Last-Translator: Pegah_fars <ashkanull@gmail.com>\n" +"Language-Team: Persian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsopkg/fa/>\n" +"Language: fa\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.2.1-rc\n" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 +msgid "Actions" +msgstr "اقدام ها" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "بازنویسی فایل های بسته متضاد را مجاز کنید" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 +msgid "Automatically remove unused dependencies" +msgstr "حذف اتوماتیک پیش نیازهای بدون استفاده" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 +msgid "Available" +msgstr "در دسترس" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +msgid "" +"Below is a listing of the various configuration files used by <em>opkg</em>. " +"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " +"custom repository entries. The configuration in the other files may be " +"changed but is usually not preserved by <em>sysupgrade</em>." +msgstr "" +"در زیر فهرستی از فایل های پیکربندی مختلف مورد استفاده توسط <em>opkg</em> " +"است. استفاده از <em>opkg.conf</em> برای تنظیمات جهانی و <em>customfeeds." +"conf</em> برای ورودی های مخزن سفارشی است. پیکربندی در فایل های دیگر ممکن است " +"تغییر کند اما معمولاً توسط <em>sysupgrade</em> حفظ نمی شود." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +msgid "Cancel" +msgstr "لغو" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 +msgid "Clear" +msgstr "پاک کردن" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 +msgid "Configure opkg…" +msgstr "پیکربندی opkg…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 +msgid "Dependencies" +msgstr "وابستگی ها" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 +msgid "Description" +msgstr "شرح" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 +msgid "Details for package <em>%h</em>" +msgstr "جزئیات مربوط به بسته بندی <em>%h</em>" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +msgid "Dismiss" +msgstr "رد کردن" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "نمایش بسته های ترجمه LuCI" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "نمایش همه موارد موجود در بسته های ترجمه" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" +"نمایش بستههای ترجمه پایه و بستههای ترجمه فقط برای زبانهایی که قبلاً نصب شدهاند" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 +msgid "Displaying %d-%d of %d" +msgstr "نمایش %d-%d از %d" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 +msgid "Download and install package" +msgstr "دانلود و نصب بسته" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 +msgid "Errors" +msgstr "خطاها" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 +msgid "Executing package manager" +msgstr "در حال اجرای مدیر بسته" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 +msgid "Filter" +msgstr "فیلتر" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 +msgid "Free space" +msgstr "فضای خالی" + +#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 +msgid "Grant access to opkg management" +msgstr "اعطای دسترسی به مدیریت opkg" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "پنهان کردن تمام بسته های ترجمه" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 +msgid "Install" +msgstr "نصب" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "بسته های ترجمه پیشنهادی را نیز نصب کنید" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 +msgid "Installed" +msgstr "نصب شد" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 +msgid "" +"Installing packages from untrusted sources is a potential security risk! " +"Really attempt to install <em>%h</em>?" +msgstr "" +"نصب بسته ها از منابع نامعتبر یک خطر امنیتی بالقوه است! آیا واقعاً سعی میکنید " +"<em>%h</em> را نصب کنید؟" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 +msgid "Install…" +msgstr "نصب…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 +msgid "Loading configuration data…" +msgstr "در حال بارگیری داده های پیکربندی…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 +msgid "Loading package information…" +msgstr "در حال بارگیری اطلاعات بسته…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +msgid "MD5" +msgstr "MD5" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 +msgid "Manually install package" +msgstr "بسته را به صورت دستی نصب کنید" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 +msgid "Needs upgrade" +msgstr "نیاز به ارتقا دارد" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 +msgid "Next page" +msgstr "صفحه بعد" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 +msgid "No information available" +msgstr "اطلاعاتی در دسترس نیست" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 +msgid "No packages" +msgstr "بدون بسته" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +msgid "No packages matching \"<strong>%h</strong>\"." +msgstr "هیچ بسته ای مطابق با «<strong>%h</strong>» وجود ندارد." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 +msgid "Not available" +msgstr "در دسترس نیست" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 +msgid "Not installed" +msgstr "نصب نشده است" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 +msgid "OK" +msgstr "تایید" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 +msgid "OPKG Configuration" +msgstr "پیکربندی OPKG" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 +msgid "Package name" +msgstr "نام بسته" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 +msgid "Package name or URL…" +msgstr "نام بسته یا نشانی وب…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 +msgid "Previous page" +msgstr "صفحه قبلی" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 +msgid "Really attempt to install <em>%h</em>?" +msgstr "آیا واقعاً سعی میکنید <em>%h</em> را نصب کنید؟" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 +msgid "Remove" +msgstr "حذف" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 +msgid "Remove package <em>%h</em>" +msgstr "بسته <em>%h</em> را حذف کنید" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 +msgid "Remove…" +msgstr "حذف…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "نیاز به حدود اندازه %1024 مگابایت برای %d بسته(های) برای نصب." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 +msgid "Require version %h %h, installed %h" +msgstr "نیاز به نسخه %h% .h %h نصب شده است" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 +msgid "" +"Required dependency package <em>%h</em> is not available in any repository." +msgstr "بسته وابستگی مورد نیاز <em>%h</em> در هیچ مخزنی موجود نیست." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 +msgid "Requires update to %h %h" +msgstr "نیاز به بروز رسانی به %h %h" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 +msgid "Reset" +msgstr "تنظیم مجدد" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +msgid "SHA256" +msgstr "SHA256" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 +msgid "Save" +msgstr "ذخیره" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 +msgid "Saving configuration data…" +msgstr "در حال ذخیره داده های پیکربندی…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 +msgid "Size" +msgstr "اندازه" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 +msgid "Size (.ipk)" +msgstr "اندازه (ipk.)" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 +#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 +msgid "Software" +msgstr "نرم افزار" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "ترجمه های پیشنهادی" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "ترجمه های پیشنهادی نیاز به فضای اضافی ٪1024mB دارند." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 +msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." +msgstr "فرمان <em>opkg %h</em> با کد <code>%d</code> ناموفق بود." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 +msgid "" +"The installed version of package <em>%h</em> is not compatible, require %s " +"while %s is installed." +msgstr "" +"نسخه نصب شده بسته <em>%h</em> سازگار نیست، تا زمانی که %s نصب شده باشد به %s " +"نیاز دارید." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 +msgid "The package <em>%h</em> is not available in any configured repository." +msgstr "بسته <em>%h</em> در هیچ مخزن پیکربندی شده ای موجود نیست." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 +msgid "" +"The repository version of package <em>%h</em> is not compatible, require %s " +"but only %s is available." +msgstr "" +"نسخه مخزن بسته <em>%h</em> سازگار نیست، به %s نیاز دارد اما فقط %s موجود است." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 +msgid "Type to filter…" +msgstr "برای فیلتر کردن تایپ کنید …" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 +msgid "Unable to execute <em>opkg %s</em> command: %s" +msgstr "فرمان <em>opkg %s</em> را نمیتوان اجرا کرد: %s" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 +msgid "Unable to read %s: %s" +msgstr "قادر به خواندن %s: %s نیست" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 +msgid "Unable to save %s: %s" +msgstr "قادر به ذخیره %s: %s نیست" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 +msgid "Update lists…" +msgstr "به روز رسانی لیست ها…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 +msgid "Updates" +msgstr "به روز رسانی ها" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 +msgid "Upgrade…" +msgstr "ارتقا…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 +msgid "Upload Package…" +msgstr "آپلود بسته…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 +msgid "Version" +msgstr "نسخه" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 +msgid "Version incompatible" +msgstr "نسخه ناسازگار است" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 +msgid "Waiting for the <em>opkg %h</em> command to complete…" +msgstr "در انتظار تکمیل شدن دستور <em>opkg %h</em>…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "همه" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "فیلتر شده" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "هیچکدام" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 +msgid "unknown" +msgstr "ناشناخته" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~% 1024 مگابایت فشرده شده است" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~% 1024 مگابایت نصب شده است" diff --git a/applications/luci-app-opkg/po/fi/opkg.po b/applications/luci-app-opkg/po/fi/opkg.po index a540a3eec9..b74650bc47 100644 --- a/applications/luci-app-opkg/po/fi/opkg.po +++ b/applications/luci-app-opkg/po/fi/opkg.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2020-06-25 19:08+0000\n" -"Last-Translator: Petri Asikainen <uniluodossa@gmail.com>\n" +"PO-Revision-Date: 2023-10-18 05:43+0000\n" +"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/fi/>\n" "Language: fi\n" @@ -12,87 +12,106 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 5.1\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Toiminnot" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Salli ristiriitoja aiheuttavien pakettien ylikirjoittaminen" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" -msgstr "Poista tarpettomat riippuvuudet automaattisesti" +msgstr "Poista tarpeettomat riippuvuudet automaattisesti" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Saatavilla" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " "custom repository entries. The configuration in the other files may be " "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -"Alla on luettelo <em> opkg: n </em> käyttämistä määrityksistä. Käytä <em> " -"opkg.conf </em> yleisiä asetuksia varten ja <em> customfeeds.conf </em> " -"mukautettujen arkistojen merkinnöille. Voit toki muuttaa myös muita " -"tiedostoja, mutta <em> sysupgrade </em> ei yleensä säilytä muutoksia." - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +"Alla on luettelo <em>opkg</em>:n käyttämistä määritystiedostoista. Käytä " +"<em>opkg.conf</em>-tiedostoa yleisiä asetuksia varten ja <em>customfeeds." +"conf</em>-tiedostoa mukautettujen arkistojen merkinnöille. Voit toki muuttaa " +"myös muita tiedostoja, mutta <em>sysupgrade</em> ei yleensä säilytä " +"muutoksia." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Peruuta" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "Tyhjennä" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "Määritä opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "Riippuvuudet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Kuvaus" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "Paketin <em>%h</em> tiedot" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" msgstr "Hylkää" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "Näytä LuCI:n kielikäännöspaketit" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "Näytä kaikki saatavilla olevat kielikäännöspaketit" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "Näytetään %d-%d / %d" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Lataa ja asenna paketti" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "Virheet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "Suoritetaan paketinhallintaa" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Suodatin" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Vapaa levytila" @@ -100,20 +119,28 @@ msgstr "Vapaa levytila" msgid "Grant access to opkg management" msgstr "Salli pääsy pakettiasennusten hallintaan (opkg)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "Piilota kaikki kielikäännöspaketit" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Asenna" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "Asenna myös ehdotetut kielikäännöspaketit" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "Asennettu" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -121,151 +148,159 @@ msgstr "" "Pakettien asentaminen epäluotettavista lähteistä on mahdollinen " "tietoturvariski! Yritätkö todella asentaa <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "Asenna…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "Ladataan asetustietoja…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "Ladataan paketin tietoja…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "Asenna paketti käsin" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "Tarvitsee päivityksen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "Seuraava sivu" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "Ei tietoja saatavilla" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "Ei paketteja" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "Ei paketteja, jotka vastaavat \"<strong>%h</strong>\"." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "Ei saatavilla" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "Ei asennettu" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" -msgstr "OPKG Määritys" +msgstr "OPKG-määritys" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "Korvaa tiedostoja muista paketeista" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Paketin nimi" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" -msgstr "Paketin nimi tai URL …" +msgstr "Paketin nimi tai URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "Edellinen sivu" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" -msgstr "Yritetäänkö todella asentaa <em>%h</em>?" +msgstr "Yritätkö todella asentaa <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Poista" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "Poista paketti <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Poista…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "Paketin/Pekettien %d asennus edellyttää noin %.1024mB tilaa." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "%d paketin asennus edellyttää noin %1024mB tilaa." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "Vaatii version %h %h, asennettu %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." -msgstr "Vaadittava paketti <em>% h </em> ei ole käytettävissä missään." +msgstr "" +"Vaadittava riippuvuuspaketti <em>%h</em> ei ole saatavilla mistään " +"ohjelmistolähteestä." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "Edellyttää päivitystä kohteeseen %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Palauta" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Tallenna" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" -msgstr "Tallennetaan määritystietoja …" +msgstr "Tallennetaan määritystietoja…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Koko" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "Koko (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Ohjelmisto" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Ehdotetut kielikäännökset" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "<em>opkg %h</em> -komento epäonnistui koodilla <code>%d</code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -273,79 +308,98 @@ msgstr "" "Paketin <em>%h</em> asennettu versio ei ole yhteensopiva, se vaatii %s, kun " "%s on asennettu." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -"Paketti <em>%h</em> ei ole käytettävissä missään määritetyssä lähteessä." +"Paketti <em>%h</em> ei ole saatavilla mistään määritetystä " +"ohjelmistolähteestä." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" -"Paketti <em>%h</em> ei ole yhteensopiva is not compatible, vaaditaan%s mutta " -"vain %s on käytettävissä." +"Ohjelmistolähteen versio paketista <em>%h</em> ei ole yhteensopiva, " +"vaaditaan %s mutta vain %s on saatavilla." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" -msgstr "Kirjoita suodatin…" +msgstr "Kirjoita suodattaaksesi…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "Komentoa <em>opkg %s</em> ei voida suorittaa: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "Ei voida lukea %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "Ei voida tallentaa %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "Päivitä luettelot…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "Päivitykset" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "Päivitys…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" -msgstr "Lähetä paketti …" +msgstr "Lähetä paketti…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Versio" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "Versio ei ole yhteensopiva" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Odotetaan <em>opkg %h</em> -komennon valmistumista…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "kaikki" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "tuntematon" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "~%.1024mB pakattu" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB pakattu" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB asennettuna" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "~%.1024mB asennettuna" +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Korvaa tiedostoja muista paketeista" diff --git a/applications/luci-app-opkg/po/fr/opkg.po b/applications/luci-app-opkg/po/fr/opkg.po index c191960fb4..de2a2f16fe 100644 --- a/applications/luci-app-opkg/po/fr/opkg.po +++ b/applications/luci-app-opkg/po/fr/opkg.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2020-05-10 12:47+0000\n" +"PO-Revision-Date: 2023-06-11 22:12+0000\n" "Last-Translator: viking76 <liaudetgael@gmail.com>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/fr/>\n" @@ -12,21 +12,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.18-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Actions" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Autoriser l'écrasement des fichiers en conflit du package" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "Supprimez automatiquement les dépendances inutilisées" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Disponible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -39,61 +43,77 @@ msgstr "" "personnalisées. La configuration des autres fichiers peut être modifiée mais " "n'est généralement pas conservée par <em>sysupgrade</em>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Annuler" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "Nettoyer" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "Configuration opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "Dépendances" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Description" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "Détails du package <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" -msgstr "Fermer" +msgstr "Annuler" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "Afficher les paquets de traduction LuCI" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "Afficher tous les paquets de traduction disponibles" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" +"Afficher uniquement les paquets de traduction de base et les paquets de " +"traduction pour les langues déjà installées" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "Affichage de %d-%d sur %d" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Télécharge et installe le paquet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "Erreurs" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "Exécution du gestionnaire de packages" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Filtrer" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Espace libre" @@ -101,20 +121,28 @@ msgstr "Espace libre" msgid "Grant access to opkg management" msgstr "Permettre l'accès complet à la gestion des opkg" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "Masquer tous les paquets de traduction" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Installer" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "Installer également les paquets de traduction suggérés" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "Installé" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -122,153 +150,161 @@ msgstr "" "L'installation de packages à partir de sources non fiables est un risque " "potentiel pour la sécurité! Voulez-vous vraiment installer <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "Installer…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "Chargement des données de configuration…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "Chargement des informations sur le package…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "Installer manuellement le package" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "Besoin de mise à niveau" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "Page suivante" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" -msgstr "Information indisponible" +msgstr "Aucune information disponible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "Pas de paquet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "Aucun package correspondant à \"<strong>%h</strong>\"." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "Indisponible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "Pas installé" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "Configuration OPKG" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "Écraser les fichiers d'autres packages" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Nom du paquet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "Nom ou URL du package…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "Page précédente" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "Voulez-vous vraiment installer <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Désinstaller" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "Supprimer le package <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Désinstaller…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "Exiger env taille. %.1024mB pour %d paquet(s) à installer." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "Exiger env taille. %1024mB pour %d paquet(s) à installer." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "Version requise %h %h, installée %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" "Le package de dépendance requis <em>%h</em> n'est disponible dans aucun " "référentiel." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "Nécessite une mise à jour vers %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Remise à zéro" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" -msgstr "Enregistrer" +msgstr "Sauvegarder" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "Enregistrement des données de configuration…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Taille" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "Taille (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Logiciels" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Traductions suggérées" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" +"Les traductions proposées nécessitent environ %1024mB d'espace " +"supplémentaire." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "La commande <em>opkg %h</em> a échoué avec le code <code>%d</code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -276,12 +312,12 @@ msgstr "" "La version installée du package <em>%h</em> n'est pas compatible, nécessite " "%s pendant que %s est installé." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" "Le package <em>%h</em> n'est disponible dans aucun référentiel configuré." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -289,66 +325,84 @@ msgstr "" "La version du référentiel du package <em>%h</em> n'est pas compatible, " "nécessite %s mais seulement %s est disponible." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "Type à filtrer…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "Impossible d'exécuter la commande <em>opkg %s</em> : %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "Impossible de lire %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "Impossible d'enregistrer %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "Mettre à jour les listes…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "Mises à jour" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "Mettre à jour…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "Télécharger le package…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Version" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "Version incompatible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "En attente de la fin de la commande <em>opkg %h</em>…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "tout" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "filtrée" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "aucun" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "inconnu" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "~%.1024mB compressé" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB compressé" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB installé" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "~%.1024mB installé" +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Écraser les fichiers d'autres packages" diff --git a/applications/luci-app-opkg/po/he/opkg.po b/applications/luci-app-opkg/po/he/opkg.po index 7816c2ffe5..beb541b128 100644 --- a/applications/luci-app-opkg/po/he/opkg.po +++ b/applications/luci-app-opkg/po/he/opkg.po @@ -1,29 +1,34 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2013-02-02 14:32+0200\n" -"Last-Translator: oranav <oranav@gmail.com>\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-09-18 21:37+0000\n" +"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" +"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsopkg/he/>\n" "Language: he\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: Pootle 2.0.6\n" +"X-Generator: Weblate 5.0.2\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "פעולות" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 -msgid "Automatically remove unused dependencies" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 +msgid "Automatically remove unused dependencies" +msgstr "להסיר אוטומטית תלויות שאינן בשימוש" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "זמין" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -31,317 +36,352 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" -msgstr "בטל" +msgstr "ביטול" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" -msgstr "הגדרות" +msgstr "הגדר opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "תיאור" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" -msgstr "" +msgstr "פרטים על החבילה <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" +msgstr "התעלמות" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 -msgid "Displaying %d-%d of %d" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 +msgid "Displaying %d-%d of %d" +msgstr "מוצגים %d-%d מתוך %d" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" -msgstr "הורד והתקן חבילות" +msgstr "הורדת והתקנת חבילות" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" -msgstr "שגיאה" +msgstr "שגיאות" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" -msgstr "" +msgstr "מנהל החבילות מופעל" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" -msgstr "" +msgstr "מסנן" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" -msgstr "" +msgstr "מקום פנוי" #: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 msgid "Grant access to opkg management" +msgstr "הענקת גישה לניהול opkg" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" +msgstr "התקנה" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" -msgstr "" +msgstr "מותקנת" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" +"התקנת חבילות ממקורות מפוקפקים היא הזמנה לסיכון אבטחה! לנסות להתקין את " +"<em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" -msgstr "" +msgstr "התקנה…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" -msgstr "הגדרות נפוצות" +msgstr "נתוני התצורה נטענים…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" -msgstr "" +msgstr "פרטי החבילה נטענים…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" -msgstr "" +msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" -msgstr "הורד והתקן חבילות" +msgstr "התקנת חבילה באופן ידני" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" -msgstr "" +msgstr "נדרש שדרוג" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" -msgstr "" +msgstr "העמוד הבא" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" -msgstr "" +msgstr "אין פרטים זמינים" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" -msgstr "חבילות זמינות" +msgstr "אין חבילות" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" -msgstr "סה\"כ פנוי" +msgstr "לא זמין" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" -msgstr "לא מחובר" +msgstr "לא מותקן" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" -msgstr "הגדרות" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" +msgstr "תצורת OPKG" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "שם החבילה" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" -msgstr "שם החבילה" +msgstr "שם החבילה או URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" -msgstr "הגדרות מכשיר" +msgstr "שומר נתוני תצורה…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "תוכנה" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "גרסה" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 -msgid "unknown" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 +msgid "unknown" +msgstr "לא ידוע" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/hi/opkg.po b/applications/luci-app-opkg/po/hi/opkg.po index f6c123acb3..189b5f5037 100644 --- a/applications/luci-app-opkg/po/hi/opkg.po +++ b/applications/luci-app-opkg/po/hi/opkg.po @@ -14,19 +14,23 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "चाल-चलन" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -34,61 +38,75 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "" @@ -96,245 +114,274 @@ msgstr "" msgid "Grant access to opkg management" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/hu/opkg.po b/applications/luci-app-opkg/po/hu/opkg.po index 7ccc595e0d..94b205d830 100644 --- a/applications/luci-app-opkg/po/hu/opkg.po +++ b/applications/luci-app-opkg/po/hu/opkg.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-03-31 13:27+0000\n" -"Last-Translator: Tamas Szanto <taszanto@gmail.com>\n" +"PO-Revision-Date: 2021-06-14 19:53+0000\n" +"Last-Translator: Gergő Szalka <kisszalimo@gmail.com>\n" "Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/hu/>\n" "Language: hu\n" @@ -10,21 +10,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Műveletek" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "Nem használt függőségek automatikus eltávolítása" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Elérhető" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -37,82 +41,104 @@ msgstr "" "fájlokban lévő beállítások megváltoztathatók, de általában nem lesznek " "megtartva <em>rendszerfrissítéskor</em>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Mégse" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "Törlés" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "Az opkg beállítása…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "Függőségek" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Leírás" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "A(z) <em>%h</em> csomag részletei" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" msgstr "Eltüntetés" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "%d-%d / %d megjelenítése" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Csomag letöltése és telepítése" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "Hibák" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "Csomagkezelő végrehajtása" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Szűrő" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Szabad hely" #: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 msgid "Grant access to opkg management" +msgstr "Hozzáférés megadása az opkg kezelőnek" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Telepítés" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "Telepítve" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -121,153 +147,159 @@ msgstr "" "biztonsági kockázattal járhat! Valóban megpróbálja telepíteni a(z) <em>%h</" "em> csomagot?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "Telepítés…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "Beállítási adatok betöltése…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "Csomaginformációk betöltése…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "Csomag kézi telepítése" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "Frissítés szükséges" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "Következő oldal" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "Nincs elérhető információ" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "Nincsenek csomagok" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "Nincs „<strong>%h</strong>” mintára illeszkedő csomag." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "Nem érhető el" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "Nincs telepítve" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "Rendben" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "OPKG beállításai" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "Fájlok felülírása más csomagokból" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Csomagnév" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "Csomagnév vagy URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "Előző oldal" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "Valóban megpróbálja telepíteni a(z) <em>%h</em> csomagot?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Eltávolítás" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "A(z) <em>%h</em> csomag eltávolítása" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Eltávolítás…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "Nagyjából %.1024mB méret szükséges %d csomag telepítéséhez." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "Nagyjából %1024mB méret szükséges %d csomag telepítéséhez." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "A(z) %h %h verziója szükséges, %h van telepítve" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" "A szükséges <em>%h</em> függőségcsomag nem érhető el egyik tárolóban sem." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "A(z) %h %h verzióra frissítést igényli" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Visszaállítás" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Mentés" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "Beállítási adatok mentése…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Méret" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "Méret (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Szoftver" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" "Az <em>opkg %h</em> parancs meghiúsult a következő kóddal: <code>%d</code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -275,11 +307,11 @@ msgstr "" "A(z) <em>%h</em> csomag telepített verziója nem megfelelő. %s szükséges, " "miközben %s van telepítve." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "A(z) <em>%h</em> csomag nem érhető el egyik beállított tárolóban sem." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -287,66 +319,84 @@ msgstr "" "A(z) <em>%h</em> csomag tárolóban lévő verziója nem megfelelő. %s szükséges, " "de csak %s érhető el." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "Gépeljen a szűréshez…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "Nem sikerült végrehajtani az <em>opkg %s</em> parancsot: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "Nem sikerült beolvasni: %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "Nem sikerült elmenteni: %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "Listák frissítése…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "Frissítések" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "Frissítés…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "Csomag feltöltése…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Verzió" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "Nem megfelelő verzió" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Várakozás az <em>opkg %h</em> parancs befejeződésére…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "ismeretlen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "~%.1024mB tömörítve" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB tömörítve" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB telepítve" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "~%.1024mB telepítve" +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Fájlok felülírása más csomagokból" diff --git a/applications/luci-app-opkg/po/it/opkg.po b/applications/luci-app-opkg/po/it/opkg.po index 0274b865fe..8f48448ad3 100644 --- a/applications/luci-app-opkg/po/it/opkg.po +++ b/applications/luci-app-opkg/po/it/opkg.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: LuCI\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2020-02-28 00:33+0000\n" -"Last-Translator: TuxAlex0 <alex.skatingcassano@gmail.com>\n" +"PO-Revision-Date: 2023-08-10 16:54+0000\n" +"Last-Translator: random r <epsilin@yopmail.com>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/it/>\n" "Language: it\n" @@ -12,21 +12,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 5.0-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Azioni" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Consenti la sovrascrittura dei pacchetti in conflitto" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" -msgstr "Rimuovi automaticamente le dipendenze non utilizzate" +msgstr "Rimuovi automaticamente le dipendenze inutilizzate" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" -msgstr "Disponibile" +msgstr "Disponibili" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -35,86 +39,110 @@ msgid "" msgstr "" "Di seguito è riportato un elenco dei vari file di configurazione utilizzati " "da <em>opkg</em>. Usa <em>opkg.conf</em> per le impostazioni globali e " -"<em>customfeeds.conf</em> per le voci delle repository personalizzate. La " -"configurazione negli altri file può essere cambiata ma solitamente non viene " -"conservata da <em>sysupgrade</em>." +"<em>customfeeds.conf</em> per le voci di repository personalizzati. La " +"configurazione negli altri file può essere cambiata, ma solitamente non " +"viene conservata da <em>sysupgrade</em>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Annulla" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "Cancella" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "Configura opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "Dipendenze" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Descrizione" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "Dettagli per il pacchetto <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" -msgstr "Annulla" +msgstr "Chiudi" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "Mostra pacchetti traduzione di LuCI" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "Mostra tutti i pacchetti traduzione disponibili" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" +"Mostra i pacchetti di traduzione di base e i pacchetti di traduzione solo " +"per le lingue già installate" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "Mostrando %d-%d di %d" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" -msgstr "Scarica e installa pacchetto" +msgstr "Scarica e installa il pacchetto" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "Errori" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "Esecuzione del gestore pacchetti" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Filtro" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Spazio libero" #: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 msgid "Grant access to opkg management" -msgstr "" +msgstr "Concedi l'accesso alla gestione di opkg" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "Nascondi tutti i pacchetti di traduzione" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Installa" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "Installa anche i pacchetti di traduzione suggeriti" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "Installati" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -122,153 +150,159 @@ msgstr "" "L'installazione di pacchetti da fonti non attendibili è un potenziale " "rischio per la sicurezza! Tentare davvero di installare <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "Installa…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "Caricamento dati di configurazione…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "Caricamento delle informazioni sul pacchetto…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "Installa pacchetto manualmente" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "Richiede aggiornamento" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "Pagina successiva" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "Nessuna informazione disponibile" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "Nessun pacchetto" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "Nessun pacchetto corrispondente a \"<strong>%h</strong>\"." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "Non disponibile" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "Non installato" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "Configurazione OPKG" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "Sovrascrivere i file da altri pacchetti" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Nome pacchetto" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "Nome pacchetto o URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "Pagina precedente" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "Tentare davvero di installare <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Rimuovi" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "Rimuovere il pacchetto <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Rimuovi…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "Richiede circa %.1024mB per installare %d pacchetto(i)." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "Richiede circa %1024mB per installare %d pacchetto(i)." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "Richiede la versione %h %h, installata %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -"Il pacchetto di dipendenza <em>%h</em> non è disponibile in nessuna " +"Il pacchetto di dipendenza <em>%h</em> non è disponibile in nessun " "repository." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "Richiede l'aggiornamento a %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" -msgstr "Reset" +msgstr "Reimposta" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Salva" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "Salvataggio dati di configurazione…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Dimensione" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "Dimensione (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Software" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Traduzioni suggerite" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "Le traduzioni suggerite richiedono ca. %1024 mB di spazio aggiuntivo." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." -msgstr "Il comando <em>opkg %h</em> ha fallito con il codice <code>%d</code>." +msgstr "Il comando <em>opkg %h</em> è fallito con il codice <code>%d</code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -276,79 +310,97 @@ msgstr "" "La versione installata del pacchetto <em>%h</em> non è compatibile, richiede " "%s mentre %s è installato." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -"Il pacchetto <em>%h</em> non è disponibile in nessuna repository configurata." +"Il pacchetto <em>%h</em> non è disponibile in nessun repository configurato." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" -"La versione della repository del pacchetto <em>%h</em> non è compatibile, " +"La versione del repository del pacchetto <em>%h</em> non è compatibile, " "richiede %s ma è disponibile solo %s." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "Scrivi per filtrare…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" -msgstr "" +msgstr "Impossibile eseguire il comando <em>opkg %s</em>: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" -msgstr "" +msgstr "Impossibile leggere %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" -msgstr "" +msgstr "Impossibile salvare %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "Aggiorna liste…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "Aggiornamenti" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "Aggiorna…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" -msgstr "Carica Pacchetto…" +msgstr "Carica pacchetto…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Versione" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "Versione incompatibile" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "In attesa del completamento del comando <em>opkg %h</em>…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "tutto" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "filtrato" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "nessuno" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "sconosciuto" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "~%.1024mB compressi" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB compressi" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB installati" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "~%.1024mB installati" +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Sovrascrivere i file da altri pacchetti" diff --git a/applications/luci-app-opkg/po/ja/opkg.po b/applications/luci-app-opkg/po/ja/opkg.po index 6d081993b7..ca21e08c79 100644 --- a/applications/luci-app-opkg/po/ja/opkg.po +++ b/applications/luci-app-opkg/po/ja/opkg.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2020-06-28 19:19+0000\n" -"Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n" +"PO-Revision-Date: 2020-10-24 08:56+0000\n" +"Last-Translator: RyotaGamer <21ryotagamer@gmail.com>\n" "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/ja/>\n" "Language: ja\n" @@ -12,108 +12,134 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.3.1\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "操作" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "使用されない依存パッケージを自動的に削除" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "利用可能" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " "custom repository entries. The configuration in the other files may be " "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -"以下は <em>opkg</em> によって使用される、様々な設定ファイルの一覧です。 " -"<em>opkg.conf</em> は全般的な設定に、 <em>customfeeds.conf</em> はカスタム リ" +"以下は <em>opkg</em> によって使用される、様々な設定ファイルの一覧です。" +"<em>opkg.conf</em> は全般的な設定に、<em>customfeeds.conf</em> はカスタム リ" "ポジトリの登録に使用します。これら以外のファイル内の設定を変更しても、通常は " "<em>sysupgrade</em> 時に保持されません。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "キャンセル" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "クリア" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" -msgstr "opkg を設定…" +msgstr "opkg設定…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "依存関係" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "説明" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "<em>%h</em> パッケージの詳細" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" msgstr "閉じる" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" -msgstr "%d - %d を表示中(全 %d)" +msgstr "%d - %d 個を表示中(全 %d 個)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "パッケージのダウンロードとインストール" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "エラー" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" -msgstr "パッケージ マネージャーを実行中" +msgstr "パッケージマネージャーが実行中" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" -msgstr "フィルタ" +msgstr "フィルター" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" -msgstr "ディスクの空き容量" +msgstr "空き容量" #: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 msgid "Grant access to opkg management" msgstr "opkg 管理へのアクセスを許可" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "インストール" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "インストール済" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -121,152 +147,159 @@ msgstr "" "信頼されていない提供元からのパッケージのインストールは、セキュリティ リスクを" "伴います! <em>%h</em> のインストールを試行してもよろしいですか?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "インストール…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "設定データをロード中…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "パッケージ情報をロード中…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "パッケージの手動インストール" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "要アップグレード" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "次のページ" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" -msgstr "情報がありません" +msgstr "情報なし" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" -msgstr "パッケージがありません" +msgstr "パッケージなし" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "\"<strong>%h</strong>\" に一致するパッケージはありません。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "利用不可" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "未インストール" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "OPKG 設定" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "他のパッケージからファイルを上書き" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "パッケージ名" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "パッケージ名または URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "前のページ" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" -msgstr "<em>%h</em> のインストールを試行してもよろしいですか?" +msgstr "本当に <em>%h</em> をインストールしますか?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "削除" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "<em>%h</em> パッケージを削除" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "削除…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "インストールには約 %.1024mB の領域が必要です(上記 %d パッケージ)。" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "%d のインストールには約 %1024mB の領域が必要です。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" -msgstr "バージョン %h %h が必要です。インストール済みは %h です" +msgstr "バージョン %h %h が必要です。%h がインストール済みです" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -"必須の依存パッケージ <em>%h</em> は、設定済みのリポジトリでは利用できません。" +"必須の依存パッケージ <em>%h</em> は、設定されているリポジトリでは利用できませ" +"ん。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "%h %h への更新が必要です" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "リセット" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "保存" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "設定データを保存中…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "サイズ" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "サイズ (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "ソフトウェア" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." -msgstr "<em>opkg %h</em> コマンドが失敗しました。(コード <code>%d</code>)" +msgstr "<em>opkg %h</em> コマンドが失敗しました(コード <code>%d</code>)。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -274,11 +307,11 @@ msgstr "" "<em>%h</em> のインストール済みバージョンは互換性がありません。 %s が、インス" "トールされている %s には必要です。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "<em>%h</em> パッケージは、設定済みのリポジトリでは利用できません。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -286,69 +319,87 @@ msgstr "" "<em>%h</em> パッケージのリポジトリ バージョンは互換性がありません。 %s が必要" "ですが、 %s のみ利用可能です。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" -msgstr "入力して検索…" +msgstr "検索…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" -msgstr "<em>opkg %s</em> コマンドを実行できません : %s" +msgstr "<em>opkg %s</em> コマンドを実行できません: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" -msgstr "%s を読み取れません : %s" +msgstr "%s を読み取れません: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" -msgstr "%s を保存できません : %s" +msgstr "%s を保存できません: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "リストを更新…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" -msgstr "更新" +msgstr "アップデート" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "アップグレード…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "パッケージをアップロード…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "バージョン" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "互換性の無いバージョン" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" -msgstr "<em>opkg %h</em> コマンドを実行中です…" +msgstr "<em>opkg %h</em> コマンドが完了するのを待っています…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "不明" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "~ %.1024mB(圧縮後)" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB(圧縮後)" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB(インストール後)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "~ %.1024mB(インストール後)" +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "他のパッケージからファイルを上書き" #~ msgid "" #~ "Require version %h %h,\n" diff --git a/applications/luci-app-opkg/po/ko/opkg.po b/applications/luci-app-opkg/po/ko/opkg.po index 29566a6ccd..d0ea6d963a 100644 --- a/applications/luci-app-opkg/po/ko/opkg.po +++ b/applications/luci-app-opkg/po/ko/opkg.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2020-01-14 15:22+0000\n" -"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"PO-Revision-Date: 2023-10-04 03:38+0000\n" +"Last-Translator: Wonchul Kang <teshi85@gmail.com>\n" "Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/ko/>\n" "Language: ko\n" @@ -12,21 +12,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 5.1-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "관리 도구" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" -msgstr "" +msgstr "사용 가능" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -34,62 +38,75 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" -msgstr "" +msgstr "취소" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" -msgstr "설정" +msgstr "opkg 설정…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "설명" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" +msgstr "닫기" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "패키지 다운로드 후 설치" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" -msgstr "" +msgstr "패키지 관리자 실행 중" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "필터" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "여유 공간" @@ -97,256 +114,281 @@ msgstr "여유 공간" msgid "Grant access to opkg management" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "설치" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" -msgstr "설치" +msgstr "설치됨" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" -msgstr "설치" +msgstr "설치…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" -msgstr "공통 설정" +msgstr "공통 설정 읽는 중…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 #, fuzzy msgid "Manually install package" msgstr "패키지 다운로드 후 설치" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "이용 가능한 정보가 없습니다" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 #, fuzzy msgid "No packages" msgstr "패키지 찾기" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 #, fuzzy msgid "Not available" msgstr "총 이용 가능한 양" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 #, fuzzy msgid "Not installed" msgstr "연결되지 않음" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 #, fuzzy msgid "OPKG Configuration" msgstr "OPKG-설정" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "패키지 이름" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" -msgstr "패키지 이름" +msgstr "패키지 이름 또는 URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "제거" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "제거…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "초기화" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#, fuzzy msgid "SHA256" -msgstr "" +msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "저장" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" -msgstr "장치 설정" +msgstr "장치 설정 저장중…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" -msgstr "Size" +msgstr "크기" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "크기 (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "소프트웨어" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "버전" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 #, fuzzy msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "실행한 명령이 끝나기를 기다리는 중입니다..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 -msgid "unknown" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 +msgid "unknown" +msgstr "알 수 없는" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/lt/opkg.po b/applications/luci-app-opkg/po/lt/opkg.po new file mode 100644 index 0000000000..d42decbf3e --- /dev/null +++ b/applications/luci-app-opkg/po/lt/opkg.po @@ -0,0 +1,406 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2023-10-14 02:30+0000\n" +"Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n" +"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsopkg/lt/>\n" +"Language: lt\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 || n % 100 > " +"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? " +"1 : 2);\n" +"X-Generator: Weblate 5.1-dev\n" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 +msgid "Actions" +msgstr "Veiksmai" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Leisti perrašymą konfliktuojamų paketų failus" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 +msgid "Automatically remove unused dependencies" +msgstr "Automatiškai pašalinti nenaudojamas priklausomybes" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 +msgid "Available" +msgstr "Pasiekiamas" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +msgid "" +"Below is a listing of the various configuration files used by <em>opkg</em>. " +"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " +"custom repository entries. The configuration in the other files may be " +"changed but is usually not preserved by <em>sysupgrade</em>." +msgstr "" +"Žemyn šio teksto yra įvairių konfigūracijų sąrašas, kurios naudoja " +"<em>„opkg“</em>. Naudoti <em>opkg.conf</em> visiems nustatymams ir " +"<em>customfeeds.conf</em> pasirinktinėms atsisiuntimo šaltinių įvestims. " +"Konfigūracijos kitose failuose gali būti pakeistos, bet dažniausiai nėra " +"išlaikomas <em>„sysupgrade“</em>." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +msgid "Cancel" +msgstr "Atšaukti" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 +msgid "Clear" +msgstr "Išvalyti" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 +msgid "Configure opkg…" +msgstr "Konfigūruoti „opkg“…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 +msgid "Dependencies" +msgstr "Priklausomybės" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 +msgid "Description" +msgstr "Aprašymas" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 +msgid "Details for package <em>%h</em>" +msgstr "Išsami informacija paketui <em>„%h“</em>" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +msgid "Dismiss" +msgstr "Nepaisyti" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "Rodyti „LuCI“ vertimo/kalbos paketus" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "Rodyti visus galimus vertimo/kalbos paketus" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" +"Rody pagrindinius vertimų/kalbų paketus ir tik tuos kurie jau įdiegti " +"dabartinei kalbai" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 +msgid "Displaying %d-%d of %d" +msgstr "Rodoma %d-%d of %d" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 +msgid "Download and install package" +msgstr "Atsisiųsti ir įdiegti paketą" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 +msgid "Errors" +msgstr "Klaidos" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 +msgid "Executing package manager" +msgstr "Paleidžiama paketų tvarkyklė" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 +msgid "Filter" +msgstr "Filtruoti/Filtras" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 +msgid "Free space" +msgstr "Laisva vieta/-ovė" + +#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 +msgid "Grant access to opkg management" +msgstr "Suteikti prieigą „opkg management“" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "Slėpti visus vertimo/kalbos paketus" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 +msgid "Install" +msgstr "Įdiegti" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "Įdiegti pritaikytus pasiūlomus vertimo/kalbos paketus" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 +msgid "Installed" +msgstr "Įdiegta" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 +msgid "" +"Installing packages from untrusted sources is a potential security risk! " +"Really attempt to install <em>%h</em>?" +msgstr "" +"Įdiegiant paketus iš nepatikimų šaltinių yra galimas saugos pažeidimas! Ar " +"tikrai norite įdiegti <em>„%h“</em>?" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 +msgid "Install…" +msgstr "Įdiegti…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 +msgid "Loading configuration data…" +msgstr "Kraunama konfigūravimo data…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 +msgid "Loading package information…" +msgstr "Kraunama paketo informacija…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +msgid "MD5" +msgstr "„MD5“" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 +msgid "Manually install package" +msgstr "Savarankiškai įdiegti paketą" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 +msgid "Needs upgrade" +msgstr "Reikia aukštutinio atnaujinimo" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 +msgid "Next page" +msgstr "Kitas puslapis" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 +msgid "No information available" +msgstr "Nėra informacijos" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 +msgid "No packages" +msgstr "Nėra paketų" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +msgid "No packages matching \"<strong>%h</strong>\"." +msgstr "Nėra paketų atitinkančių \"<strong>„%h“</strong>\"." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 +msgid "Not available" +msgstr "Nėra pasiekiama" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 +msgid "Not installed" +msgstr "Nėra įdiegta" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 +msgid "OK" +msgstr "Gerai" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 +msgid "OPKG Configuration" +msgstr "„OPKG“ konfigūracija" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 +msgid "Package name" +msgstr "Paketo pavadinimas" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 +msgid "Package name or URL…" +msgstr "Paketo pavadinimas arba „URL“…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 +msgid "Previous page" +msgstr "Praeitas puslapis" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 +msgid "Really attempt to install <em>%h</em>?" +msgstr "Ar tikrai norite pamėginti įdiegti <em>„%h“</em>?" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 +msgid "Remove" +msgstr "Pašalinti" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 +msgid "Remove package <em>%h</em>" +msgstr "Pašalinti paketą <em>„%h“</em>" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 +msgid "Remove…" +msgstr "Pašalinti…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "" +"Reikalaujama apytiksliai %1024mB dydžio %d paketui/-ams, kad įdiegtumėte." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 +msgid "Require version %h %h, installed %h" +msgstr "Reikalaujama versija %h %h, įdiegta %h" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 +msgid "" +"Required dependency package <em>%h</em> is not available in any repository." +msgstr "" +"Reikalaujamas priklausomybės paketas „<em>%h</em> “ nėra pasiekiamas jokioje " +"atsisiuntimo vietovėje." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 +msgid "Requires update to %h %h" +msgstr "Reikalaujama, kad atnaujintumėte į %h %h" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 +msgid "Reset" +msgstr "Atkurti/Grąžinimas į pradinę padėti/būsena/Atstatymas" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +msgid "SHA256" +msgstr "„SHA256“" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 +msgid "Save" +msgstr "Išsaugoti" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 +msgid "Saving configuration data…" +msgstr "Saugoma konfigūracijos duomenis…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 +msgid "Size" +msgstr "Dydis" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 +msgid "Size (.ipk)" +msgstr "Dydis („*.ipk“)" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 +#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 +msgid "Software" +msgstr "Taikomoji programa" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Pasiūlomi vertimai" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" +"Siūlomi vertimai reikalauja apytiksliai %1024mB papildomos vietos/-ovės." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 +msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." +msgstr "<em>„opkg %h“</em> komanda nepavyko su kodu – <code>%d</code>." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 +msgid "" +"The installed version of package <em>%h</em> is not compatible, require %s " +"while %s is installed." +msgstr "" +"Įdiegta paketo versija „<em>%h</em>“ nėra palaikomas/-a. Reikalingas „%s“, " +"kol „%s“ yra įdiegtas." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 +msgid "The package <em>%h</em> is not available in any configured repository." +msgstr "" +"Paketas „<em>%h</em>“ nėra pasiekiamas jokioje konfigūruotame atsisiuntimo " +"vietovėje." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 +msgid "" +"The repository version of package <em>%h</em> is not compatible, require %s " +"but only %s is available." +msgstr "" +"Atsisiuntimo vietovės paketo versija „<em>%h</em>“ nėra palaikomas/-a, nes " +"reikalinga „%s“, bet tik „%s“ yra pasiekiamas." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 +msgid "Type to filter…" +msgstr "Rašykite, kad filtruotumėte…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 +msgid "Unable to execute <em>opkg %s</em> command: %s" +msgstr "Negalima paleisti <em>„opkg %s“</em> komanda: %s" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 +msgid "Unable to read %s: %s" +msgstr "Negalima nuskaityti %s: %s" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 +msgid "Unable to save %s: %s" +msgstr "Negalima išsaugoti %s: %s" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 +msgid "Update lists…" +msgstr "Atnaujinti sąrašus (Reikalingą)…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 +msgid "Updates" +msgstr "Atnaujinimai" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 +msgid "Upgrade…" +msgstr "Aukštutinis atnaujinimas…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 +msgid "Upload Package…" +msgstr "Įkelti paketą…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 +msgid "Version" +msgstr "Versija" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 +msgid "Version incompatible" +msgstr "Versija nesutampa/nepalaikoma" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 +msgid "Waiting for the <em>opkg %h</em> command to complete…" +msgstr "Laukiama kol <em>„opkg %h“</em> komanda bus atlikta…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "Visi" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "Filtruoti" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "Jokie" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 +msgid "unknown" +msgstr "nežinoma" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB kompresuota/suspausta" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB įdiegtą" diff --git a/applications/luci-app-opkg/po/mr/opkg.po b/applications/luci-app-opkg/po/mr/opkg.po index e2f0ac5b47..f0505ceb51 100644 --- a/applications/luci-app-opkg/po/mr/opkg.po +++ b/applications/luci-app-opkg/po/mr/opkg.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2020-02-12 11:00+0000\n" +"PO-Revision-Date: 2020-10-15 00:31+0000\n" "Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n" "Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/mr/>\n" @@ -12,21 +12,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.3-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "क्रिया" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -34,61 +38,75 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "रद्द करा" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "वर्णन" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" +msgstr "डिसमिस करा" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "फिल्टर करा" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "" @@ -96,245 +114,274 @@ msgstr "" msgid "Grant access to opkg management" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/ms/opkg.po b/applications/luci-app-opkg/po/ms/opkg.po index 7a1672b96c..b20546fa35 100644 --- a/applications/luci-app-opkg/po/ms/opkg.po +++ b/applications/luci-app-opkg/po/ms/opkg.po @@ -14,19 +14,23 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Aksi" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Boleh didapati" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -34,63 +38,77 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Batal" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 #, fuzzy msgid "Configure opkg…" msgstr "Konfigurasi" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Keterangan" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Turun dan memasang pakej" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 #, fuzzy msgid "Errors" msgstr "Kesalahan" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Penapis" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "" @@ -98,254 +116,283 @@ msgstr "" msgid "Grant access to opkg management" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Memasang" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 #, fuzzy msgid "Installed" msgstr "Memasang" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 #, fuzzy msgid "Install…" msgstr "Memasang" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 #, fuzzy msgid "Loading configuration data…" msgstr "Menuju ke halaman konfigurasi yang relevan" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 #, fuzzy msgid "Manually install package" msgstr "Turun dan memasang pakej" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 #, fuzzy msgid "No packages" msgstr "Cari pakej" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 #, fuzzy msgid "Not available" msgstr "(%s sedia)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 #, fuzzy msgid "Not installed" msgstr "Memasang" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "Baik" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 #, fuzzy msgid "OPKG Configuration" msgstr "OPKG-Konfigurasi" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Nama pakej" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 #, fuzzy msgid "Package name or URL…" msgstr "Nama pakej" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Menghapuskan" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Menghapuskan…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Reset" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Simpan" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Saiz" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Perisian" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Versi" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/nb_NO/opkg.po b/applications/luci-app-opkg/po/nb_NO/opkg.po index dafddfde8a..baa2ca562d 100644 --- a/applications/luci-app-opkg/po/nb_NO/opkg.po +++ b/applications/luci-app-opkg/po/nb_NO/opkg.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-05-29 19:41+0000\n" +"PO-Revision-Date: 2023-06-20 14:47+0000\n" "Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" "Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/nb_NO/>\n" @@ -8,21 +8,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.18.1\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Handlinger" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 -msgid "Automatically remove unused dependencies" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 +msgid "Automatically remove unused dependencies" +msgstr "Fjern ubrukte avhengigheter automatisk" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Tilgjengelig" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -30,63 +34,77 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Avbryt" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" -msgstr "" +msgstr "Tøm" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 #, fuzzy msgid "Configure opkg…" msgstr "Sett opp opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" -msgstr "" +msgstr "Avhengigheter" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Beskrivelse" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" -msgstr "" +msgstr "Detaljer for pakken <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" +msgstr "Avslå" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 -msgid "Displaying %d-%d of %d" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 +msgid "Displaying %d-%d of %d" +msgstr "Viser %d-%d av %d" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Last ned og installer pakken" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 #, fuzzy msgid "Errors" msgstr "Feil" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Filter" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Ledig plass" @@ -94,252 +112,281 @@ msgstr "Ledig plass" msgid "Grant access to opkg management" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Installer" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 #, fuzzy msgid "Installed" msgstr "Installer" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "Installer…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "Laster inn oppsettsdata…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" -msgstr "" +msgstr "Last inn pakkeinfo …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 #, fuzzy msgid "Manually install package" msgstr "Last ned og installer pakken" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" -msgstr "" +msgstr "Neste side" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "Ingen informasjon tilgjengelig" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 #, fuzzy msgid "No packages" msgstr "Finn pakke" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 #, fuzzy msgid "Not available" msgstr "Totalt Tilgjengelig" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 #, fuzzy msgid "Not installed" msgstr "Ikke tilkoblet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 #, fuzzy msgid "OPKG Configuration" msgstr "<abbr title=\"Open PacKaGe Management\">OPKG</abbr>-Konfigurasjon" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Pakkenavn" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "Pakkenavn eller nettadresse…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" -msgstr "Avinstaller" +msgstr "Fjern" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Avinstaller…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Nullstill" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Lagre" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "Lagrer oppsettsdata…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Størrelse" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" -msgstr "" +msgstr "Størrelse (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Programvare" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "Oppdater lister…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 #, fuzzy msgid "Updates" msgstr "Oppdater lister" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Versjon" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Venter på at <em>opkg %h</em>-kommando fullføres…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "ukjent" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/pl/opkg.po b/applications/luci-app-opkg/po/pl/opkg.po index 0a87084d36..434c88fb43 100644 --- a/applications/luci-app-opkg/po/pl/opkg.po +++ b/applications/luci-app-opkg/po/pl/opkg.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: LuCI\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-20 09:40+0200\n" -"PO-Revision-Date: 2020-05-02 15:55+0000\n" -"Last-Translator: Marcin Net <marcin.net@linux.pl>\n" +"PO-Revision-Date: 2023-11-07 21:37+0000\n" +"Last-Translator: Matthaiks <kitynska@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/pl/>\n" "Language: pl\n" @@ -13,21 +13,25 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 5.2-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Akcje" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Zezwalaj na zastępowanie plików pakietów powodujących konflikty" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "Automatycznie usuwaj nieużywane zależności" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Dostępne" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -40,61 +44,77 @@ msgstr "" "Konfiguracja w innych plikach może zostać zmieniona, ale zwykle nie jest " "zachowywana przez <em>sysupgrade</em>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Anuluj" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "Wyczyść" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "Skonfiguruj opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "Zależności" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Opis" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "Szczegóły pakietu <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" -msgstr "Odrzuć" +msgstr "Zamknij" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "Wyświetl pakiety tłumaczeń LuCI" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "Wyświetl wszystkie dostępne pakiety tłumaczeń" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" +"Wyświetl tylko podstawowe pakiety tłumaczeń i pakiety tłumaczeń dla już " +"zainstalowanych języków" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "Wyświetlanie %d-%d z %d" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Pobierz i zainstaluj pakiet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "Błędy" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "Uruchamianie menedżera pakietów" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Filtr" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Wolna przestrzeń" @@ -102,20 +122,28 @@ msgstr "Wolna przestrzeń" msgid "Grant access to opkg management" msgstr "Udziel dostępu do zarządzania opkg" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "Ukryj wszystkie pakiety tłumaczeń" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Instaluj" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "Zainstaluj również sugerowane pakiety tłumaczeń" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "Zainstalowane" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -123,154 +151,160 @@ msgstr "" "Instalowanie pakietów z niezaufanych źródeł jest potencjalnym zagrożeniem " "bezpieczeństwa! Czy na pewno chcesz zainstalować pakiet <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "Zainstaluj.…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "Wczytywanie danych konfiguracyjnych…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "Ładowanie informacji o pakietach…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "Ręczna instalacja pakietu" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "Wymaga aktualizacji" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "Następna strona" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "Brak dostępnych informacji" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "Brak pakietów" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "Brak pasujących pakietów \"<strong>%h</strong>\"." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "Niedostępne" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "Nie zainstalowano" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "Konfiguracja OPKG" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "Nadpisz pliki z innych pakietów" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Nazwa pakietu" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" -msgstr "Nazwa pakietu lub URL…" +msgstr "Nazwa pakietu lub adres URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "Poprzednia strona" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "Czy na pewno chcesz zainstalować pakiet <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Usuń" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "Usuń pakiet <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Usuń…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "Wymaga ok. %.1024mB miejsca i instalacji %d pakietów." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "Wymaga ok. %1024mB miejsca i instalacji %d pakietu(-ów)." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "Wymagana wersja %h %h, zainstalowano %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" "Wymagana zależność <em>%h</em> nie jest dostępna w żadnym repozytorium." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "Wymaga aktualizacji do %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Resetuj" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Zapisz" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "Zapisywanie danych konfiguracyjnych…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Rozmiar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "Rozmiar (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Oprogramowanie" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Sugerowane tłumaczenia" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "Sugerowane tłumaczenia wymagają ok. %1024mB dodatkowej przestrzeni." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" "Polecenie <em>opkg %h</em> zakończyło się niepomyślnie z kodem <code>%d</" "code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -278,12 +312,12 @@ msgstr "" "Zainstalowana wersja pakietu <em>%h</em> nie jest zgodna, wymaga %s podczas " "gdy %s jest zainstalowana." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" "Pakiet <em>%h</em> nie jest dostępny w żadnym skonfigurowanym repozytorium." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -291,69 +325,87 @@ msgstr "" "Wersja pakietu w repozytorium <em>%h</em> nie jest zgodna, wymaga %s ale " "tylko %s jest dostępna." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "Wpisz, aby przefiltrować…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "Nie można wykonać polecenia <em>opkg %s</em>: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "Nie można odczytać %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "Nie można zapisać %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "Aktualizuj listy…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "Aktualizacje" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "Zaktualizuj…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "Prześlij pakiet…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Wersja" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "Wersja niekompatybilna" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Oczekiwanie na <em>opkg %h</em> i wykonanie polecenia…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "wszystkie" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "przefiltrowane" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "żadne" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "nieznane" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "~%.1024mB skompresowany" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB skompresowany" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB zainstalowany" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "~%.1024mB zainstalowany" +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Nadpisz pliki z innych pakietów" #~ msgid "" #~ "Require version %h %h,\n" diff --git a/applications/luci-app-opkg/po/pt/opkg.po b/applications/luci-app-opkg/po/pt/opkg.po index ab0396f4f6..f8a4d1206c 100644 --- a/applications/luci-app-opkg/po/pt/opkg.po +++ b/applications/luci-app-opkg/po/pt/opkg.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-26 19:03+0200\n" -"PO-Revision-Date: 2020-05-03 18:57+0000\n" -"Last-Translator: ssantos <ssantos@web.de>\n" +"PO-Revision-Date: 2022-11-30 14:48+0000\n" +"Last-Translator: Gonçalo Pereira <goncalo_pereira@outlook.pt>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/pt/>\n" "Language: pt\n" @@ -12,109 +12,137 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.15-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Ações" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Permitir sobrescrever ficheiros de pacotes em conflito" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" -msgstr "Remover automaticamente dependências não usadas" +msgstr "Remover automaticamente dependências não utilizadas" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Disponível" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " "custom repository entries. The configuration in the other files may be " "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -"Abaixo encontra-se uma lista dos vários ficheiros de configuração usados " -"pelo <em>opkg</em>. Use <em>opkg.conf</em> para definições globais e " +"Em baixo está uma listagem dos vários ficheiros de configuração utilizados " +"pelo <em>opkg</em>. Utilize <em>opkg.conf</em> para definições globais e " "<em>customfeeds.conf</em> para entradas de repositórios personalizados. A " "configuração dos outros ficheiros pode ser alterada mas geralmente não é " "preservada pelo <em>sysupgrade</em>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "Limpar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "Configurar opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "Dependências" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Descrição" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "Detalhes do pacote <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" msgstr "Dispensar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "Mostrar pacotes de tradução do LuCI" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "Mostrar todos os pacotes de tradução disponíveis" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" +"Mostrar apenas pacotes de tradução base e pacotes de tradução apenas para " +"idiomas já instalados" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "A mostrar %d-%d de %d" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Descarregar e instalar o pacote" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "Erros" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "A executar o gestor de pacotes" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Filtro" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Espaço livre" #: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 msgid "Grant access to opkg management" -msgstr "Conceder acesso à gestão de opkg" +msgstr "Conceder acesso à gestão do opkg" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "Ocultar todos os pacotes de tradução" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Instalar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "Também instalar os pacotes de tradução sugeridos" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "Instalado" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -122,154 +150,161 @@ msgstr "" "Instalar pacotes de fontes desconhecidas é uma potencial falha de segurança! " "Pretende mesmo tentar instalar <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "Instalar…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "A carregar os dados de configuração…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "A carregar informações do pacote…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "Instalar pacote manualmente" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "Precisa de ser atualizado" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "Próxima página" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" -msgstr "Sem informação disponível" +msgstr "Não há informação disponível" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" -msgstr "Sem pacotes" +msgstr "Não há pacotes" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." -msgstr "Sem pacotes com correspondência a \"<strong>%h</strong>\"." +msgstr "Não há pacotes com correspondência a \"<strong>%h</strong>\"." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "Não disponível" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "Não instalado" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "Configuração do OPKG" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "Substituir ficheiros de outro(s) pacote(s)" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Nome do pacote" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "Nome do pacote ou URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "Página anterior" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "Tentar mesmo a instalação de <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Remover" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "Remover o pacote <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Remover…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "Requere aprox. %.1024mB de espaço para a instalação de %d pacote(s)." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "Requere aprox. %1024mB de espaço para a instalação de %d pacote(s)." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "Requere a versão %h %h, instalada %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" "O pacote dependência <em>%h</em> requerido não se encontra disponível em " "nenhum repositório." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "Requer a atualização de %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Reset" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Guardar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "A guardar dados de configuração…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Tamanho" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "Tamanho (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Software" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Traduções sugeridas" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" +"As traduções sugeridas requerem aproximadamente %1024mB de espaço adicional." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" "O comando <em>opkg %h</em> falhou com o código de erro <code>%d</code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -277,13 +312,13 @@ msgstr "" "A versão instalada do pacote <em>%h</em> não é compatível, é necessária a %s " "enquanto a %s está instalada." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" "O pacote <em>%h</em> não se encontra disponível em nenhum dos repositórios " "configurados." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -291,66 +326,84 @@ msgstr "" "A versão do pacote <em>%h</em> do repositório não é compatível, é necessária " "a %s mas apenas a %s está disponível." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "Escreva para filtrar…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "Incapaz de executar o comando <em>opkg %s</em>: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "Incapaz de ler %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "Incapaz de gravar %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "Atualizar listas…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "Atualizações" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "Atualizar…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "Enviar pacote…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Versão" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "Versão incompatível" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "A aguardar que o comando <em>opkg %h</em> termine…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "todos" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "filtrado" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "nenhum" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "desconhecido" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "~%.1024mB comprimidos" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB comprimidos" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB instalados" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "~%.1024mB instalados" +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Substituir ficheiros de outro(s) pacote(s)" diff --git a/applications/luci-app-opkg/po/pt_BR/opkg.po b/applications/luci-app-opkg/po/pt_BR/opkg.po index 7ff444199a..fd391b479b 100644 --- a/applications/luci-app-opkg/po/pt_BR/opkg.po +++ b/applications/luci-app-opkg/po/pt_BR/opkg.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2020-05-02 15:55+0000\n" +"PO-Revision-Date: 2022-08-03 00:21+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsopkg/pt_BR/>\n" @@ -12,21 +12,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.14-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Ações" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Permite a substituição dos arquivos dos pacotes com conflito" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "Remover automaticamente dependentes não-utilizados" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Disponível" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -39,61 +43,77 @@ msgstr "" "configurações em outros arquivos podem ser alterados, mas normalmente não " "são preservados por <em>sysupgrade</em>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "Limpar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "Configurar o opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "Dependentes" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Descrição" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "Detalhes para o pacote <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" msgstr "Dispensar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "Exibe os pacotes de tradução do LuCI" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "Exibe todos os pacotes de tradução disponíveis" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" +"Exibe os pacotes base de tradução e os pacotes de tradução apenas para os " +"idiomas já instalados" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "Exibindo %d-%d de %d" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Baixe e instale o pacote" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "Erros" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "Executando o gerenciador de pacotes" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Filtro" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Espaço livre" @@ -101,20 +121,28 @@ msgstr "Espaço livre" msgid "Grant access to opkg management" msgstr "Conceder acesso ao gerenciador opkg" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "Oculte todos os pacotes de tradução" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Instalar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "Instale também os pacotes sugeridos de tradução" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "Instalado" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -122,155 +150,160 @@ msgstr "" "Instalar pacotes de fontes não confiáveis é um risco de segurança em " "potencial! Realmente deseja tentar a instalação de <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "Instalar…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "Carregando dados de configuração…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "Carregando informações de pacotes…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "Instalar o pacote manualmente" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "Precisa de atualização" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "Próxima página" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "Nenhuma informação disponível" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "Sem pacotes" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "Não há pacotes que correspondam a \"<strong>%h</strong>\"." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "Não disponível" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "Não instalado" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "Configuração do OPKG" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "Sobrescrever arquivos de outro(s) pacote(s)" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Nome do Pacote" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "Nome do pacote ou URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "Página anterior" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "Realmente tentar instalar <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Remover" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "Remover o pacote <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Remover…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." msgstr "" -"Requer aprox. %.1024mB de tamanho para que o(s) pacote(s) %d sejam " -"instalados." +"Requer aprox. %1024mB de tamanho para que o(s) pacote(s) %d sejam instalados." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "Requer a versão%h %h, instalada %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" "Requer o pacote <em>%h</em> para suprir uma dependência que não está " "disponível em nenhum repositório." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "Requer uma atualização para %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Limpar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Salvar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "Salvando os dados de configuração…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Tamanho" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "Tamanho (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Software" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Traduções sugeridas" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "As traduções sugeridas precisam de aprox. %1024mB de espaço adicional." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "O comando <em>opkg %h</em> falhou com o código <code>%d</code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -278,13 +311,13 @@ msgstr "" "A versão instalada do pacote <em>%h</em> não é compatível, requer o %s " "enquanto o %s estiver instalado." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" "O pacote <em>%h</em> não está disponível em nenhum repositório previamente " "configurado." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -292,66 +325,84 @@ msgstr "" "A versão do repositório do pacote <em>%h</em> não é compatível, requer o %s " "mas apenas o %s está disponível." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "Digite para filtrar…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "Impossível executar o comando <em>opkg %s</em> : %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "Impossível ler %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "Impossível salvar %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "Atualizar listas…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "Atualizações" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "Atualizar…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "Enviar Pacote…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Versão" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "Versão incompatível" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Aguardando a conclusão do comando <em>opkg %h</em>…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "todos" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "filtrado" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "nenhum" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "desconhecido" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "~%.1024mB comprimido" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB comprimido" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB instalado" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "~%.1024mB instalado" +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Sobrescrever arquivos de outro(s) pacote(s)" diff --git a/applications/luci-app-opkg/po/ro/opkg.po b/applications/luci-app-opkg/po/ro/opkg.po index 84202a1ebc..7ee7fa9bf4 100644 --- a/applications/luci-app-opkg/po/ro/opkg.po +++ b/applications/luci-app-opkg/po/ro/opkg.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-01-14 15:22+0000\n" -"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"PO-Revision-Date: 2023-03-09 19:13+0000\n" +"Last-Translator: Simona Iacob <s@zp1.net>\n" "Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/ro/>\n" "Language: ro\n" @@ -11,341 +11,394 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.16.2-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" -msgstr "Actiune" +msgstr "Acțiuni" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Permiteți suprascrierea fișierelor pachetelor conflictuale" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" -msgstr "" +msgstr "Eliminați automat dependențele neutilizate" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" -msgstr "Disponibil" +msgstr "Disponibile" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " "custom repository entries. The configuration in the other files may be " "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" +"Mai jos este o listă a diferitelor fișiere de configurare utilizate de " +"<em>opkg</em>. Folosiți <em>opkg.conf</em> pentru setările globale și " +"<em>customfeeds.conf</em> pentru intrările personalizate ale depozitelor. " +"Configurația din celelalte fișiere poate fi modificată, dar de obicei nu " +"este păstrată de <em>sysupgrade</em>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Anulare" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" -msgstr "" +msgstr "Curățați" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" -msgstr "Configurare" +msgstr "Configurați opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" -msgstr "" +msgstr "Dependențe" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Descriere" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" -msgstr "" +msgstr "Detalii pentru pachetul <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" +msgstr "Închideți" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "Afișați pachetele de traducere LuCI" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "Afișați toate pachetele de traducere disponibile" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" msgstr "" +"Afișați pachetele de traducere de bază și pachetele de traducere numai " +"pentru limbile deja instalate" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" -msgstr "" +msgstr "Se afișează %d-%d din %d" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" -msgstr "Descarca si instaleaza pachetul" +msgstr "Descărcați și instalați pachetul" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" -msgstr "Eroare" +msgstr "Erori" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" -msgstr "" +msgstr "Executarea managerului de pachete" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Filtru" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" -msgstr "Spatiu liber" +msgstr "Spațiu liber" #: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 msgid "Grant access to opkg management" -msgstr "" +msgstr "Acordați acces la gestionarea opkg" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "Ascundeți toate pachetele de traducere" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" -msgstr "Instalati" +msgstr "Instalați" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "Instalați și pachetele de traducere sugerate" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" -msgstr "Instalati" +msgstr "Instalat" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" +"Instalarea de pachete din surse nesigure reprezintă un potențial risc de " +"securitate! Încercați cu adevărat să instalați <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" -msgstr "Instalati" +msgstr "Instalați…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" -msgstr "Configurarea obisnuita" +msgstr "Se încarcă datele de configurare…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" -msgstr "" +msgstr "Se încarcă informațiile despre pachet…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" -msgstr "Descarca si instaleaza pachetul" +msgstr "Instalați manual pachetul" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" -msgstr "" +msgstr "Necesită actualizare" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" -msgstr "" +msgstr "Pagina următoare" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" -msgstr "Nici o informatie disponibila" +msgstr "Nu există informații disponibile" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" -msgstr "Gaseste pachet" +msgstr "Fără pachete" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." -msgstr "" +msgstr "Nu există pachete care să corespundă cu \"<strong>%h</strong>\"." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" -msgstr "Total disponibil" +msgstr "Nu este disponibil" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" -msgstr "Nu este conectat" +msgstr "Nu este instalat" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" -msgstr "Configuratia-OPKG" +msgstr "Configurația OPKG" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Numele pachetului" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" -msgstr "Numele pachetului" +msgstr "Numele pachetului sau URL-ul…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" -msgstr "" +msgstr "Pagina anterioară" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" -msgstr "" +msgstr "Sigur doriți să instalați <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" -msgstr "Elimina" +msgstr "Eliminați" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" -msgstr "" +msgstr "Eliminați pachetul <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" -msgstr "Elimina…" +msgstr "Eliminați…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "Este necesar aproximativ %1024mB pentru instalarea a %d pachete(e)." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" -msgstr "" +msgstr "Necesită versiunea %h %h, instalată %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" +"Pachetul de dependență necesar <em>%h</em> nu este disponibil în niciun " +"depozit." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" -msgstr "" +msgstr "Necesită actualizare la %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" -msgstr "Reset" +msgstr "Resetați" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" -msgstr "" +msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" -msgstr "Salvează" +msgstr "Salvați" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" -msgstr "Configurarea dispozitivului" +msgstr "Se salvează datele de configurare…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" -msgstr "Marime" +msgstr "Mărime" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" -msgstr "" +msgstr "Dimensiune (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Software" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Traduceri sugerate" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "Traducerile sugerate necesită aproximativ %1024mB spațiu suplimentar." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." -msgstr "" +msgstr "Comanda <em>opkg %h</em> a eșuat cu codul <code>%d</code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" +"Versiunea instalată a pachetului <em>%h</em> nu este compatibilă, necesită " +"%s cât timp este instalat %s." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." -msgstr "" +msgstr "Pachetul <em>%h</em> nu este disponibil în niciun depozit configurat." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" +"Versiunea din depozit a pachetului <em>%h</em> nu este compatibilă, este " +"necesar %s dar numai %s este disponibil." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" -msgstr "" +msgstr "Tastați pentru a filtra…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" -msgstr "" +msgstr "Nu se poate executa comanda <em>opkg %s</em>: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" -msgstr "" +msgstr "Nu se poate citi %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" -msgstr "" +msgstr "Nu se poate salva %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" -msgstr "" +msgstr "Actualizați listele…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" -msgstr "" +msgstr "Actualizări" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" -msgstr "" +msgstr "Faceți upgrade…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" -msgstr "" +msgstr "Încărcați pachetul…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Versiune" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" -msgstr "" +msgstr "Versiune incompatibilă" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +msgstr "Se așteaptă finalizarea comenzii <em>opkg %h</em>…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "toate" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "Filtrate" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "niciunul" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "necunoscut" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB comprimat" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB instalat" + +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Suprascrierea fișierelor din alt(e) pachet(e)" diff --git a/applications/luci-app-opkg/po/ru/opkg.po b/applications/luci-app-opkg/po/ru/opkg.po index 3fa9826f11..2e8ec81743 100644 --- a/applications/luci-app-opkg/po/ru/opkg.po +++ b/applications/luci-app-opkg/po/ru/opkg.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: LuCI: base\n" "POT-Creation-Date: 2010-05-09 01:01+0300\n" -"PO-Revision-Date: 2020-07-02 23:41+0000\n" -"Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n" +"PO-Revision-Date: 2022-09-25 14:22+0000\n" +"Last-Translator: Alexey <agarkov.alexey.viktorovich@gmail.com>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/ru/>\n" "Language: ru\n" @@ -12,23 +12,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.14.1\n" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Действия" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Разрешить перезапись конфликтующих файлов пакетов" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" -msgstr "Автоматически удалять неиспользуемые зависимости" +msgstr "Удалить неиспользуемые зависимости" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Доступно" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -41,61 +45,77 @@ msgstr "" "Конфигурация в других файлах может производится, но такие настройки могут не " "сохраняться утилитой <em>sysupgrade</em>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Отмена" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "Очистить" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" -msgstr "Настройки менеджера пакетов…" +msgstr "Настройки" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "Зависимости" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Описание" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "Подробная информация о пакете <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" msgstr "Закрыть" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "Отображение пакетов перевода LuCI" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "Показывать все доступные переводы пакетов" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" +"Показывать перевод только базовых пакетов и уже установленных языковых " +"пакетов" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "Показано %d-%d из %d" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Загрузить и установить пакет" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "Ошибки" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" -msgstr "Запуск менеджера пакетов" +msgstr "Выполнение..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Фильтр" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Свободное место" @@ -103,20 +123,28 @@ msgstr "Свободное место" msgid "Grant access to opkg management" msgstr "Предоставить доступ к управлению opkg" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "Скрывать все пакеты переводов" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Установить" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "Также установить рекомендуемые пакеты перевода" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "Установлено" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -124,154 +152,160 @@ msgstr "" "Установка пакетов из недоверенных источников может привести к угрозе " "безопасности! Вы действительно хотите установить <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "Установить…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "Загрузка данных конфигурации…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "Загрузка информации о пакете…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "Ручная установка пакета" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "Требуется обновление" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "Следующая страница" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "Нет доступной информации" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "Нет пакетов" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "Нет пакетов соответствующих запросу «<strong>%h</strong>»." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "Не доступно" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "Не установлено" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "Настройка OPKG" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "Переписать файлы для других пакетов" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Имя пакета" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "Имя пакета или URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "Предыдущая страница" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "Вы действительно хотите установить <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Удалить" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "Удалить пакет <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Удалить…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." msgstr "" -"Требуется примерно %.1024mБ свободного пространства для установки %d пакетов." +"Требуется примерно %1024mБ свободного пространства для установки %d пакетов." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "Требуемая версия %h %h, установлена %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" "Требуемый в качестве зависимости пакет <em>%h</em> не доступен ни в одном из " "сконфигурированных репозиториев." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "Требуется обновить до %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" -msgstr "Сбросить" +msgstr "Очистить" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Сохранить" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "Сохранение данных конфигурации…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Размер" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "Размер (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" -msgstr "Программное обеспечение" +msgstr "Менеджер пакетов" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Рекомендуемые переводы" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "Рекомендуемые переводы требуют примерно %1024мБ дополнительного места." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "Команда <em>opkg %h</em> завершилась с кодом ошибки <code>%d</code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -279,12 +313,12 @@ msgstr "" "Установленная версия пакета <em>%h</em> не совместима. Требуется версия %s, " "а установлена %s." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" "Пакет <em>%h</em> не доступен ни в одном из сконфигурированных репозиториев." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -292,69 +326,87 @@ msgstr "" "Версия пакета <em>%h</em>, доступная в репозитории, несовместима. Требуется " "%s, но доступна только %s." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" -msgstr "Введите для фильтрации…" +msgstr "Введите для фильтрации" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "Не удалось выполнить команду <em>opkg %s</em>: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "Не удалось прочитать %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "Не удалось сохранить %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" -msgstr "Обновить списки…" +msgstr "Обновить списки" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "Обновления" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "Обновление…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" -msgstr "Загрузить пакет…" +msgstr "Загрузить пакет" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Версия" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "Версия несовместима" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" -msgstr "Ожидание завершения выполнения команды <em>opkg %h</em>…" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +msgstr "Выполнение команды <em>opkg %h</em>…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "все" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "отфильтровать" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "нет" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "неизвестный" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "~%.1024mБ сжато" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mБ сжато" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mБ установлено" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "~%.1024mБ установлено" +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Переписать файлы для других пакетов" #~ msgid "" #~ "Require version %h %h,\n" diff --git a/applications/luci-app-opkg/po/sk/opkg.po b/applications/luci-app-opkg/po/sk/opkg.po index 8f41591e70..b0e5855495 100644 --- a/applications/luci-app-opkg/po/sk/opkg.po +++ b/applications/luci-app-opkg/po/sk/opkg.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-04-04 17:34+0000\n" -"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n" +"PO-Revision-Date: 2023-07-10 15:50+0000\n" +"Last-Translator: MaycoH <hudec.marian@hotmail.com>\n" "Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/sk/>\n" "Language: sk\n" @@ -10,21 +10,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 5.0-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Akcie" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Povoliť prepísanie konfliktných súborov balíkov" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "Automatické odstránenie nepoužitých závislostí" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Dostupné" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -36,82 +40,111 @@ msgstr "" "vlastné položky úložiska <em>customfeeds.conf</em>. Konfigurácia v ostatných " "súboroch sa môže zmeniť, ale zvyčajne ju <em>sysupgrade</em> nezachová." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Zrušiť" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" -msgstr "Vyčistiť" +msgstr "Vymazať" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "Konfigurovať opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "Závislosti" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Popis" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "Podrobnosti balíka <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" -msgstr "Zamietnuť" +msgstr "Zahodiť" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +#, fuzzy +msgid "Display LuCI translation packages" +msgstr "Zobraziť balíky prekladov LuCI" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +#, fuzzy +msgid "Display all available translation packages" +msgstr "Zobraziť všetky dostupné balíky prekladov" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +#, fuzzy +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" +"Zobraziť základné balíky prekladov a balíky prekladov len pre už " +"nainštalované jazyky" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "Zobrazených %d-%d z %d" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" -msgstr "Stiahnuť a nainštalovať balíček" +msgstr "Prevziať a nainštalovať balík" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "Chyby" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" -msgstr "Výkonný správca balíkov" +msgstr "Spúšťanie správcu balíkov" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Filter" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Voľné miesto" #: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 msgid "Grant access to opkg management" -msgstr "" +msgstr "Poskytnite prístup k správe opkg" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +#, fuzzy +msgid "Hide all translation packages" +msgstr "Skryť všetky balíky prekladov" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Inštalovať" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +#, fuzzy +msgid "Install suggested translation packages as well" +msgstr "Inštalovať aj navrhované balíky prekladov" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" -msgstr "Nainštalovaný" +msgstr "Nainštalované" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -119,154 +152,160 @@ msgstr "" "Inštalácia balíkov z nedôveryhodných zdrojov predstavuje potenciálne " "bezpečnostné riziko! Naozaj sa snažíte nainštalovať <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "Inštalovať…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "Načítavajú sa konfiguračné údaje …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "Načítavajú sa informácie o balíku …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "Manuálna inštalácia balíka" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "Vyžaduje aktualizáciu" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "Ďalšia strana" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "Nie sú dostupné žiadne informácie" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "Žiadne balíčky" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "\"<strong>%h</strong>\" nezodpovedajú žiadne balíky." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "Nie je k dispozícií" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "Nie je nainštalovaný" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "Konfigurácia OPKG" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "Prepísať súbory z iného balíka(kov)" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Názov balíka" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "Názov balíka alebo URL adresa…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "Predošlá strana" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "Naozaj sa snažíte nainštalovať <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Odstrániť" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "Odstrániť balík <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Odstrániť…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." msgstr "" -"Vyžaduje sa veľkosť cca %.1024mB pre inštaláciu balíčka(kov) %d package(s)." +"Vyžaduje sa veľkosť cca %1024mB pre inštaláciu balíčka(kov) %d package(s)." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "Požaduje sa verzia %h %h, nainštalovaná je %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" "Požadovaný balík závislostí <em>%h</em> nie je k dispozícii v žiadnom " "úložisku." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "Požaduje sa aktualizácia na %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Obnoviť" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Uložiť" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "Ukladajú sa konfiguračné údaje …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Veľkosť" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "Veľkosť (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Softvér" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Navrhované preklady" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "Navrhované preklady vyžadujú približne %1024mB ďalšieho priestoru." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "Príkaz <em>opkg %h</em> zlyhal s kódom <code>%d</code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -274,11 +313,11 @@ msgstr "" "Nainštalovaná verzia balíka <em>%h</em> nie je kompatibilná, požaduje sa %s, " "zatiaľ čo nainštalovaná je %s." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "Balík <em>%h</em> nie je dostupný v žiadnom nakonfigurovanom úložisku." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -286,66 +325,84 @@ msgstr "" "Verzia archívu balíka <em>%h</em> nie je kompatibilná, požaduje sa %s, ale " "je k dispozícii je iba %s." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "Reťazec na filtrovanie…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "Nedá sa vykonať príkaz <em>opkg %s</em>: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "Nedá sa prečítať %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "Nedá sa uložiť %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "Aktualizovať zoznamy…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "Aktualizácie" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "Inovovať…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" -msgstr "Nahrať balík…" +msgstr "Odovzdať balík…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Verzia" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "Verzia je nekompatibilná" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Čaká sa na dokončenie príkazu <em>opkg %h</em>…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "všetko" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "filtrované" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "žiadne" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "neznámy" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "~%.1024mB komprimované" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB komprimované" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB nainštalovaných" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "~%.1024mB nainštalovaných" +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Prepísať súbory z iného balíka(kov)" diff --git a/applications/luci-app-opkg/po/sv/opkg.po b/applications/luci-app-opkg/po/sv/opkg.po index 58d4c0aaf9..0a35befd3f 100644 --- a/applications/luci-app-opkg/po/sv/opkg.po +++ b/applications/luci-app-opkg/po/sv/opkg.po @@ -1,9 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-02-13 10:27+0000\n" -"Last-Translator: Kristoffer Grundström <kristoffer.grundstrom1983@gmail.com>" -"\n" +"PO-Revision-Date: 2021-09-22 00:01+0000\n" +"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/sv/>\n" "Language: sv\n" @@ -11,107 +10,134 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Åtgärder" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "Ta automatiskt bort oanvända beroenden" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Tillgänglig" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " "custom repository entries. The configuration in the other files may be " "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +"Nedan är en lista på olika konfigurationsfiler som används av <em>opkg</em>. " +"Använd <em>opkg.conf</em> för globala inställningar och <em>customfeeds." +"conf</em> för anpassade filförrådsposter. Konfigurationen i de andra filerna " +"kan vara ändrade, men är oftast inte reserverad av <em>sysupgrade</em>." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Avbryt" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "Rensa" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" -msgstr "Konfiguration" +msgstr "Ställ in opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" -msgstr "" +msgstr "Beroenden" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Beskrivning" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "Detaljer för paketet <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" msgstr "Avfärda" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 -msgid "Displaying %d-%d of %d" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 +msgid "Displaying %d-%d of %d" +msgstr "Visar %d-%d av %d" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Ladda ner och installera paket" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" -msgstr "Fel" +msgstr "Felen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "Kör pakethanteraren" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Filtrera" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Fritt utrymme" #: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 msgid "Grant access to opkg management" +msgstr "Tillåt åtkomst till hantering av opkg" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Installera" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" -msgstr "Installera" +msgstr "Installerad" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -119,235 +145,255 @@ msgstr "" "Att installera paket från o-pålitliga källor är en potentiell säkerhetsrisk! " "Vill du verkligen försöka installera <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "Installera…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "Laddar konfigurationssidan…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "Laddar paketinformationen…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" -msgstr "Ladda ner och installera paket" +msgstr "Installera paket manuellt" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "Behöver uppgradering" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "Nästa sida" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "Ingen information tillgänglig" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" -msgstr "Hitta paket" +msgstr "Inga paket" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "Inga paket matchar \"<strong>%h</strong>\"." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" -msgstr "Totalt tillgängligt" +msgstr "Ej tillgängligt" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "Inte installerad" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" -msgstr "Konfiguration" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" +msgstr "Konfiguration av OPKG" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Paketnamn" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" -msgstr "Paketnamn" +msgstr "Paketnamn eller URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" -msgstr "" +msgstr "Föregående sida" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" -msgstr "" +msgstr "Vill du verkligen utföra installationen av <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Ta bort" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" -msgstr "" +msgstr "Ta bort paketet <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Ta bort…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "Kräver ungefär %1024mB utrymme för att %d paket(en) ska installeras." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" -msgstr "" +msgstr "Kräv version %h %h, installerade %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." -msgstr "" +msgstr "Paketet som behövs <em>%h</em> är inte tillgängligt i något filförråd." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" -msgstr "" +msgstr "Kräver uppdatering till %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Återställ" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Spara" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" -msgstr "Enhetskonfiguration" +msgstr "Sparar konfigurationsdata…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Storlek" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "Storlek (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Mjukvara" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 -msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 +msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." +msgstr "<em>opkg %h</em>-kommandot misslyckades med koden <code>%d</code>." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" +"Den installerade versionen av paketet <em>%h</em>är inte kompatibel, kräver " +"%s medans %s är installerat." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" +"Paketet <em>%h</em> är inte tillgängligt i något konfigurerat filförråd." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" +"Filförrådets version av paketet <em>%h</em> är inte tillgängligt, kräver %s, " +"men endast %s är tillgänglig." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" -msgstr "" +msgstr "Skriv för att filtrera…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" -msgstr "" +msgstr "Kunde inte köra <em>opkg %</em>-kommandot: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" -msgstr "" +msgstr "Kunde inte läsa %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" -msgstr "" +msgstr "Kunde inte spara %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" -msgstr "Uppdatera listor" +msgstr "Uppdatera listor…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" -msgstr "Uppdatera listor" +msgstr "Uppdateringar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" -msgstr "" +msgstr "Uppgradera…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" -msgstr "" +msgstr "Ladda upp paket…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Version" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" -msgstr "" +msgstr "Versionen passar inte" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" -msgstr "Väntar på att kommandot ska avsluta..." +msgstr "Väntar på att <em>opkg %h</em>-kommandot ska slutföras…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 -msgid "unknown" -msgstr "okänd" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 +msgid "unknown" +msgstr "okänd" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB komprimerat" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB installerat" + +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Skriv över filer från andra paket(en)" diff --git a/applications/luci-app-opkg/po/templates/opkg.pot b/applications/luci-app-opkg/po/templates/opkg.pot index 8e40470354..389def63fc 100644 --- a/applications/luci-app-opkg/po/templates/opkg.pot +++ b/applications/luci-app-opkg/po/templates/opkg.pot @@ -1,19 +1,23 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -21,61 +25,75 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "" @@ -83,245 +101,274 @@ msgstr "" msgid "Grant access to opkg management" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/tr/opkg.po b/applications/luci-app-opkg/po/tr/opkg.po index 7fca484eba..7968bbfa12 100644 --- a/applications/luci-app-opkg/po/tr/opkg.po +++ b/applications/luci-app-opkg/po/tr/opkg.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-01-14 15:22+0000\n" -"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"PO-Revision-Date: 2022-09-25 14:22+0000\n" +"Last-Translator: semih <semiht@gmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/tr/>\n" "Language: tr\n" @@ -11,334 +11,393 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.14.1\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Eylemler" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Çakışan paket dosyalarının üzerine yazılmasına izin ver" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" -msgstr "" +msgstr "Kullanılmayan bağımlılıkları otomatik olarak kaldır" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Kullanılabilir" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " "custom repository entries. The configuration in the other files may be " "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" +"Aşağıda <em>opkg</em> tarafından kullanılan çeşitli yapılandırma " +"dosyalarının bir listesi bulunmaktadır. Genel ayarlar için <em>opkg.conf</" +"em> ve özel depo girişleri için <em>customfeeds.conf</em> kullanın. Diğer " +"dosyalardaki yapılandırmalar değiştirilebilir ancak genellikle " +"<em>sysupgrade</em> tarafından korunmaz." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "İptal" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" -msgstr "" +msgstr "Temizle" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" -msgstr "" +msgstr "opkg'yi yapılandır…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" -msgstr "" +msgstr "Bağımlılıklar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Açıklama" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" -msgstr "" +msgstr "Paket detayları <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" -msgstr "Reddet" +msgstr "Kapat" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 -msgid "Displaying %d-%d of %d" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "LuCI çeviri paketlerini görüntüle" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "Mevcut tüm çeviri paketlerini göster" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" msgstr "" +"Yalnızca önceden kurulmuş diller için temel çeviri paketlerini ve çeviri " +"paketlerini görüntüle" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 +msgid "Displaying %d-%d of %d" +msgstr "Görüntülenen %d-%d toplam %d" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" -msgstr "" +msgstr "Paket indir ve yükle" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" -msgstr "" +msgstr "Hatalar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" -msgstr "" +msgstr "Paket yöneticisi çalıştırılıyor" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" -msgstr "" +msgstr "Filtre" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Boş alan" #: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 msgid "Grant access to opkg management" -msgstr "" +msgstr "Opkg yönetimine erişim izni verin" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "Tüm çeviri paketlerini gizle" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" -msgstr "" +msgstr "Yükle" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "Önerilen çeviri paketlerini de yükle" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" -msgstr "" +msgstr "Yüklenenler" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" +"Güvenilmeyen kaynaklardan paket yüklemek, güvenlik riski oluşturabilir! Bu " +"paketi yüklemeyi gerçekten denemek istiyor musunuz <em>% h </em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" -msgstr "" +msgstr "Yükle…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" -msgstr "Yapılandırmaya dön" +msgstr "Yapılandırma verisi yükleniyor…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" -msgstr "" +msgstr "Paket bilgisi yükleniyor…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" -msgstr "" +msgstr "Elle paket yükle" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" -msgstr "" +msgstr "Yükseltme gerekli" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" -msgstr "" +msgstr "Sonraki sayfa" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" -msgstr "" +msgstr "Bilgi bulunmamaktadır" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" -msgstr "Kullanılabilir Paketler" +msgstr "Paket(ler) yok" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." -msgstr "" +msgstr "Eşleşen paket yok \"<strong>%h</strong>\"." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" -msgstr "Toplam Mevcut" +msgstr "Mevcut değil" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" -msgstr "" +msgstr "Yüklenmedi" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" -msgstr "" +msgstr "Tamam" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" -msgstr "Cihaz Yapılandırması" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" +msgstr "OPKG Yapılandırması" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" -msgstr "" +msgstr "Paket adı" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" -msgstr "" +msgstr "Paket adı veya URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" -msgstr "" +msgstr "Önceki sayfa" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" -msgstr "" +msgstr "Gerçekten yüklemeyi denemek istiyor musunuz <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" -msgstr "" +msgstr "Kaldır" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" -msgstr "" +msgstr "Paketi kaldır <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" -msgstr "" +msgstr "Kaldır…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." msgstr "" +"%d paket(ler)ini yüklemek için yaklaşık %1024mB boyutunda alan gerekli." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" -msgstr "" +msgstr "Gereken sürüm %h %h, yüklü olan %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." -msgstr "" +msgstr "Gerekli olan bağımlılık paketi <em>%h</em> hiçbir depoda mevcut değil." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" -msgstr "" +msgstr "Şu sürüme güncellenmesi gerekiyor %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Sıfırla" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" -msgstr "" +msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Kaydet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" -msgstr "Cihaz Yapılandırması" +msgstr "Yapılandırma verisi kaydediliyor…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Boyut" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "Boyut (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Yazılım" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Önerilen çeviriler" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "Önerilen çeviriler yaklaşık %1024mB ek alan gerektiriyor." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." -msgstr "" +msgstr "<em>opkg %h</em> komutu <code>%d</code> koduyla başarısız oldu." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" +"Yüklü olan <em>%h</em> paketinin sürümü uyumlu değil. Gerekli olan %s iken, " +"%s sürümü yüklü." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." -msgstr "" +msgstr "<em>%h</em> paketi yapılandırılmış depoların hiçbirinde mevcut değil." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" +"<em>%h</em> paketinin depo bulunan sürümü uyumlu değil. Gerekli olan %s iken " +"sadece %s sürümü mevcut." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" -msgstr "" +msgstr "Filtrelemek için yazın…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" -msgstr "" +msgstr "<em>opkg %s</em> komutu çalıştırılamıyor: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" -msgstr "" +msgstr "Okunamıyor %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" -msgstr "" +msgstr "Kaydedilemiyor %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" -msgstr "" +msgstr "Listeyi güncelle…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" -msgstr "" +msgstr "Güncellemeler" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" -msgstr "" +msgstr "Yükselt…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" -msgstr "" +msgstr "Paket Yükle…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" -msgstr "Versiyon" +msgstr "Sürüm" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" -msgstr "" +msgstr "Sürüm uyumsuz" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +msgstr "<em>opkg %h</em> komutunun tamamlanması bekleniyor…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "tüm" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "filtrelenmiş" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "hiçbiri" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "bilinmeyen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB sıkıştırıldı" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB yüklendi" + +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Diğer paket(ler)in dosyalarının üzerine yaz" diff --git a/applications/luci-app-opkg/po/uk/opkg.po b/applications/luci-app-opkg/po/uk/opkg.po index 947860f488..e05b6ab928 100644 --- a/applications/luci-app-opkg/po/uk/opkg.po +++ b/applications/luci-app-opkg/po/uk/opkg.po @@ -1,31 +1,35 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2020-05-02 18:10+0000\n" -"Last-Translator: Yurii Petrashko <yuripet@gmail.com>\n" +"PO-Revision-Date: 2022-12-22 22:51+0000\n" +"Last-Translator: Bohdan <chbgdn@gmail.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/uk/>\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" -"X-Generator: Weblate 4.1-dev\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.15.1-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "Дії" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Дозволити перезапис файлів пакунків, які конфліктують" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "Автоматичне видалення невикористовуваних залежностей" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Доступно" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -38,61 +42,77 @@ msgstr "" "інших файлах може бути змінено, але вона зазвичай не зберігається при " "<em>оновленні системи</em>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "Скасувати" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "Очистити" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "Налаштування opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "Залежності" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Опис" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "Подробиці про пакет <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" msgstr "Закрити" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "Відображати пакети перекладу LuCI" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "Відображати всі доступні пакети перекладу" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" +"Відображати тільки базові пакети перекладів та пакети перекладів для вже " +"встановлених мов" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "Відображається %d-%d із %d" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Завантажити та інсталювати пакети" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "Помилки" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "Виконання менеджера пакетів" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "Фільтр" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "Вільне місце" @@ -100,20 +120,28 @@ msgstr "Вільне місце" msgid "Grant access to opkg management" msgstr "Надати доступ до керування opkg" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "Приховати всі пакети перекладів" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "Інсталювати" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "Встановлювати запропоновані пакети перекладу також" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "Інстальовано" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -121,153 +149,160 @@ msgstr "" "Інсталяція пакетів з ненадійних джерел є потенційною загрозою безпеці! " "Дійсно спробувати інсталювати <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "Інсталювати…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "Завантаження даних конфігурації…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "Завантаження інформації про пакети…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "Інсталяція пакета вручну" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "Потребує оновлення" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "Наступна сторінка" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "Інформація відсутня" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "Немає пакетів" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "Немає пакетів, що відповідають \"<strong>%h</strong>\"." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "Недоступно" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "Не інстальовано" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "Конфігурація OPKG" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "Перезаписати файли з інших пакетів" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" -msgstr "Назва пакета" +msgstr "Назва пакунку" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" -msgstr "Назва пакета чи URL-адреса…" +msgstr "Назва пакунка чи URL-адреса…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "Попередня сторінка" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "Дійсно спробувати інсталювати <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "Видалити" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "Видалити пакет <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Видалити…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "Потрібно приблизно %.1024mB для інсталяції %d пакетів." +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "Потрібно приблизно %1024mB для інсталяції %d пакетів." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "Потрібна версія %h %h, інстальовано %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" "Необхідний за залежністю пакет <em>%h</em> не доступний ні в одному " "репозиторії." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "Потрібно оновити до %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "Скинути" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Зберегти" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "Збереження даних конфігурації…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "Розмір" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "Розмір (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Програмне забезпечення" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Пропоновані переклади" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" +"Запропоновані переклади потребують приблизно %1024мБ додаткового місця." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "Помилка виконання команди <em>opkg %h</em> з кодом <code>%d</code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -275,12 +310,12 @@ msgstr "" "Інстальована версія пакета <em>%h</em> несумісна, потрібно %s, а " "інстальовано %s." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" "Пакет <em>%h</em> не доступний ні в одному сконфігурованому репозиторії." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -288,66 +323,84 @@ msgstr "" "Версія пакету <em>%h</em> у репозиторії несумісна, потрібно %s, але доступна " "лише %s." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "Введіть текст для фільтра…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "Не вдалося виконати команду <em>opkg %s</em>: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "Не вдалося прочитати %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "Не вдалося зберегти %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "Оновити списки…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "Оновлення" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "Оновлення…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "Відвантажити пакет…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Версія" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "Несумісна версія" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Очікуємо завершення виконання команди <em>opkg %h</em> …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "усі" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "фільтрувати" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "ні" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" -msgstr "невідомий" +msgstr "невідомо" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "~%.1024mB стиснуто" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB стиснуто" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB інстальовано" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "~%.1024mB інстальовано" +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "Перезаписати файли з інших пакетів" diff --git a/applications/luci-app-opkg/po/ur/opkg.po b/applications/luci-app-opkg/po/ur/opkg.po new file mode 100644 index 0000000000..a4eb271c0f --- /dev/null +++ b/applications/luci-app-opkg/po/ur/opkg.po @@ -0,0 +1,397 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2022-07-24 14:21+0000\n" +"Last-Translator: Usama Khursheed <Usamakhursheedkhan@gmail.com>\n" +"Language-Team: Urdu <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsopkg/ur/>\n" +"Language: ur\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.14-dev\n" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 +msgid "Actions" +msgstr "اعمال" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 +msgid "Automatically remove unused dependencies" +msgstr "غیر استعمال شدہ انحصار کو خود بخود ہٹا دیں" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 +msgid "Available" +msgstr "موجود" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +msgid "" +"Below is a listing of the various configuration files used by <em>opkg</em>. " +"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " +"custom repository entries. The configuration in the other files may be " +"changed but is usually not preserved by <em>sysupgrade</em>." +msgstr "" +"ذیل میں <em>opkg</em> کے ذریعے استعمال ہونے والی مختلف کنفیگریشن فائلوں کی " +"فہرست ہے۔ عالمی ترتیبات کے لیے <em>opkg.conf</em> اور حسب ضرورت ریپوزٹری " +"اندراجات کے لیے <em>customfeeds.conf</em> استعمال کریں۔ دوسری فائلوں میں " +"کنفیگریشن کو تبدیل کیا جا سکتا ہے لیکن عام طور پر <em>sysupgrade</em> کے " +"ذریعے محفوظ نہیں کیا جاتا ہے۔" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +msgid "Cancel" +msgstr "کینسل" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 +msgid "Clear" +msgstr "کلیر" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 +msgid "Configure opkg…" +msgstr "opkg کو ترتیب دیں…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 +msgid "Dependencies" +msgstr "انحصار" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 +msgid "Description" +msgstr "تفصیل" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 +msgid "Details for package <em>%h</em>" +msgstr "پیکیج <em>%h</em> کی تفصیلات" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +msgid "Dismiss" +msgstr "مسترد کریں" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 +msgid "Displaying %d-%d of %d" +msgstr "%d میں سے %d-%d ڈسپلے ہو رہا ہے" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 +msgid "Download and install package" +msgstr "پیکیج ڈاؤن لوڈ اور انسٹال کریں" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 +msgid "Errors" +msgstr "غلطیاں" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 +msgid "Executing package manager" +msgstr "پیکج مینیجر پر عمل درآمد ہو رہا" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 +msgid "Filter" +msgstr "فلٹر" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 +msgid "Free space" +msgstr "خالی جگہ" + +#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 +msgid "Grant access to opkg management" +msgstr "opkg مینجمنٹ تک رسائی فراہم کریں" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 +msgid "Install" +msgstr "انسٹال کریں" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 +msgid "Installed" +msgstr "نصب خدمات" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 +msgid "" +"Installing packages from untrusted sources is a potential security risk! " +"Really attempt to install <em>%h</em>?" +msgstr "" +"غیر بھروسہ مند ذرائع سے پیکجز انسٹال کرنا ایک ممکنہ سیکورٹی رسک ہے! واقعی " +"انسٹال کرنے کی کوشش کریں <em>%h</em>؟" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 +msgid "Install…" +msgstr "انسٹال کریں…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 +msgid "Loading configuration data…" +msgstr "کنفیگریشن ڈیٹا لوڈ ہو رہا ہے…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 +msgid "Loading package information…" +msgstr "پیکیج کی معلومات لوڈ ہو رہی ہے…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#, fuzzy +msgid "MD5" +msgstr "MD5" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 +msgid "Manually install package" +msgstr "دستی طور پر پیکیج انسٹال کریں" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 +msgid "Needs upgrade" +msgstr "اپ گریڈ کی ضرورت ہے" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 +msgid "Next page" +msgstr "اگلا صفحہ" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 +msgid "No information available" +msgstr "کوئی معلومات دستیاب نہیں" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 +msgid "No packages" +msgstr "کوئی پیکجز نہیں" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +msgid "No packages matching \"<strong>%h</strong>\"." +msgstr "\"<strong>%h</strong>\" سے مماثل کوئی پیکیج نہیں ہے۔" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 +msgid "Not available" +msgstr "دستیاب نہیں ہے" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 +msgid "Not installed" +msgstr "انسٹال نہیں ہے" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 +msgid "OK" +msgstr "ٹھیک ہے" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 +msgid "OPKG Configuration" +msgstr "OPKG کنفیگریشن" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 +msgid "Package name" +msgstr "پیکیج کا نام" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 +msgid "Package name or URL…" +msgstr "پیکیج کا نام یا URL…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 +msgid "Previous page" +msgstr "پچھلا صفحہ" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 +msgid "Really attempt to install <em>%h</em>?" +msgstr "واقعی انسٹال کرنے کی کوشش کریں <em>%h</em>؟" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 +msgid "Remove" +msgstr "ہٹا دیا" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 +msgid "Remove package <em>%h</em>" +msgstr "پیکیج <em>%h</em> کو ہٹا دیں" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 +msgid "Remove…" +msgstr "الگ کرنا…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "لگ بھگ کی ضرورت ہے۔ انسٹال کرنے کے لیے %d پیکجز کے لیے %1024mB سائز۔" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 +msgid "Require version %h %h, installed %h" +msgstr "ورژن %h %h، انسٹال کردہ %h کی ضرورت ہے" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 +msgid "" +"Required dependency package <em>%h</em> is not available in any repository." +msgstr "مطلوبہ انحصار پیکج <em>%h</em> کسی بھی ذخیرہ میں دستیاب نہیں ہے" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 +msgid "Requires update to %h %h" +msgstr "%h %h تک اپ ڈیٹ کی ضرورت ہے" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 +msgid "Reset" +msgstr "دوبارہ ترتیب دیں" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#, fuzzy +msgid "SHA256" +msgstr "SHA256" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 +msgid "Save" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 +msgid "Saving configuration data…" +msgstr "کنفیگریشن ڈیٹا محفوظ ہو رہا ہے…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 +msgid "Size" +msgstr "سائز" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 +msgid "Size (.ipk)" +msgstr "سائز(.ipk)" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 +#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 +msgid "Software" +msgstr "سافٹ ویئر" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 +msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." +msgstr "<em>opkg %h</em> کمانڈ <code>%d</code> کوڈ کے ساتھ ناکام ہوگئی۔" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 +msgid "" +"The installed version of package <em>%h</em> is not compatible, require %s " +"while %s is installed." +msgstr "<em>opkg %h</em> کمانڈ <code>%d</code> کوڈ کے ساتھ ناکام ہوگئی" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 +msgid "The package <em>%h</em> is not available in any configured repository." +msgstr "پیکیج <em>%h</em> کسی بھی ترتیب شدہ ذخیرہ میں دستیاب نہیں ہے" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 +msgid "" +"The repository version of package <em>%h</em> is not compatible, require %s " +"but only %s is available." +msgstr "" +"پیکیج <em>%h</em> کا ذخیرہ ورژن مطابقت نہیں رکھتا، %s کی ضرورت ہے لیکن صرف " +"%s دستیاب ہے۔" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 +msgid "Type to filter…" +msgstr "فلٹر کرنے کے لیے ٹائپ کریں…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 +msgid "Unable to execute <em>opkg %s</em> command: %s" +msgstr "<em>opkg %s</em> کمانڈ پر عمل کرنے سے قاصر: %s" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 +msgid "Unable to read %s: %s" +msgstr "پڑھنے سے قاصر%s: s%" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 +msgid "Unable to save %s: %s" +msgstr "%s پڑھنے سے قاصر: %s" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 +msgid "Update lists…" +msgstr "فہرستوں کو اپ ڈیٹ کریں…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 +msgid "Updates" +msgstr "تازہ ترین" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 +msgid "Upgrade…" +msgstr "اپ گریڈ…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 +msgid "Upload Package…" +msgstr "پیکج اپ لوڈ کریں…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 +msgid "Version" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 +msgid "Version incompatible" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 +msgid "Waiting for the <em>opkg %h</em> command to complete…" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 +msgid "unknown" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "" + +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "دوسرے پیکجوں سے فائلوں کو اوور رائٹ کریں" diff --git a/applications/luci-app-opkg/po/vi/opkg.po b/applications/luci-app-opkg/po/vi/opkg.po index c7dd187b10..e642b97a6d 100644 --- a/applications/luci-app-opkg/po/vi/opkg.po +++ b/applications/luci-app-opkg/po/vi/opkg.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-08-16 06:59+0200\n" -"PO-Revision-Date: 2020-01-14 15:22+0000\n" -"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"PO-Revision-Date: 2023-06-21 08:00+0000\n" +"Last-Translator: Mashiro <michio.haiyaku@gmail.com>\n" "Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsopkg/vi/>\n" "Language: vi\n" @@ -12,340 +12,390 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.18.1\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" -msgstr "Hành động" +msgstr "hành động" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "Cho phép ghi đè các tệp gói xung đột" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" -msgstr "" +msgstr "Tự động gỡ bỏ các gói phụ thuộc không được sử dụng" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "Sẵn có" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " "custom repository entries. The configuration in the other files may be " "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" +"Dưới đây là danh sách các tập tin cấu hình khác nhau được sử dung bởi " +"<em>opkg</em>. Sử dụng <em>opkg.conf</em> cho cài đặt chính và " +"<em>customfeeds.conf</em> cho các mục repository tùy chỉnh. Cấu hình trong " +"các tập tin khác có thể thay đổi nhưng thường không được giữ lại thay đổi " +"bởi <em>sysupgrade</em>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" -msgstr "Hủy bỏ" +msgstr "Hủy lệnh" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" -msgstr "" +msgstr "Xóa" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" -msgstr "Cấu hình" +msgstr "Cấu hình opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" -msgstr "" +msgstr "Các gói phụ thuộc" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "Mô tả" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" -msgstr "" +msgstr "Chi tiết cho gói <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" +msgstr "Bỏ qua" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "Hiển thị các gói dịch LuCI" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "Hiển thị tất cả các gói dịch có sẵn" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" msgstr "" +"Chỉ hiển thị các gói dịch cơ sở và gói dịch cho các ngôn ngữ đã được cài đặt" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" -msgstr "" +msgstr "Hiển thị %d-%d của %d" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "Tải và cài đặt gói" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "Lỗi" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" -msgstr "" +msgstr "Đang thực thi quản lý gói" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" -msgstr "Lọc" +msgstr "Bộ lọc" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" -msgstr "" +msgstr "Dung lượng trống" #: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 msgid "Grant access to opkg management" -msgstr "" +msgstr "Cấp quyền truy cập vào quản lý opkg" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "Ẩn tất cả các gói dịch" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" -msgstr "Cài đặt " +msgstr "Cài đặt" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "Cài đặt cả các gói dịch được đề xuất" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" -msgstr "Cài đặt " +msgstr "Đã cài đặt" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" +"Cài đặt các gói từ các nguồn không được tin tưởng là một rủi ro bảo mật tiềm " +"tàng! Chắc chắn muốn cài đặt <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" -msgstr "Cài đặt " +msgstr "Cài đặt…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" -msgstr "Đi tới trang cấu hình thích hợp" +msgstr "Tải dữ liệu cấu hình…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" -msgstr "" +msgstr "Tải thông tin gói…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" -msgstr "Tải và cài đặt gói" +msgstr "Cài đặt gói thủ công" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" -msgstr "" +msgstr "Cần nâng cấp" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" -msgstr "" +msgstr "Trang kế" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" -msgstr "" +msgstr "Không có thông tin có sẵn" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" -msgstr "Tìm gói" +msgstr "Không có các gói" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." -msgstr "" +msgstr "Không có gói khớp với \"<strong>%h</strong>\"." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" -msgstr "(%s available)" +msgstr "Không có sẵn" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" -msgstr "Cài đặt " +msgstr "Không được càu đặt" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" -msgstr "OK " +msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "Cấu hình OPKG-" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "Tên gói" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" -msgstr "Tên gói" +msgstr "Tên gói hoặc URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" -msgstr "" +msgstr "Trang trước" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" -msgstr "" +msgstr "Thực sự muốn cài <em>%h</em>?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" -msgstr "Loại bỏ" +msgstr "Xóa" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" -msgstr "" +msgstr "Gỡ bỏ gói <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "Loại bỏ…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "Yêu cầu khoảng Kích thước %1024mB cho %d gói cài đặt." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" -msgstr "" +msgstr "Yêu cầu phiên bản %h %h, đã cài %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" +"Yêu cầu gói phụ thuộc <em>%h</em> không có sẵn trong bất kỳ repository nào." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" -msgstr "" +msgstr "Yêu cầu cập nhật cho %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" -msgstr "Reset" +msgstr "Khởi động lại" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" -msgstr "" +msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "Lưu" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" -msgstr "" +msgstr "Đang lưu dữ liệu cấu hình…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" -msgstr "Dung lượng " +msgstr "Dung lượng" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" -msgstr "" +msgstr "Kích cỡ (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "Phần mềm" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "Bản dịch được đề xuất" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "Các bản dịch được đề xuất yêu cầu khoảng. %1024mB dung lượng bổ sung." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." -msgstr "" +msgstr "Câu lệnh <em>opkg %h</em> thất bại với mã lỗi <code>%d</code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" +"Phiên bản được cài đặt của gói <em>%h</em> không tương thích, yêu cầu %s " +"trong khi %s được cài đặt." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" +"Gói <em>%h</em> không có sẵn trong bật kỳ repository đã được cấu hình nào." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" +"Phiên bản trên repository của gói <em>%h</em> không có sẵn, yêu cầu %s nhưng " +"chỉ có %s." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" -msgstr "" +msgstr "Gõ để lọc…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" -msgstr "" +msgstr "Không thể thực thi câu lệnh <em>opkg %s</em>: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" -msgstr "" +msgstr "Không thể đọc %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" -msgstr "" +msgstr "Không thể lưu %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" -msgstr "" +msgstr "Cập nhật dan sách…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" -msgstr "" +msgstr "Các cập nhật" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" -msgstr "" +msgstr "Nâng cấp…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" -msgstr "" +msgstr "Tải lên gói…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "Phiên bản" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" -msgstr "" +msgstr "Phiên bản không tương thích" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" -msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +msgstr "Đợi câu lệnh <em>opkg %h</em> hoàn thành…" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "Tất cả" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "Đã lọc" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "Không" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" -msgstr "" +msgstr "Không xác định" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB được nén" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB đã cài đặt" diff --git a/applications/luci-app-opkg/po/zh_Hans/opkg.po b/applications/luci-app-opkg/po/zh_Hans/opkg.po index 4da5ac8320..44d33a126c 100644 --- a/applications/luci-app-opkg/po/zh_Hans/opkg.po +++ b/applications/luci-app-opkg/po/zh_Hans/opkg.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2020-03-07 12:33+0000\n" -"Last-Translator: xiazhang <xz@xia.plus>\n" +"PO-Revision-Date: 2023-09-10 09:27+0000\n" +"Last-Translator: Eric <hamburger2048@users.noreply.hosted.weblate.org>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsopkg/zh_Hans/>\n" "Language: zh_Hans\n" @@ -14,21 +14,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 5.0.1-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" -msgstr "动作" +msgstr "操作" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "允许覆盖冲突的包文件" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "自动移除未使用的依赖" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" msgstr "可用" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -39,310 +43,356 @@ msgstr "" "置,<em>customfeeds.conf</em> 用于自定义仓库。其他配置文件的变更在<em>系统升" "级</em>时默认不被保留。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "取消" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "清除" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "配置 opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "依赖" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "描述" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" msgstr "软件包 <em>%h</em> 详情" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" -msgstr "取消" +msgstr "关闭" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "显示 LuCI 翻译包" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "显示所有可用的翻译包" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "仅显示基础翻译包和已安装语言的翻译包" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "正在显示 %d-%d,共 %d" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "下载并安装软件包" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "错误" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "正在执行软件包管理器" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" msgstr "过滤器" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "空闲空间" #: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 msgid "Grant access to opkg management" -msgstr "" +msgstr "授予访问 opkg 管理的权限" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "隐藏所有翻译包" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "安装" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "同样安装推荐的翻译包" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "已安装" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "从未信任的源安装软件包有潜在的安全隐患!您确定要安装 <em>%h</em> 吗?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "安装…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" msgstr "载入配置数据…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" msgstr "载入软件包信息…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "手动安装软件包" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "需要升级" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "下一页" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "无可用信息" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "没有软件包" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "没有匹配“<strong>%h</strong>”的软件包。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "不可用" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "未安装" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "确认" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "OPKG 配置" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "覆盖其他软件包中的文件" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "软件包名称" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "软件包名称或 URL…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "上一页" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" -msgstr "真的要安装 <em>%h</em> 吗?" +msgstr "确定要安装 <em>%h</em> 吗?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "移除" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "移除软件包 <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "移除…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "需要大约 %.1024mB 空间来安装 %d 个软件包。" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "需要大约 %1024mB 空间来安装 %d 个软件包。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" -msgstr "要求 %h %h 版本,已安装 %h" +msgstr "需要 %h %h 版本,已安装 %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "依赖的软件包 <em>%h</em> 在所有仓库都未提供。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "需要更新到 %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "复位" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "保存" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "正在保存配置数据…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" msgstr "大小" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "大小(.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "软件包" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "推荐的翻译" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "推荐的翻译需要约 %1024mB 额外空间。" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "<em>opkg %h</em> 命令失败,代码 <code>%d</code>。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." -msgstr "已安装的软件包 <em>%h</em> 版本不兼容,要求 %s 而 %s 已安装。" +msgstr "已安装的软件包 <em>%h</em> 版本不兼容,需要 %s 而 %s 已安装。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "软件包 <em>%h</em> 在所有已配置的仓库中都不存在。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." -msgstr "软件包 <em>%h</em> 在仓库中的版本不兼容,要求 %s 但仅可提供 %s。" +msgstr "软件包 <em>%h</em> 在仓库中的版本不兼容,需要 %s 但仅可提供 %s。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" -msgstr "输入以过滤…" +msgstr "输入以筛选…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "无法执行 <em>opkg %s</em> 命令:%s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "无法读取 %s:%s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "无法保存 %s:%s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "更新列表…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "更新" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "升级…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "上传软件包…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "版本" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "版本不兼容" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "等待命令 <em>opkg %h</em> 执行完成…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "全部" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "已过滤" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "无" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "未知" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "~%.1024mB 已压缩" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB 已压缩" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB 已安装" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "~%.1024mB 已安装" +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "覆盖其他软件包中的文件" #~ msgid "" #~ "Require version %h %h,\n" diff --git a/applications/luci-app-opkg/po/zh_Hant/opkg.po b/applications/luci-app-opkg/po/zh_Hant/opkg.po index c4d7eef3c2..c18a70a8b7 100644 --- a/applications/luci-app-opkg/po/zh_Hant/opkg.po +++ b/applications/luci-app-opkg/po/zh_Hant/opkg.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-06-30 13:41+0000\n" -"Last-Translator: Hulen <shift0106@gmail.com>\n" +"PO-Revision-Date: 2022-08-06 13:14+0000\n" +"Last-Translator: 王攀 <41330784@qq.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsopkg/zh_Hant/>\n" "Language: zh_Hant\n" @@ -10,332 +10,382 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.14-dev\n" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155 msgid "Actions" msgstr "動作" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792 +msgid "Allow overwriting conflicting package files" +msgstr "允許覆蓋衝突的包檔" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953 msgid "Automatically remove unused dependencies" msgstr "自動移除不再使用的依賴項目" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210 msgid "Available" -msgstr "可用" +msgstr "可用的" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " "custom repository entries. The configuration in the other files may be " "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -"以下列出了 <em>opkg</em> 所使用的各配置文件。<em>opkg.conf</em> 用於全域配" -"置,<em>customfeeds.conf</em> 用於自定義儲存庫。其他配置文件的變更在<em>系統" -"升級</em>時預設不保留。" +"下面列出了 <em>opkg</em> 使用的各種組態檔;<em>opkg.conf</em> 用於全域設定," +"<em>customfeeds.conf</em> 則用於自訂儲存庫項目。其他組態檔的變更可能在 <em>系" +"統升級</em> 時不會被保留。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 msgid "Cancel" msgstr "取消" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142 msgid "Clear" msgstr "清除" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159 msgid "Configure opkg…" msgstr "設定 opkg …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744 msgid "Dependencies" msgstr "依賴項目" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228 msgid "Description" msgstr "描述" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755 msgid "Details for package <em>%h</em>" -msgstr "套件包 <em>%h</em> 的詳細資訊" +msgstr "套件 <em>%h</em> 的詳細資訊" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 msgid "Dismiss" -msgstr "取消" +msgstr "關閉" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164 +msgid "Display LuCI translation packages" +msgstr "顯示 LuCI 翻譯包" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181 +msgid "Display all available translation packages" +msgstr "顯示所有可用的翻譯包" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167 +msgid "" +"Display base translation packages and translation packages for already " +"installed languages only" +msgstr "僅顯示已安裝語言的基本翻譯包和翻譯包" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354 msgid "Displaying %d-%d of %d" msgstr "正在顯示第 %d 到 %d 筆,共 %d 筆" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147 msgid "Download and install package" msgstr "下載並安裝套件包" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008 msgid "Errors" msgstr "錯誤" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982 msgid "Executing package manager" msgstr "正在執行套件包管理員" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139 msgid "Filter" -msgstr "過濾器" +msgstr "過濾" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134 msgid "Free space" msgstr "剩餘空間" #: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3 msgid "Grant access to opkg management" -msgstr "" +msgstr "授予存取 opkg 管理的權限" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194 +msgid "Hide all translation packages" +msgstr "隱藏所有翻譯包" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066 msgid "Install" msgstr "安裝" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780 +msgid "Install suggested translation packages as well" +msgstr "同時安裝建議的翻譯包" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211 msgid "Installed" msgstr "已安裝" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "從不明來源安裝套件很危險! 確定要安裝 <em>%h</em> ?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288 msgid "Install…" msgstr "安裝…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857 msgid "Loading configuration data…" -msgstr "載入設定資訊…" +msgstr "載入組態資料中…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084 msgid "Loading package information…" -msgstr "正在讀取套件資訊…" +msgstr "載入套件資訊中…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 msgid "MD5" msgstr "MD5" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042 msgid "Manually install package" msgstr "手動安裝套件包" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510 msgid "Needs upgrade" msgstr "需要升級" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237 msgid "Next page" msgstr "下一頁" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368 msgid "No information available" msgstr "無可用資訊" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355 msgid "No packages" msgstr "無套件包" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 msgid "No packages matching \"<strong>%h</strong>\"." msgstr "沒有與 \"<strong>%h</strong>\" 相符的軟體包。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542 msgid "Not available" msgstr "無法使用" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527 msgid "Not installed" msgstr "未安裝" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150 msgid "OK" msgstr "確定" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918 msgid "OPKG Configuration" msgstr "OPKG 設定" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 -msgid "Overwrite files from other package(s)" -msgstr "覆蓋其他套件包的檔案" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225 msgid "Package name" msgstr "套件包名稱" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149 msgid "Package name or URL…" msgstr "套件包名稱或網址…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235 msgid "Previous page" msgstr "上一頁" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837 msgid "Really attempt to install <em>%h</em>?" msgstr "確定安裝 <em>%h</em> ?" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967 msgid "Remove" msgstr "移除" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943 msgid "Remove package <em>%h</em>" msgstr "移除套件 <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276 msgid "Remove…" msgstr "移除…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 -msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "約需 %.1024mB 的空間來安裝 %d 個套件包。" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 +msgid "Require approx. %1024mB size for %d package(s) to install." +msgstr "約需 %1024mB 的空間來安裝 %d 個套件包。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535 msgid "Require version %h %h, installed %h" msgstr "需要版本 %h %h,現已安裝 %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "依賴的套件 <em>%h</em> 不存在於任何的儲存庫。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508 msgid "Requires update to %h %h" msgstr "需要更新至 %h %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373 msgid "Reset" msgstr "重置" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 msgid "SHA256" msgstr "SHA256" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915 msgid "Save" msgstr "儲存" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905 msgid "Saving configuration data…" msgstr "正在儲存設定值…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045 msgid "Size" -msgstr "大小" +msgstr "容量" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227 msgid "Size (.ipk)" msgstr "大小 (.ipk)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3 msgid "Software" msgstr "軟體" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761 +msgid "Suggested translations" +msgstr "建議的翻譯" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740 +msgid "Suggested translations require approx. %1024mB additional space." +msgstr "建議的翻譯需要大約 %1024mB 的額外空間。" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "<em>opkg%h</em> 指令執行失敗,錯誤碼<code>%d</code>。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "已安裝的套件 <em>%h</em> 版本不相容,要求 %s 而 %s 已安裝。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "套件 <em>%h</em> 在所有已設定的儲存庫中不可用。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "套件包 <em>%h</em> 在儲存庫中的版本不相容,要求 %s 但僅有 %s 可用。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141 msgid "Type to filter…" msgstr "輸入以進行過濾…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032 msgid "Unable to execute <em>opkg %s</em> command: %s" msgstr "無法執行 <em>opkg %s</em> 指令:%s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871 msgid "Unable to read %s: %s" msgstr "無法讀取 %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910 msgid "Unable to save %s: %s" msgstr "無法儲存 %s: %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157 msgid "Update lists…" msgstr "更新清單…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212 msgid "Updates" msgstr "可升級" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294 msgid "Upgrade…" msgstr "升級…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158 msgid "Upload Package…" msgstr "上傳套件包…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226 msgid "Version" msgstr "版本" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537 msgid "Version incompatible" msgstr "版本不相容" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "等待 <em>opkg %h</em> 指令完成…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190 +msgctxt "Display translation packages" +msgid "all" +msgstr "全部" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177 +msgctxt "Display translation packages" +msgid "filtered" +msgstr "已過濾" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203 +msgctxt "Display translation packages" +msgid "none" +msgstr "沒有" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135 msgid "unknown" msgstr "未知" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 -msgid "~%.1024mB compressed" -msgstr "~%.1024mB 已壓縮" +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932 +msgid "~%1024mB compressed" +msgstr "~%1024mB 已壓縮" + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930 +msgid "~%1024mB installed" +msgstr "~%1024mB 已安裝" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 -msgid "~%.1024mB installed" -msgstr "~%.1024mB 已安裝" +#~ msgid "Overwrite files from other package(s)" +#~ msgstr "覆蓋其他套件包的檔案" |