luci-app-opkg: various improvements

- Add additional filter option to hide translation packages
 - Add pager to top and bottom of package list (fixes #5671)
 - Add option to automatically install related translations along with
   LuCI packages
 - Add option to automatically install translations for all installed
   LuCI packages when installing a new language base package

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2022-08-01 15:54:09 +02:00
parent 94bfa33452
commit ac47bc9dd7
37 changed files with 5725 additions and 3792 deletions

View file

@ -98,6 +98,8 @@ var packages = {
installed: { providers: {}, pkgs: {} } installed: { providers: {}, pkgs: {} }
}; };
var languages = ['en'];
var currentDisplayMode = 'available', currentDisplayRows = []; var currentDisplayMode = 'available', currentDisplayRows = [];
function parseList(s, dest) function parseList(s, dest)
@ -201,13 +203,24 @@ function display(pattern)
{ {
var src = packages[currentDisplayMode === 'updates' ? 'installed' : currentDisplayMode], var src = packages[currentDisplayMode === 'updates' ? 'installed' : currentDisplayMode],
table = document.querySelector('#packages'), table = document.querySelector('#packages'),
pager = document.querySelector('#pager'); pagers = document.querySelectorAll('.controls > .pager'),
i18n_filter = null;
currentDisplayRows.length = 0; currentDisplayRows.length = 0;
if (typeof(pattern) === 'string' && pattern.length > 0) if (typeof(pattern) === 'string' && pattern.length > 0)
pattern = new RegExp(pattern.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), 'ig'); 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) { for (var name in src.pkgs) {
var pkg = src.pkgs[name], var pkg = src.pkgs[name],
desc = pkg.description || '', desc = pkg.description || '',
@ -226,6 +239,9 @@ function display(pattern)
!name.match(pattern) && !desc.match(pattern)) !name.match(pattern) && !desc.match(pattern))
continue; continue;
if (name.indexOf('luci-i18n-') === 0 && (!(i18n_filter instanceof RegExp) || !name.match(i18n_filter)))
continue;
var btn, ver; var btn, ver;
if (currentDisplayMode === 'updates') { if (currentDisplayMode === 'updates') {
@ -294,8 +310,8 @@ function display(pattern)
currentDisplayRows.push([ currentDisplayRows.push([
name, name,
ver, ver,
pkg.size ? '%.1024mB'.format(pkg.size) pkg.size ? '%1024mB'.format(pkg.size)
: (altsize ? '~%.1024mB'.format(altsize) : '-'), : (altsize ? '~%1024mB'.format(altsize) : '-'),
desc, desc,
btn btn
]); ]);
@ -310,37 +326,44 @@ function display(pattern)
return 0; return 0;
}); });
pager.parentNode.style.display = ''; for (var i = 0; i < pagers.length; i++) {
pager.setAttribute('data-offset', 100); pagers[i].parentNode.style.display = '';
handlePage({ target: pager.querySelector('.prev') }); pagers[i].setAttribute('data-offset', 100);
if (i == 0)
handlePage({ target: pagers[i].querySelector('.prev') });
}
} }
function handlePage(ev) function handlePage(ev)
{ {
var filter = document.querySelector('input[name="filter"]'), var filter = document.querySelector('input[name="filter"]'),
pager = ev.target.parentNode, offset = +ev.target.parentNode.getAttribute('data-offset'),
offset = +pager.getAttribute('data-offset'), next = ev.target.classList.contains('next'),
next = ev.target.classList.contains('next'); pagers = document.querySelectorAll('.controls > .pager');
if ((next && (offset + 100) >= currentDisplayRows.length) || if ((next && (offset + 100) >= currentDisplayRows.length) ||
(!next && (offset < 100))) (!next && (offset < 100)))
return; return;
offset += next ? 100 : -100; offset += next ? 100 : -100;
pager.setAttribute('data-offset', offset);
pager.querySelector('.text').firstChild.data = currentDisplayRows.length 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) ? _('Displaying %d-%d of %d').format(1 + offset, Math.min(offset + 100, currentDisplayRows.length), currentDisplayRows.length)
: _('No packages'); : _('No packages');
if (offset < 100) if (offset < 100)
pager.querySelector('.prev').setAttribute('disabled', 'disabled'); pagers[i].querySelector('.prev').setAttribute('disabled', 'disabled');
else else
pager.querySelector('.prev').removeAttribute('disabled'); pagers[i].querySelector('.prev').removeAttribute('disabled');
if ((offset + 100) >= currentDisplayRows.length) if ((offset + 100) >= currentDisplayRows.length)
pager.querySelector('.next').setAttribute('disabled', 'disabled'); pagers[i].querySelector('.next').setAttribute('disabled', 'disabled');
else else
pager.querySelector('.next').removeAttribute('disabled'); pagers[i].querySelector('.next').removeAttribute('disabled');
}
var placeholder = _('No information available'); var placeholder = _('No information available');
@ -376,6 +399,11 @@ function handleMode(ev)
ev.preventDefault(); ev.preventDefault();
} }
function handleI18nFilter(ev)
{
display(document.querySelector('input[name="filter"]').value);
}
function orderOf(c) function orderOf(c)
{ {
if (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'), var li = E('li'),
vop = dep.version ? dep.version[0] : null, vop = dep.version ? dep.version[0] : null,
@ -533,9 +561,9 @@ function renderDependencyItem(dep, info)
var text = pkg.name; var text = pkg.name;
if (pkg.installsize) if (pkg.installsize)
text += ' (%.1024mB)'.format(pkg.installsize); text += ' (%1024mB)'.format(pkg.installsize);
else if (pkg.size) else if (pkg.size)
text += ' (~%.1024mB)'.format(pkg.size); text += ' (~%1024mB)'.format(pkg.size);
li.appendChild(E('span', { 'data-tooltip': pkg.description }, li.appendChild(E('span', { 'data-tooltip': pkg.description },
[ text, ' ', pkgStatus(pkg, vop, ver, info) ])); [ text, ' ', pkgStatus(pkg, vop, ver, info) ]));
@ -551,14 +579,16 @@ function renderDependencyItem(dep, info)
[ dep.name, ' ', [ dep.name, ' ',
pkgStatus({ name: dep.name, missing: true }, vop, ver, info) ])); pkgStatus({ name: dep.name, missing: true }, vop, ver, info) ]));
if (!flat) {
var subdeps = renderDependencies(depends, info); var subdeps = renderDependencies(depends, info);
if (subdeps) if (subdeps)
li.appendChild(subdeps); li.appendChild(subdeps);
}
return li; return li;
} }
function renderDependencies(depends, info) function renderDependencies(depends, info, flat)
{ {
var deps = depends || [], var deps = depends || [],
items = []; items = [];
@ -571,7 +601,7 @@ function renderDependencies(depends, info)
if (deps[i] === 'libc') if (deps[i] === 'libc')
continue; continue;
if (deps[i].match(/^(.+)\s+\((<=|>=|<<|>>|<|>|=)(.+)\)$/)) { if (deps[i].match(/^(.+)\s+\((<=|<|>|>=|=|<<|>>)(.+)\)$/)) {
dep = RegExp.$1.trim(); dep = RegExp.$1.trim();
vop = RegExp.$2.trim(); vop = RegExp.$2.trim();
ver = RegExp.$3.trim(); ver = RegExp.$3.trim();
@ -600,7 +630,7 @@ function renderDependencies(depends, info)
version: [vop, ver] version: [vop, ver]
}; };
items.push(renderDependencyItem(info.seen[dep], info)); items.push(renderDependencyItem(info.seen[dep], info, flat));
} }
if (items.length) if (items.length)
@ -636,9 +666,9 @@ function handleInstall(ev)
size; size;
if (pkg.installsize) if (pkg.installsize)
size = _('~%.1024mB installed').format(pkg.installsize); size = _('~%1024mB installed').format(pkg.installsize);
else if (pkg.size) else if (pkg.size)
size = _('~%.1024mB compressed').format(pkg.size); size = _('~%1024mB compressed').format(pkg.size);
else else
size = _('unknown'); size = _('unknown');
@ -653,7 +683,8 @@ function handleInstall(ev)
} }
var totalsize = pkg.installsize || pkg.size || 0, var totalsize = pkg.installsize || pkg.size || 0,
totalpkgs = 1; totalpkgs = 1,
suggestsize = 0;
if (depcache.install && depcache.install.length) if (depcache.install && depcache.install.length)
depcache.install.forEach(function(ipkg) { depcache.install.forEach(function(ipkg) {
@ -661,9 +692,53 @@ function handleInstall(ev)
totalpkgs++; totalpkgs++;
}); });
inst = E('p', {}, var luci_basename = pkg.name.match(/^luci-([^-]+)-(.+)$/),
_('Require approx. %.1024mB size for %d package(s) to install.') i18n_packages = [],
.format(totalsize, totalpkgs)); 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) { if (deps) {
tree = E('li', '<strong>%s:</strong>'.format(_('Dependencies'))); 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(_('Version'), pkg.version)),
E('li', '<strong>%s:</strong> %h'.format(_('Size'), size)), E('li', '<strong>%s:</strong> %h'.format(_('Size'), size)),
tree || '', tree || '',
i18n_packages.length ? E('li', [
E('strong', [_('Suggested translations'), ':']),
i18n_tree
]) : ''
]), ]),
desc || '', desc || '',
errs || inst || '', errs || inst || '',
E('div', { 'class': 'right' }, [ E('div', [
E('label', { 'class': 'cbi-checkbox', 'style': 'float:left' }, [ E('hr'),
E('input', { 'id': 'overwrite-cb', 'type': 'checkbox', 'name': 'overwrite', 'disabled': isReadonlyView }), ' ', 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' }), ' ', E('label', { 'for': 'overwrite-cb' }), ' ',
_('Overwrite files from other package(s)') _('Allow overwriting conflicting package files')
])
])
]), ]),
E('div', { 'class': 'right' }, [
E('div', { E('div', {
'class': 'btn', 'class': 'btn',
'click': ui.hideModal 'click': ui.hideModal
@ -824,9 +927,9 @@ function handleRemove(ev)
size, desc; size, desc;
if (avail.installsize) if (avail.installsize)
size = _('~%.1024mB installed').format(avail.installsize); size = _('~%1024mB installed').format(avail.installsize);
else if (avail.size) else if (avail.size)
size = _('~%.1024mB compressed').format(avail.size); size = _('~%1024mB compressed').format(avail.size);
else else
size = _('unknown'); size = _('unknown');
@ -873,7 +976,8 @@ function handleOpkg(ev)
var cmd = ev.target.getAttribute('data-command'), var cmd = ev.target.getAttribute('data-command'),
pkg = ev.target.getAttribute('data-package'), pkg = ev.target.getAttribute('data-package'),
rem = document.querySelector('input[name="autoremove"]'), 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'), [ var dlg = ui.showModal(_('Executing package manager'), [
E('p', { 'class': 'spinning' }, E('p', { 'class': 'spinning' },
@ -888,6 +992,9 @@ function handleOpkg(ev)
if (owr && owr.checked) if (owr && owr.checked)
argv.push('--force-overwrite'); argv.push('--force-overwrite');
if (i18n && i18n.checked)
argv.push.apply(argv, i18n.getAttribute('data-packages').split(' '));
if (pkg != null) if (pkg != null)
argv.push(pkg); argv.push(pkg);
@ -985,11 +1092,15 @@ function updateLists(data)
.sort(function(a, b) { return a.mount > b.mount })[0] || { size: 0, free: 0 }; .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.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[1], packages.available);
parseList(data[2], packages.installed); 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); display(document.querySelector('input[name="filter"]').value);
}); });
} }
@ -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-action', 'click': handleUpload, 'disabled': isReadonlyView }, [ _('Upload Package…') ]), ' ',
E('button', { 'class': 'btn cbi-button-neutral', 'click': handleConfig }, [ _('Configure opkg…') ]) 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,7 +1213,7 @@ return view.extend({
]), ]),
E('div', { 'class': 'controls', 'style': 'display:none' }, [ 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('button', { 'class': 'btn cbi-button-neutral prev', 'aria-label': _('Previous page'), 'click': handlePage }, [ '«' ]),
E('div', { 'class': 'text' }, [ 'dummy' ]), E('div', { 'class': 'text' }, [ 'dummy' ]),
E('button', { 'class': 'btn cbi-button-neutral next', 'aria-label': _('Next page'), 'click': handlePage }, [ '»' ]) E('button', { 'class': 'btn cbi-button-neutral next', 'aria-label': _('Next page'), 'click': handlePage }, [ '»' ])
@ -1072,6 +1228,14 @@ return view.extend({
E('th', { 'class': 'th col-10 left' }, [ _('Description') ]), E('th', { 'class': 'th col-10 left' }, [ _('Description') ]),
E('th', { 'class': 'th right cbi-section-actions' }, [ '\u00a0' ]) 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 }, [ '»' ])
])
]) ])
]); ]);

View file

@ -11,19 +11,23 @@ msgstr ""
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 4.5.1-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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -35,61 +39,75 @@ msgstr ""
"لإدخالات المستودع المخصصة. قد يتم تغيير التهيئة في الملفات الأخرى ولكن عادةً " "لإدخالات المستودع المخصصة. قد يتم تغيير التهيئة في الملفات الأخرى ولكن عادةً "
"لا يتم الاحتفاظ بها بواسطة <em> sysupgrade </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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" 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" msgid "Dismiss"
msgstr "إلغاء" 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" 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" msgid "Download and install package"
msgstr "قم بتنزيل الحزمة وتثبيتها" 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" 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" 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" 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" msgid "Free space"
msgstr "مساحة فارغة" msgstr "مساحة فارغة"
@ -97,20 +115,28 @@ msgstr "مساحة فارغة"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "منح حقوق الدخول لإدارة opkg" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "تثبيت" msgstr "تثبيت"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -118,228 +144,252 @@ msgstr ""
"يعد تثبيت الحزم من مصادر غير موثوق بها مخاطرة أمنية محتملة! هل تحاول حقًا " "يعد تثبيت الحزم من مصادر غير موثوق بها مخاطرة أمنية محتملة! هل تحاول حقًا "
"تثبيت <em>%h</em>?" "تثبيت <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…" 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…" 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…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" 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" 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" 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" 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" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "لا توجد حزم تطابق \"<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" 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" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "تكوين OPKG" msgstr "تكوين OPKG"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr "الكتابة فوق الملفات من حزم أخرى"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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…" 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" 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>?" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "قم بإزالة الحزمة <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…" msgid "Remove…"
msgstr "يزيل…" msgstr "يزيل…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "تتطلب تقريبا. ٪ .1024 ميغا بايت حجم لتثبيت %d حزمة (حزم)." 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "حزمة التبعية المطلوبة <em>%h </em> غير متوفرة في أي مستودع." 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" msgid "Requires update to %h %h"
msgstr "يتطلب التحديث إلى %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" 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" msgid "SHA256"
msgstr "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" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "الحجم (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
msgstr "" msgstr ""
"الإصدار المثبت من الحزمة <em>% h </em> غير متوافق ، يتطلب٪ s أثناء تثبيت %s." "الإصدار المثبت من الحزمة <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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "الحزمة <em>%h </em> ليست متاحة في أي مستودع تم تكوينه." 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
msgstr "" msgstr ""
"إصدار المستودع للحزمة <em>%h </em> غير متوافق ، يتطلب %s ولكن يتوفر%s فقط." "إصدار المستودع للحزمة <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…" 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" 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" 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" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "مضغوط ~٪ .1024 ميغا بايت" msgstr "مضغوط ~٪ .1024 ميغا بايت"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "تم تثبيت ~٪ .1024 ميغا بايت" msgstr "تم تثبيت ~٪ .1024 ميغا بايت"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "الكتابة فوق الملفات من حزم أخرى"

View file

@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.8.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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -38,61 +42,75 @@ msgstr ""
"conf</em> за ваши записи на хранилища. Конфигурацията в други файлове може " "conf</em> за ваши записи на хранилища. Конфигурацията в други файлове може "
"да се промени, но обикновено не се запазва при <em>sysupgrade</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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" 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" msgid "Dismiss"
msgstr "Затвори" 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" msgid "Displaying %d-%d of %d"
msgstr "Показване %d-%d of %d" msgstr "Показване %d-%d of %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" msgid "Download and install package"
msgstr "Свали и инсталирай пакет" 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" 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" 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" 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" msgid "Free space"
msgstr "Свободно място" msgstr "Свободно място"
@ -100,20 +118,28 @@ msgstr "Свободно място"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Разрешаване достъп до opkg менажиране" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Инсталирай" msgstr "Инсталирай"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -121,151 +147,157 @@ msgstr ""
"Инсталиране на пакети от недоверени източници е потенциален риск за " "Инсталиране на пакети от недоверени източници е потенциален риск за "
"сигурността! Наистина ли да се опитам да инсталирам <em>%h</em>?" "сигурността! Наистина ли да се опитам да инсталирам <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…" 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…" 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…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" 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" 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" 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" 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" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Няма съвпадение за \"<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" 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" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "OPKG Конфигурация" msgstr "OPKG Конфигурация"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr "Заместване на файлове от други пакет(и)"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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…" 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" 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>?" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "Премахни пакет <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…" msgid "Remove…"
msgstr "Премахване…" msgstr "Премахване…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "Нужни са прибл. %.1024mB място за инсталиране на %d пакет(а)." 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "Необходим пакет <em>%h</em> не е наличен в никое хранилище." 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" msgid "Requires update to %h %h"
msgstr "Изисква се ъпдейт към %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" 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" msgid "SHA256"
msgstr "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" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "Размер (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -273,11 +305,11 @@ msgstr ""
"Инсталираната версия на пакета <em>%h</em> не е съвместима, изисква се %s " "Инсталираната версия на пакета <em>%h</em> не е съвместима, изисква се %s "
"докато %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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "Пакетът <em>%h</em> не е наличен в нито едно от хранилищата." 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -285,66 +317,84 @@ msgstr ""
"Версията на пакета в хранилището <em>%h</em> не е свъместима, изисква се %s " "Версията на пакета в хранилището <em>%h</em> не е свъместима, изисква се %s "
"но само %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…" 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" 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" 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" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB архивирани" 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:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB инсталирани" msgstr "~%1024mB инсталирани"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Заместване на файлове от други пакет(и)"

View file

@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "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>." "changed but is usually not preserved by <em>sysupgrade</em>."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" msgid "Details for package <em>%h</em>"
msgstr "" 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" msgid "Dismiss"
msgstr "বাতিল" 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" msgid "Displaying %d-%d of %d"
msgstr "" 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" msgid "Download and install package"
msgstr "" 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" 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" 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" 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" msgid "Free space"
msgstr "" msgstr ""
@ -96,245 +114,274 @@ msgstr ""
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
msgstr "" 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…" 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…" 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…" 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" msgid "MD5"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" 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" 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" 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" 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" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "" 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" 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" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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…" msgid "Package name or URL…"
msgstr "" 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" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "" 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…" msgid "Remove…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" 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" msgid "Requires update to %h %h"
msgstr "" 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" 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" msgid "SHA256"
msgstr "" 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" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "" 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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
msgstr "" 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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
msgstr "" 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…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "" 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" msgid "Unable to read %s: %s"
msgstr "" 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" msgid "Unable to save %s: %s"
msgstr "" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "" msgstr ""

View file

@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-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" msgid "Actions"
msgstr "Accions" 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" 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" msgid "Available"
msgstr "Disponible" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "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>." "changed but is usually not preserved by <em>sysupgrade</em>."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Cancel•lar" 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" 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
#, fuzzy #, fuzzy
msgid "Configure opkg…" msgid "Configure opkg…"
msgstr "Configuració" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Descripció" 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>" msgid "Details for package <em>%h</em>"
msgstr "" 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" msgid "Dismiss"
msgstr "Oblida-ho" msgstr "Oblida-ho"
#: 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" msgid "Displaying %d-%d of %d"
msgstr "" 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" msgid "Download and install package"
msgstr "Descarrega i instal·la el paquet" 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 #, fuzzy
msgid "Errors" msgid "Errors"
msgstr "Error" 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" 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" msgid "Filter"
msgstr "Filtre" 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" msgid "Free space"
msgstr "Espai lliure" msgstr "Espai lliure"
@ -98,258 +116,287 @@ msgstr "Espai lliure"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Instal·la" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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 #, fuzzy
msgid "Installed" msgid "Installed"
msgstr "Instal·la" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
msgstr "" 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 #, fuzzy
msgid "Install…" msgid "Install…"
msgstr "Instal·la" 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 #, fuzzy
msgid "Loading configuration data…" msgid "Loading configuration data…"
msgstr "Vés a la pàgina de configuració" 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…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
#, fuzzy #, fuzzy
msgid "Manually install package" msgid "Manually install package"
msgstr "Descarrega i instal·la el paquet" 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" 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" 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" msgid "No information available"
msgstr "No hi ha informació disponible" 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 #, fuzzy
msgid "No packages" msgid "No packages"
msgstr "Cerca paquet" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "" 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 #, fuzzy
msgid "Not available" msgid "Not available"
msgstr "Total disponible" 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 #, fuzzy
msgid "Not installed" msgid "Not installed"
msgstr "No connectat" 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" msgid "OK"
msgstr "D'acord" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
#, fuzzy #, fuzzy
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "Configuració d&#39;OPKG" msgstr "Configuració d&#39;OPKG"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" msgid "Package name"
msgstr "Nom del paquet" 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 #, fuzzy
msgid "Package name or URL…" msgid "Package name or URL…"
msgstr "Nom del paquet" 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" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "" 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" msgid "Remove"
msgstr "Treu" 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>" msgid "Remove package <em>%h</em>"
msgstr "" 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…" msgid "Remove…"
msgstr "Treu…" msgstr "Treu…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" 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" msgid "Requires update to %h %h"
msgstr "" 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" msgid "Reset"
msgstr "Restableix" 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" msgid "SHA256"
msgstr "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" msgid "Save"
msgstr "Desar" 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 #, fuzzy
msgid "Saving configuration data…" msgid "Saving configuration data…"
msgstr "Configuració de dispositiu" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Mida" 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)" msgid "Size (.ipk)"
msgstr "Mida (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "Programari" 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
msgstr "" 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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
msgstr "" 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…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "" 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" msgid "Unable to read %s: %s"
msgstr "" 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" msgid "Unable to save %s: %s"
msgstr "" 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 #, fuzzy
msgid "Update lists…" msgid "Update lists…"
msgstr "Actualitza les llistes" 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 #, fuzzy
msgid "Updates" msgid "Updates"
msgstr "Actualitza les llistes" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "Versió" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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
#, fuzzy #, fuzzy
msgid "Waiting for the <em>opkg %h</em> command to complete…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Esperant que s'acabi l'ordre..." 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "desconegut" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "" msgstr ""

View file

@ -13,19 +13,23 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 4.9-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" msgid "Actions"
msgstr "Akce" 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 ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies" msgid "Automatically remove unused dependencies"
msgstr "Automatické odstranění nepoužívaných závislostí" 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" msgid "Available"
msgstr "K dispozici" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -37,61 +41,75 @@ msgstr ""
"<em>customfeeds.conf</em> pro vlastní položky úložiště. Konfigurace v jiných " "<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>." "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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Storno" msgstr "Storno"
#: 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" msgid "Clear"
msgstr "Prázdný" 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…" msgid "Configure opkg…"
msgstr "Nakonfigurujte 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" msgid "Dependencies"
msgstr "Závislosti" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Popis" 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>" msgid "Details for package <em>%h</em>"
msgstr "Podrobnosti o balíčku <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" msgid "Dismiss"
msgstr "Zahodit" 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 ""
#: 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" msgid "Displaying %d-%d of %d"
msgstr "Zobrazuji %d-%d z %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" msgid "Download and install package"
msgstr "Stáhnout a nainstalovat balíček" 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" msgid "Errors"
msgstr "Chyby" 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" msgid "Executing package manager"
msgstr "Spuštění správce balíčků" 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" msgid "Filter"
msgstr "Filtr" 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" msgid "Free space"
msgstr "Volné místo" msgstr "Volné místo"
@ -99,20 +117,28 @@ msgstr "Volné místo"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Instalovat" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" msgid "Installed"
msgstr "Instalací" msgstr "Instalací"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -120,152 +146,158 @@ msgstr ""
"Instalace balíků z nedůvěryhodných zdrojů je potenciálním bezpečnostním " "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>?" "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…" msgid "Install…"
msgstr "Instalovat…" 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…" msgid "Loading configuration data…"
msgstr "Načítání konfiguračních dat…" 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…" msgid "Loading package information…"
msgstr "Načítání informací o balíčku…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" msgid "Manually install package"
msgstr "Ručně nainstalujte balíček" 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" msgid "Needs upgrade"
msgstr "Vyžaduje 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" msgid "Next page"
msgstr "Další stránka" 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" msgid "No information available"
msgstr "Údaje nejsou k dispozici" 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" msgid "No packages"
msgstr "Žádné balíčky" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Žádné balíčky odpovídající \"<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" msgid "Not available"
msgstr "Není dostupný" 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" msgid "Not installed"
msgstr "Není instalován" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "Konfigurace OPKG" msgstr "Konfigurace OPKG"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
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
msgid "Package name" msgid "Package name"
msgstr "Název balíčku" 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…" msgid "Package name or URL…"
msgstr "Název balíčku nebo adresa URLL…" 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" msgid "Previous page"
msgstr "Předchozí stránka" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "Opravdu se pokusíte nainstalovat <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" msgid "Remove"
msgstr "Odstranit" 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>" msgid "Remove package <em>%h</em>"
msgstr "Odstraňte balíček <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…" msgid "Remove…"
msgstr "Odstranit…" msgstr "Odstranit…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "Vyžadovat cca. %.1024mB velikost pro balíčky %d instalaci." 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "Vyžadovat verzi %h %h, instalovaná %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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" msgstr ""
"Požadovaný balíček závislostí <em>%h</em> není dostupný v žádném úložišti." "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" msgid "Requires update to %h %h"
msgstr "Vyžaduje aktualizaci na %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" msgid "Reset"
msgstr "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" msgid "SHA256"
msgstr "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" msgid "Save"
msgstr "Uložit" 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…" msgid "Saving configuration data…"
msgstr "Ukládání konfiguračních dat…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Velikost" 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)" msgid "Size (.ipk)"
msgstr "Velikost (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "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 ""
#: 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>." 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>." 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -273,11 +305,11 @@ msgstr ""
"Nainstalovaná verze balíku <em>%h</em> není kompatibilní, vyžaduje instalaci " "Nainstalovaná verze balíku <em>%h</em> není kompatibilní, vyžaduje instalaci "
"%s, ale %s." "%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." 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." 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -285,66 +317,84 @@ msgstr ""
"Verze balíčku <em>%h</em> není kompatibilní, vyžaduje %s, ale k dispozici je " "Verze balíčku <em>%h</em> není kompatibilní, vyžaduje %s, ale k dispozici je "
"pouze %s." "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…" msgid "Type to filter…"
msgstr "Začněte psát pro filtrování…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "" 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" msgid "Unable to read %s: %s"
msgstr "" 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" msgid "Unable to save %s: %s"
msgstr "" 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…" msgid "Update lists…"
msgstr "Aktualizovat seznamy…" 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" msgid "Updates"
msgstr "Aktualizace" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" msgid "Upgrade…"
msgstr "Přechod na novější verzi…" 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…" msgid "Upload Package…"
msgstr "Nahrát balíček…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "Verze" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" msgid "Version incompatible"
msgstr "Verze nekompatibilní" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Čekání na dokončení příkazu <em>opkg %h</em> …" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "neznámý" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB komprimován" msgstr "~%1024mB komprimován"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB nainstalován" msgstr "~%1024mB nainstalován"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Přepsat soubory z jiných balíčků"

View file

@ -10,19 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.11-dev\n" "X-Generator: Weblate 4.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" msgid "Actions"
msgstr "Handlinger" msgstr "Handlinger"
#: 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" msgid "Automatically remove unused dependencies"
msgstr "Fjern automatisk ubrugte dependencies" msgstr "Fjern automatisk ubrugte dependencies"
#: 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" msgid "Available"
msgstr "Tilgængelig" msgstr "Tilgængelig"
#: 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -35,61 +39,75 @@ msgstr ""
"Konfigurationen i de andre filer kan ændres, men den bevares normalt ikke af " "Konfigurationen i de andre filer kan ændres, men den bevares normalt ikke af "
"<em>sysupgrade</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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Annuller" msgstr "Annuller"
#: 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" msgid "Clear"
msgstr "Ryd" msgstr "Ryd"
#: 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…" msgid "Configure opkg…"
msgstr "Konfigurer opkg…" msgstr "Konfigurer 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" msgid "Dependencies"
msgstr "Dependencies" msgstr "Dependencies"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Beskrivelse" 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>" msgid "Details for package <em>%h</em>"
msgstr "Detaljer for pakke <em>%h</em>" msgstr "Detaljer for pakke <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" msgid "Dismiss"
msgstr "Afvis" msgstr "Afvis"
#: 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" msgid "Displaying %d-%d of %d"
msgstr "Viser %d-%d af %d" msgstr "Viser %d-%d af %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" msgid "Download and install package"
msgstr "Download og installer pakken" msgstr "Download 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
msgid "Errors" msgid "Errors"
msgstr "Fejl" msgstr "Fejl"
#: 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" msgid "Executing package manager"
msgstr "Udførelse af pakkeadministrator" msgstr "Udførelse af pakkeadministrator"
#: 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" msgid "Filter"
msgstr "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" msgid "Free space"
msgstr "Ledig plads" msgstr "Ledig plads"
@ -97,20 +115,28 @@ msgstr "Ledig plads"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Giv adgang til opkg administration" msgstr "Giv adgang til opkg administration"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Installer" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" msgid "Installed"
msgstr "Installeret" msgstr "Installeret"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -118,152 +144,158 @@ msgstr ""
"Installation af pakker fra kilder, der ikke er tillid til, er en potentiel " "Installation af pakker fra kilder, der ikke er tillid til, er en potentiel "
"sikkerhedsrisiko! Forsøger du virkelig at installere <em>%h</em>?" "sikkerhedsrisiko! Forsøger du virkelig at installere <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…" msgid "Install…"
msgstr "Installer…" 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…" msgid "Loading configuration data…"
msgstr "Indlæser konfigurationsdata…" msgstr "Indlæser konfigurationsdata…"
#: 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…" msgid "Loading package information…"
msgstr "Indlæser pakkeoplysninger…" msgstr "Indlæser pakkeoplysninger…"
#: 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" msgid "Manually install package"
msgstr "Installer pakke manuelt" msgstr "Installer pakke manuelt"
#: 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" msgid "Needs upgrade"
msgstr "Skal opgraderes" msgstr "Skal opgraderes"
#: 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" msgid "Next page"
msgstr "Næste side" msgstr "Næste 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" msgid "No information available"
msgstr "Ingen oplysninger tilgængelige" msgstr "Ingen oplysninger tilgængelige"
#: 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" msgid "No packages"
msgstr "Ingen pakker" msgstr "Ingen pakker"
#: 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Ingen pakker, der matcher \"<strong>%h</strong>\"." msgstr "Ingen pakker, der matcher \"<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" msgid "Not available"
msgstr "Ikke tilgængelig" msgstr "Ikke tilgængelig"
#: 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" msgid "Not installed"
msgstr "Ikke installeret" msgstr "Ikke installeret"
#: 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "OPKG konfiguration" msgstr "OPKG konfiguration"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr "Overskriv filer fra andre pakke(r)"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" msgid "Package name"
msgstr "Pakkenavn" 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…" msgid "Package name or URL…"
msgstr "Pakkenavn eller URL…" msgstr "Pakkenavn 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" msgid "Previous page"
msgstr "Forrige side" msgstr "Forrige side"
#: 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "Forsøger du virkelig at installere <em>%h</em>?" msgstr "Forsøger du virkelig at installere <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" msgid "Remove"
msgstr "Fjern" 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>" msgid "Remove package <em>%h</em>"
msgstr "Fjern pakke <em>%h</em>" msgstr "Fjern pakke <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…" msgid "Remove…"
msgstr "Fjern…" msgstr "Fjern…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "Kræver ca. %.1024mB størrelse for %d pakke(r) at installere." msgstr "Kræver ca. %1024mB størrelse for %d pakke(r) at installere."
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "Kræver version %h %h, installeret %h" msgstr "Kræver version %h %h, installeret %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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" msgstr ""
"Påkrævet dependency pakke <em>%h</em> er ikke tilgængelig i noget repository." "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:480 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h" msgid "Requires update to %h %h"
msgstr "Kræver opdatering til %h %h" msgstr "Kræver opdatering til %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" msgid "Reset"
msgstr "Nulstil" msgstr "Nulstil"
#: 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" msgid "SHA256"
msgstr "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" msgid "Save"
msgstr "Gem" msgstr "Gem"
#: 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…" msgid "Saving configuration data…"
msgstr "Gemmer konfigurationsdata…" msgstr "Gemmer konfigurationsdata…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Størrelse" 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)" msgid "Size (.ipk)"
msgstr "Størrelse (.ipk)" 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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "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 ""
#: 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>." 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>." msgstr "Kommandoen <em>opkg %h</em> mislykkedes med koden <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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -271,11 +303,12 @@ msgstr ""
"Den installerede version af pakken <em>%h</em> er ikke kompatibel, kræver %s " "Den installerede version af pakken <em>%h</em> er ikke kompatibel, kræver %s "
"mens %s er installeret." "mens %s er installeret."
#: 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." 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." msgstr ""
"Pakken <em>%h</em> er ikke tilgængelig i noget konfigureret repository."
#: 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -283,66 +316,84 @@ msgstr ""
"repository version af pakken <em>%h</em> er ikke kompatibel, kræver %s, men " "repository version af pakken <em>%h</em> er ikke kompatibel, kræver %s, men "
"kun %s er tilgængelig." "kun %s er tilgængelig."
#: 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…" msgid "Type to filter…"
msgstr "Skriv for at filtrere…" msgstr "Skriv for at filtrere…"
#: 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Kan ikke udføre <em>opkg %s</em> kommando: %s" msgstr "Kan ikke udføre <em>opkg %s</em> kommando: %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" msgid "Unable to read %s: %s"
msgstr "Kan ikke læse %s: %s" msgstr "Kan ikke læse %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" msgid "Unable to save %s: %s"
msgstr "Kan ikke gemme %s: %s" msgstr "Kan ikke gemme %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…" msgid "Update lists…"
msgstr "Opdater lister…" msgstr "Opdater 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
msgid "Updates" msgid "Updates"
msgstr "Opdateringer" msgstr "Opdateringer"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" msgid "Upgrade…"
msgstr "Opgrader…" msgstr "Opgrader…"
#: 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…" msgid "Upload Package…"
msgstr "Upload pakke…" msgstr "Upload pakke…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" msgid "Version incompatible"
msgstr "Version inkompatibel" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Venter på at kommandoen <em>opkg %h</em> afsluttes…" msgstr "Venter på at kommandoen <em>opkg %h</em> afsluttes…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "ukendt" msgstr "ukendt"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB komprimeret" msgstr "~%1024mB komprimeret"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB installeret" msgstr "~%1024mB installeret"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Overskriv filer fra andre pakke(r)"

View file

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-05-26 17:57+0200\n" "POT-Creation-Date: 2009-05-26 17:57+0200\n"
"PO-Revision-Date: 2021-02-08 04:46+0000\n" "PO-Revision-Date: 2022-08-01 15:53+0200\n"
"Last-Translator: Zocker1012 <julian.schoemer.1997@gmail.com>\n" "Last-Translator: Zocker1012 <julian.schoemer.1997@gmail.com>\n"
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsopkg/de/>\n" "luciapplicationsopkg/de/>\n"
@ -12,21 +12,25 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.5-dev\n" "X-Generator: Poedit 3.1.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" msgid "Actions"
msgstr "Aktionen" 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" msgid "Automatically remove unused dependencies"
msgstr "Unbenutzte Abhängigkeiten automatisch entfernen" 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" msgid "Available"
msgstr "Verfügbar" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -40,61 +44,77 @@ msgstr ""
"Konfigurationsdateien kann zwar geändert werden, wird aber überlicherweise " "Konfigurationsdateien kann zwar geändert werden, wird aber überlicherweise "
"bei <em>Systemupdates</em> zurückgesetzt." "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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Abbrechen" 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" msgid "Clear"
msgstr "Zurücksetzen" 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…" msgid "Configure opkg…"
msgstr "Konfiguriere 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" msgid "Dependencies"
msgstr "Abhängigkeiten" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Beschreibung" 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>" msgid "Details for package <em>%h</em>"
msgstr "Details für Paket <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" msgid "Dismiss"
msgstr "Verwerfen" 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" msgid "Displaying %d-%d of %d"
msgstr "Einträge %d-%d von %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" msgid "Download and install package"
msgstr "Paket herunterladen und installieren" 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" msgid "Errors"
msgstr "Fehler" 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" msgid "Executing package manager"
msgstr "Paketmanager ausführen" 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" msgid "Filter"
msgstr "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" msgid "Free space"
msgstr "Freier Platz" msgstr "Freier Platz"
@ -102,20 +122,28 @@ msgstr "Freier Platz"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Zugriff auf opkg-Verwaltung erlauben" msgstr "Zugriff auf opkg-Verwaltung erlauben"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Installieren" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" msgid "Installed"
msgstr "Installiert" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -124,154 +152,162 @@ msgstr ""
"Sicherheitsrisiko! Soll wirklich versucht werden, <em>%h</em> zu " "Sicherheitsrisiko! Soll wirklich versucht werden, <em>%h</em> zu "
"installieren?" "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…" msgid "Install…"
msgstr "Installieren…" 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…" msgid "Loading configuration data…"
msgstr "Lade Konfigurationsdaten…" 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…" msgid "Loading package information…"
msgstr "Lade Paketinformationen…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" msgid "Manually install package"
msgstr "Paket manuell installieren" 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" msgid "Needs upgrade"
msgstr "Aktualisierung benötigt" 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" msgid "Next page"
msgstr "Nächste Seite" 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" msgid "No information available"
msgstr "Keine Informationen verfügbar" 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" msgid "No packages"
msgstr "Keine Pakete" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Keine auf \"<strong>%h</strong>\" zutreffenden Pakete." 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" msgid "Not available"
msgstr "Nicht verfügbar" 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" msgid "Not installed"
msgstr "Nicht installiert" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "OPKG-Konfiguration" msgstr "OPKG-Konfiguration"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
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
msgid "Package name" msgid "Package name"
msgstr "Paketname" 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…" msgid "Package name or URL…"
msgstr "Paketname oder 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" msgid "Previous page"
msgstr "Vorige Seite" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "Soll wirklich versucht werden, <em>%h</em> zu installieren?" 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" msgid "Remove"
msgstr "Entfernen" 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>" msgid "Remove package <em>%h</em>"
msgstr "Paket <em>%h</em> entfernen" 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…" msgid "Remove…"
msgstr "Entfernen…" msgstr "Entfernen…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "Erforderliche Version %h %h, installiert %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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" msgstr ""
"Benötigtes abhängiges Paket <em>%h</em> ist in keinem Repository verfügbar." "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" msgid "Requires update to %h %h"
msgstr "Benötigt Update auf Version %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" msgid "Reset"
msgstr "Zurücksetzen" 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" msgid "SHA256"
msgstr "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" msgid "Save"
msgstr "Speichern" 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…" msgid "Saving configuration data…"
msgstr "Speichere Konfigurationsdaten…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Größe" 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)" msgid "Size (.ipk)"
msgstr "Größe (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "Paketverwaltung" 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" msgstr ""
"Das <em>opkg %h</em> Kommando wurde mit Fehlercode <code>%d</code> beendet." "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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -279,12 +315,12 @@ msgstr ""
"Die installierte Version von Paket <em>%h</em> ist nicht kompatibel, " "Die installierte Version von Paket <em>%h</em> ist nicht kompatibel, "
"benötige Version %s während %s installiert ist." "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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" msgstr ""
"Das Paket <em>%h</em> ist in keinem konfiguriertem Repository verfügbar." "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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -292,69 +328,87 @@ msgstr ""
"Die Repository-Version von Paket <em>%h</em> ist nicht kompatibel, benötige " "Die Repository-Version von Paket <em>%h</em> ist nicht kompatibel, benötige "
"Version %s aber nur %s ist verfügbar." "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…" msgid "Type to filter…"
msgstr "Tippen zum Filtern…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Der Befehl <em>opkg %s</em> konnte nicht ausgeführt werden: %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" msgid "Unable to read %s: %s"
msgstr "Kann %s nicht lesen: %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" msgid "Unable to save %s: %s"
msgstr "%s kann nicht gespeichert werden: %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…" msgid "Update lists…"
msgstr "Listen aktualisieren…" 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" msgid "Updates"
msgstr "Aktualisierungen" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" msgid "Upgrade…"
msgstr "Aktualisieren…" 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…" msgid "Upload Package…"
msgstr "Paket hochladen…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" msgid "Version incompatible"
msgstr "Version inkompatibel" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Warte auf das <em>opkg %h</em> Kommando…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "unbekannt" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "ca. %.1024mB komprimiert" msgstr "ca. %1024mB komprimiert"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "ca. %.1024mB installiert" msgstr "ca. %1024mB installiert"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Überschreiben von Dateien anderer Pakete erlauben"
#~ msgid "" #~ msgid ""
#~ "Require version %h %h,\n" #~ "Require version %h %h,\n"

View file

@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11-dev\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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "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>." "changed but is usually not preserved by <em>sysupgrade</em>."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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
#, fuzzy #, fuzzy
msgid "Configure opkg…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" msgid "Details for package <em>%h</em>"
msgstr "" 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" msgid "Dismiss"
msgstr "" 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" msgid "Displaying %d-%d of %d"
msgstr "" 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" msgid "Download and install package"
msgstr "Κατέβασμα και εγκατάσταση πακέτου" 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 #, fuzzy
msgid "Errors" 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" 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" 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" msgid "Free space"
msgstr "Ελεύθερος χώρος" msgstr "Ελεύθερος χώρος"
@ -98,255 +116,284 @@ msgstr "Ελεύθερος χώρος"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Εγκατάσταση" msgstr "Εγκατάσταση"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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 #, fuzzy
msgid "Installed" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
msgstr "" 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 #, fuzzy
msgid "Install…" 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
#, fuzzy #, fuzzy
msgid "Loading configuration data…" 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…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
#, fuzzy #, fuzzy
msgid "Manually install package" 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" 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" 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" 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
#, fuzzy #, fuzzy
msgid "No packages" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "" 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 #, fuzzy
msgid "Not available" 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
#, fuzzy #, fuzzy
msgid "Not installed" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
#, fuzzy #, fuzzy
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "Παραμετροποίηση OPKG" msgstr "Παραμετροποίηση OPKG"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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
#, fuzzy #, fuzzy
msgid "Package name or URL…" msgid "Package name or URL…"
msgstr "Όνομα πακέτου" 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" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "" 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…" msgid "Remove…"
msgstr "Αφαίρεση…" msgstr "Αφαίρεση…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" 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" msgid "Requires update to %h %h"
msgstr "" 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" 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" msgid "SHA256"
msgstr "" 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" 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
#, fuzzy #, fuzzy
msgid "Saving configuration data…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "" 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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
msgstr "" 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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
msgstr "" 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…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "" 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" msgid "Unable to read %s: %s"
msgstr "" 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" msgid "Unable to save %s: %s"
msgstr "" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "" msgstr ""

View file

@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13.1-dev\n" "X-Generator: Weblate 4.13.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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "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>." "changed but is usually not preserved by <em>sysupgrade</em>."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" msgid "Details for package <em>%h</em>"
msgstr "" 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" msgid "Dismiss"
msgstr "" 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" msgid "Displaying %d-%d of %d"
msgstr "" 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" msgid "Download and install package"
msgstr "" 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" 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" 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" 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" msgid "Free space"
msgstr "" msgstr ""
@ -96,245 +114,274 @@ msgstr ""
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
msgstr "" 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…" 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…" 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…" 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" msgid "MD5"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" 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" 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" 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" 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" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "" 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" 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" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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…" msgid "Package name or URL…"
msgstr "" 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" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "" 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…" msgid "Remove…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" 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" msgid "Requires update to %h %h"
msgstr "" 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" 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" msgid "SHA256"
msgstr "" 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" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "" 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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
msgstr "" 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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
msgstr "" 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…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "" 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" msgid "Unable to read %s: %s"
msgstr "" 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" msgid "Unable to save %s: %s"
msgstr "" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "" msgstr ""

View file

@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.7-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" msgid "Actions"
msgstr "Acciones" 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 ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies" msgid "Automatically remove unused dependencies"
msgstr "Eliminar automáticamente las dependencias no utilizadas" 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" msgid "Available"
msgstr "Disponible" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -39,61 +43,75 @@ msgstr ""
"repositorio personalizadas. La configuración en los otros archivos puede " "repositorio personalizadas. La configuración en los otros archivos puede "
"cambiarse, pero por lo general no se conserva mediante <em>sysupgrade</em>." "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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" 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" msgid "Clear"
msgstr "Limpiar" 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…" msgid "Configure opkg…"
msgstr "Configurar 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" msgid "Dependencies"
msgstr "Dependencias" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Descripción" 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>" msgid "Details for package <em>%h</em>"
msgstr "Detalles para el paquete <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" msgid "Dismiss"
msgstr "Descartar" 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 ""
#: 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" msgid "Displaying %d-%d of %d"
msgstr "Mostrando %d-%d de %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" msgid "Download and install package"
msgstr "Descargar e instalar paquete" 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" msgid "Errors"
msgstr "Errores" 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" msgid "Executing package manager"
msgstr "Ejecutando el gestor de paquetes" 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" msgid "Filter"
msgstr "Filtrar" 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" msgid "Free space"
msgstr "Espacio libre" msgstr "Espacio libre"
@ -101,20 +119,28 @@ msgstr "Espacio libre"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Conceder acceso a la gestión de opkg" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Instalar" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" msgid "Installed"
msgstr "Instalado" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -122,153 +148,159 @@ msgstr ""
"¡Instalar paquetes de fuentes no confiables es un riesgo potencial de " "¡Instalar paquetes de fuentes no confiables es un riesgo potencial de "
"seguridad! ¿Realmente intentas instalar <em>%h</em>?" "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…" msgid "Install…"
msgstr "Instalar…" 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…" msgid "Loading configuration data…"
msgstr "Cargando datos de configuración…" 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…" msgid "Loading package information…"
msgstr "Cargando información del paquete…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" msgid "Manually install package"
msgstr "Instalar manualmente el paquete" 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" msgid "Needs upgrade"
msgstr "Necesita actualización" 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" msgid "Next page"
msgstr "Página siguiente" 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" msgid "No information available"
msgstr "No hay información disponible" 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" msgid "No packages"
msgstr "Sin paquetes" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Ningún paquete coincide con «<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" msgid "Not available"
msgstr "No disponible" 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" msgid "Not installed"
msgstr "No instalado" 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" msgid "OK"
msgstr "Aceptar" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "Configuración de OPKG" msgstr "Configuración de OPKG"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
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
msgid "Package name" msgid "Package name"
msgstr "Nombre del paquete" 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…" msgid "Package name or URL…"
msgstr "Nombre de paquete o 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" msgid "Previous page"
msgstr "Página anterior" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "¿Confirma que quiere instalar <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" msgid "Remove"
msgstr "Eliminar" 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>" msgid "Remove package <em>%h</em>"
msgstr "Eliminar paquete <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…" msgid "Remove…"
msgstr "Desinstalar…" msgstr "Desinstalar…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "Se necesitan aproximadamente %.1024mB para instalar %d paquete/s." 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "Requiere la versión%h%h, instalado %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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" msgstr ""
"El paquete de dependencia requerido <em>%h</em> no está disponible en ningún " "El paquete de dependencia requerido <em>%h</em> no está disponible en ningún "
"repositorio." "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" msgid "Requires update to %h %h"
msgstr "Requiere actualización a %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" msgid "Reset"
msgstr "Restablecer" 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" msgid "SHA256"
msgstr "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" msgid "Save"
msgstr "Guardar" 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…" msgid "Saving configuration data…"
msgstr "Guardando datos de configuración…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Tamaño" 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)" msgid "Size (.ipk)"
msgstr "Tamaño (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "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 ""
#: 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>." 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>." 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -276,12 +308,12 @@ msgstr ""
"La versión instalada del paquete <em>%h</em> no es compatible; requiere %s, " "La versión instalada del paquete <em>%h</em> no es compatible; requiere %s, "
"mientras que %s está instalado." "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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" msgstr ""
"El paquete <em>%h</em> no está disponible en ningún repositorio configurado." "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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -289,69 +321,87 @@ msgstr ""
"La versión de repositorio del paquete <em>%h</em> no es compatible, requiere " "La versión de repositorio del paquete <em>%h</em> no es compatible, requiere "
"%s pero solo %s está disponible." "%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…" msgid "Type to filter…"
msgstr "Escriba para filtrar…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "No se puede ejecutar el comando <em>opkg %s</em>: %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" msgid "Unable to read %s: %s"
msgstr "No se puede leer %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" msgid "Unable to save %s: %s"
msgstr "No se puede guardar %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…" msgid "Update lists…"
msgstr "Actualizar listas…" 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" msgid "Updates"
msgstr "Actualizaciones" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" msgid "Upgrade…"
msgstr "Actualizar…" 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…" msgid "Upload Package…"
msgstr "Subir paquete…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "Versión" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" msgid "Version incompatible"
msgstr "Versión 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Esperando a que el comando <em>opkg %h</em> finalice…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "desconocido" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB comprimido" msgstr "~%1024mB comprimido"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB instalado" msgstr "~%1024mB instalado"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Sobrescribir archivos de otro/s paquete/s"
#~ msgid "" #~ msgid ""
#~ "Require version %h %h,\n" #~ "Require version %h %h,\n"

View file

@ -10,19 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.13-dev\n" "X-Generator: Weblate 4.13-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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -30,61 +34,75 @@ msgid ""
"changed but is usually not preserved by <em>sysupgrade</em>." "changed but is usually not preserved by <em>sysupgrade</em>."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" msgid "Details for package <em>%h</em>"
msgstr "" 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" msgid "Dismiss"
msgstr "" 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" msgid "Displaying %d-%d of %d"
msgstr "" 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" msgid "Download and install package"
msgstr "" 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" 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" 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" 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" msgid "Free space"
msgstr "" msgstr ""
@ -92,245 +110,274 @@ msgstr ""
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
msgstr "" 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…" 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…" 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…" 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" msgid "MD5"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" 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" 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" 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" 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" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "" 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" 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" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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…" msgid "Package name or URL…"
msgstr "" 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" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "" 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…" msgid "Remove…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" 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" msgid "Requires update to %h %h"
msgstr "" 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" 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" msgid "SHA256"
msgstr "" 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" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "" 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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
msgstr "" 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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
msgstr "" 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…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "" 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" msgid "Unable to read %s: %s"
msgstr "" 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" msgid "Unable to save %s: %s"
msgstr "" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "" msgstr ""

View file

@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.12-dev\n" "X-Generator: Weblate 4.12-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" msgid "Actions"
msgstr "Toiminnot" 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 ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies" msgid "Automatically remove unused dependencies"
msgstr "Poista tarpeettomat 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" msgid "Available"
msgstr "Saatavilla" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -39,61 +43,75 @@ msgstr ""
"myös muita tiedostoja, mutta <em>sysupgrade</em> ei yleensä säilytä " "myös muita tiedostoja, mutta <em>sysupgrade</em> ei yleensä säilytä "
"muutoksia." "muutoksia."
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Peruuta" 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" msgid "Clear"
msgstr "Tyhjennä" 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…" msgid "Configure opkg…"
msgstr "Määritä 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" msgid "Dependencies"
msgstr "Riippuvuudet" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Kuvaus" 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>" msgid "Details for package <em>%h</em>"
msgstr "Paketin <em>%h</em> tiedot" 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" msgid "Dismiss"
msgstr "Hylkää" 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 ""
#: 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" msgid "Displaying %d-%d of %d"
msgstr "Näytetään %d-%d / %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" msgid "Download and install package"
msgstr "Lataa ja asenna paketti" 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" msgid "Errors"
msgstr "Virheet" 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" msgid "Executing package manager"
msgstr "Suoritetaan paketinhallintaa" 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" msgid "Filter"
msgstr "Suodatin" 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" msgid "Free space"
msgstr "Vapaa levytila" msgstr "Vapaa levytila"
@ -101,20 +119,28 @@ msgstr "Vapaa levytila"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Salli pääsy pakettiasennusten hallintaan (opkg)" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Asenna" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" msgid "Installed"
msgstr "Asennettu" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -122,153 +148,159 @@ msgstr ""
"Pakettien asentaminen epäluotettavista lähteistä on mahdollinen " "Pakettien asentaminen epäluotettavista lähteistä on mahdollinen "
"tietoturvariski! Yritätkö todella asentaa <em>%h</em>?" "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…" msgid "Install…"
msgstr "Asenna…" 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…" msgid "Loading configuration data…"
msgstr "Ladataan asetustietoja…" 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…" msgid "Loading package information…"
msgstr "Ladataan paketin tietoja…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" msgid "Manually install package"
msgstr "Asenna paketti käsin" 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" msgid "Needs upgrade"
msgstr "Tarvitsee päivityksen" 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" msgid "Next page"
msgstr "Seuraava sivu" 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" msgid "No information available"
msgstr "Ei tietoja saatavilla" 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" msgid "No packages"
msgstr "Ei paketteja" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Ei paketteja, jotka vastaavat \"<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" msgid "Not available"
msgstr "Ei saatavilla" 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" msgid "Not installed"
msgstr "Ei asennettu" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "OPKG-määritys" msgstr "OPKG-määritys"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr "Korvaa tiedostoja muista paketeista"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" msgid "Package name"
msgstr "Paketin nimi" 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…" 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" msgid "Previous page"
msgstr "Edellinen sivu" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "Yritätkö 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" msgid "Remove"
msgstr "Poista" 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>" msgid "Remove package <em>%h</em>"
msgstr "Poista paketti <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…" msgid "Remove…"
msgstr "Poista…" msgstr "Poista…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "%d paketin asennus edellyttää noin %.1024mB tilaa." 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "Vaatii version %h %h, asennettu %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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" msgstr ""
"Vaadittava riippuvuuspaketti <em>%h</em> ei ole saatavilla mistään " "Vaadittava riippuvuuspaketti <em>%h</em> ei ole saatavilla mistään "
"ohjelmistolähteestä." "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" msgid "Requires update to %h %h"
msgstr "Edellyttää päivitystä kohteeseen %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" msgid "Reset"
msgstr "Palauta" 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" msgid "SHA256"
msgstr "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" msgid "Save"
msgstr "Tallenna" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Koko" 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)" msgid "Size (.ipk)"
msgstr "Koko (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "Ohjelmisto" 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 ""
#: 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>." 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>." 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -276,13 +308,13 @@ msgstr ""
"Paketin <em>%h</em> asennettu versio ei ole yhteensopiva, se vaatii %s, kun " "Paketin <em>%h</em> asennettu versio ei ole yhteensopiva, se vaatii %s, kun "
"%s on asennettu." "%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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" msgstr ""
"Paketti <em>%h</em> ei ole saatavilla mistään määritetystä " "Paketti <em>%h</em> ei ole saatavilla mistään määritetystä "
"ohjelmistolähteestä." "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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -290,66 +322,84 @@ msgstr ""
"Ohjelmistolähteen versio paketista <em>%h</em> ei ole yhteensopiva, " "Ohjelmistolähteen versio paketista <em>%h</em> ei ole yhteensopiva, "
"vaaditaan %s mutta vain %s on saatavilla." "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…" msgid "Type to filter…"
msgstr "Kirjoita suodattaaksesi…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Komentoa <em>opkg %s</em> ei voida suorittaa: %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" msgid "Unable to read %s: %s"
msgstr "Ei voida lukea %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" msgid "Unable to save %s: %s"
msgstr "Ei voida tallentaa %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…" msgid "Update lists…"
msgstr "Päivitä luettelot…" 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" msgid "Updates"
msgstr "Päivitykset" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" msgid "Upgrade…"
msgstr "Päivitys…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "Versio" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" msgid "Version incompatible"
msgstr "Versio ei ole yhteensopiva" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Odotetaan <em>opkg %h</em> -komennon valmistumista…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "tuntematon" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB pakattu" msgstr "~%1024mB pakattu"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB asennettuna" msgstr "~%1024mB asennettuna"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Korvaa tiedostoja muista paketeista"

View file

@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.14-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" msgid "Actions"
msgstr "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 ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies" msgid "Automatically remove unused dependencies"
msgstr "Supprimez automatiquement les dépendances inutilisées" 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" msgid "Available"
msgstr "Disponible" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -39,61 +43,75 @@ msgstr ""
"personnalisées. La configuration des autres fichiers peut être modifiée mais " "personnalisées. La configuration des autres fichiers peut être modifiée mais "
"n'est généralement pas conservée par <em>sysupgrade</em>." "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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Annuler" 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" msgid "Clear"
msgstr "Nettoyer" 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…" msgid "Configure opkg…"
msgstr "Configuration 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" msgid "Dependencies"
msgstr "Dépendances" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "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>" msgid "Details for package <em>%h</em>"
msgstr "Détails du 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" msgid "Dismiss"
msgstr "Annuler" msgstr "Annuler"
#: 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" msgid "Displaying %d-%d of %d"
msgstr "Affichage de %d-%d sur %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" msgid "Download and install package"
msgstr "Télécharge et installe le paquet" 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" msgid "Errors"
msgstr "Erreurs" 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" msgid "Executing package manager"
msgstr "Exécution du gestionnaire de packages" 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" msgid "Filter"
msgstr "Filtrer" 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" msgid "Free space"
msgstr "Espace libre" msgstr "Espace libre"
@ -101,20 +119,28 @@ msgstr "Espace libre"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Permettre l'accès complet à la gestion des opkg" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Installer" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" msgid "Installed"
msgstr "Installé" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -122,153 +148,159 @@ msgstr ""
"L'installation de packages à partir de sources non fiables est un risque " "L'installation de packages à partir de sources non fiables est un risque "
"potentiel pour la sécurité! Voulez-vous vraiment installer <em>%h</em>?" "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…" msgid "Install…"
msgstr "Installer…" 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…" msgid "Loading configuration data…"
msgstr "Chargement des données de configuration…" 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…" msgid "Loading package information…"
msgstr "Chargement des informations sur le package…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" msgid "Manually install package"
msgstr "Installer manuellement le 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" msgid "Needs upgrade"
msgstr "Besoin de mise à niveau" 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" msgid "Next page"
msgstr "Page suivante" 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" msgid "No information available"
msgstr "Aucune information disponible" 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" msgid "No packages"
msgstr "Pas de paquet" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Aucun package correspondant à \"<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" msgid "Not available"
msgstr "Indisponible" 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" msgid "Not installed"
msgstr "Pas installé" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "Configuration OPKG" msgstr "Configuration OPKG"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
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
msgid "Package name" msgid "Package name"
msgstr "Nom du paquet" 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…" msgid "Package name or URL…"
msgstr "Nom ou URL du package…" 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" msgid "Previous page"
msgstr "Page précédente" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "Voulez-vous vraiment installer <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" msgid "Remove"
msgstr "Désinstaller" 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>" msgid "Remove package <em>%h</em>"
msgstr "Supprimer le 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…" msgid "Remove…"
msgstr "Désinstaller…" msgstr "Désinstaller…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "Exiger env taille. %.1024mB pour %d paquet(s) à installer." 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "Version requise %h %h, installée %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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" msgstr ""
"Le package de dépendance requis <em>%h</em> n'est disponible dans aucun " "Le package de dépendance requis <em>%h</em> n'est disponible dans aucun "
"référentiel." "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" msgid "Requires update to %h %h"
msgstr "Nécessite une mise à jour vers %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" msgid "Reset"
msgstr "Remise à zéro" 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" msgid "SHA256"
msgstr "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" msgid "Save"
msgstr "Sauvegarder" 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…" msgid "Saving configuration data…"
msgstr "Enregistrement des données de configuration…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Taille" 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)" msgid "Size (.ipk)"
msgstr "Taille (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "Logiciels" 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 ""
#: 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>." 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>." 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -276,12 +308,12 @@ msgstr ""
"La version installée du package <em>%h</em> n'est pas compatible, nécessite " "La version installée du package <em>%h</em> n'est pas compatible, nécessite "
"%s pendant que %s est installé." "%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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" msgstr ""
"Le package <em>%h</em> n'est disponible dans aucun référentiel configuré." "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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -289,66 +321,84 @@ msgstr ""
"La version du référentiel du package <em>%h</em> n'est pas compatible, " "La version du référentiel du package <em>%h</em> n'est pas compatible, "
"nécessite %s mais seulement %s est disponible." "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…" msgid "Type to filter…"
msgstr "Type à filtrer…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Impossible d'exécuter la commande <em>opkg %s</em>: %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" msgid "Unable to read %s: %s"
msgstr "Impossible de lire %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" msgid "Unable to save %s: %s"
msgstr "Impossible d'enregistrer %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…" msgid "Update lists…"
msgstr "Mettre à jour les listes…" 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" msgid "Updates"
msgstr "Mises à jour" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" msgid "Upgrade…"
msgstr "Mettre à jour…" 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…" msgid "Upload Package…"
msgstr "Télécharger le 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" msgid "Version incompatible"
msgstr "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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "En attente de la fin de la commande <em>opkg %h</em>…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "inconnu" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB compressé" msgstr "~%1024mB compressé"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB installé" msgstr "~%1024mB installé"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Écraser les fichiers d'autres packages"

View file

@ -12,19 +12,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 4.5-dev\n" "X-Generator: Weblate 4.5-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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -32,61 +36,75 @@ msgid ""
"changed but is usually not preserved by <em>sysupgrade</em>." "changed but is usually not preserved by <em>sysupgrade</em>."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" 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" msgid "Dismiss"
msgstr "התעלמות" 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" 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" msgid "Download and install package"
msgstr "הורדת והתקנת חבילות" 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" 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" 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" 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" msgid "Free space"
msgstr "מקום פנוי" msgstr "מקום פנוי"
@ -94,20 +112,28 @@ msgstr "מקום פנוי"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "הענקת גישה לניהול opkg" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "התקנה" msgstr "התקנה"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -115,226 +141,247 @@ msgstr ""
"התקנת חבילות ממקורות מפוקפקים היא הזמנה לסיכון אבטחה! לנסות להתקין את " "התקנת חבילות ממקורות מפוקפקים היא הזמנה לסיכון אבטחה! לנסות להתקין את "
"<em>%h</em>?" "<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…" 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…" 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…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" 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" 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" 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" 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" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "" 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" 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" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "תצורת OPKG" msgstr "תצורת OPKG"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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…" 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" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "" 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…" msgid "Remove…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" 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" msgid "Requires update to %h %h"
msgstr "" 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" 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" msgid "SHA256"
msgstr "" 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" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "" 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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
msgstr "" 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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
msgstr "" 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…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "" 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" msgid "Unable to read %s: %s"
msgstr "" 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" msgid "Unable to save %s: %s"
msgstr "" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "" msgstr ""

View file

@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.11-dev\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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "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>." "changed but is usually not preserved by <em>sysupgrade</em>."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" msgid "Details for package <em>%h</em>"
msgstr "" 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" msgid "Dismiss"
msgstr "" 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" msgid "Displaying %d-%d of %d"
msgstr "" 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" msgid "Download and install package"
msgstr "" 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" 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" 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" 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" msgid "Free space"
msgstr "" msgstr ""
@ -96,245 +114,274 @@ msgstr ""
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
msgstr "" 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…" 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…" 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…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" 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" 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" 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" 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" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "" 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" 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" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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…" msgid "Package name or URL…"
msgstr "" 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" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "" 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…" msgid "Remove…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" 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" msgid "Requires update to %h %h"
msgstr "" 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" 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" msgid "SHA256"
msgstr "" 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" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "" 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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
msgstr "" 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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
msgstr "" 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…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "" 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" msgid "Unable to read %s: %s"
msgstr "" 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" msgid "Unable to save %s: %s"
msgstr "" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "" msgstr ""

View file

@ -12,19 +12,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.7-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" msgid "Actions"
msgstr "Műveletek" 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" msgid "Automatically remove unused dependencies"
msgstr "Nem használt függőségek automatikus eltávolítása" 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" msgid "Available"
msgstr "Elérhető" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -37,61 +41,75 @@ msgstr ""
"fájlokban lévő beállítások megváltoztathatók, de általában nem lesznek " "fájlokban lévő beállítások megváltoztathatók, de általában nem lesznek "
"megtartva <em>rendszerfrissítéskor</em>." "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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Mégse" 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" msgid "Clear"
msgstr "Törlés" 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…" msgid "Configure opkg…"
msgstr "Az opkg beállítása…" 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" msgid "Dependencies"
msgstr "Függőségek" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Leírás" 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>" msgid "Details for package <em>%h</em>"
msgstr "A(z) <em>%h</em> csomag részletei" 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" msgid "Dismiss"
msgstr "Eltüntetés" 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" msgid "Displaying %d-%d of %d"
msgstr "%d-%d / %d megjelenítése" 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" msgid "Download and install package"
msgstr "Csomag letöltése és telepítése" 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" msgid "Errors"
msgstr "Hibák" 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" msgid "Executing package manager"
msgstr "Csomagkezelő végrehajtása" 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" msgid "Filter"
msgstr "Szűrő" 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" msgid "Free space"
msgstr "Szabad hely" msgstr "Szabad hely"
@ -99,20 +117,28 @@ msgstr "Szabad hely"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Hozzáférés megadása az opkg kezelőnek" msgstr "Hozzáférés megadása az opkg kezelőnek"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Telepítés" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" msgid "Installed"
msgstr "Telepítve" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "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</" "biztonsági kockázattal járhat! Valóban megpróbálja telepíteni a(z) <em>%h</"
"em> csomagot?" "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…" msgid "Install…"
msgstr "Telepítés…" 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…" msgid "Loading configuration data…"
msgstr "Beállítási adatok betöltése…" 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…" msgid "Loading package information…"
msgstr "Csomaginformációk betöltése…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" msgid "Manually install package"
msgstr "Csomag kézi telepítése" 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" msgid "Needs upgrade"
msgstr "Frissítés szükséges" 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" msgid "Next page"
msgstr "Következő oldal" 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" msgid "No information available"
msgstr "Nincs elérhető információ" 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" msgid "No packages"
msgstr "Nincsenek csomagok" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Nincs „<strong>%h</strong>” mintára illeszkedő csomag." 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" msgid "Not available"
msgstr "Nem érhető el" 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" msgid "Not installed"
msgstr "Nincs telepítve" 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" msgid "OK"
msgstr "Rendben" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "OPKG beállításai" msgstr "OPKG beállításai"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
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
msgid "Package name" msgid "Package name"
msgstr "Csomagnév" 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…" msgid "Package name or URL…"
msgstr "Csomagnév vagy 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" msgid "Previous page"
msgstr "Előző oldal" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "Valóban megpróbálja telepíteni a(z) <em>%h</em> csomagot?" 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" msgid "Remove"
msgstr "Eltávolítás" 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>" msgid "Remove package <em>%h</em>"
msgstr "A(z) <em>%h</em> csomag eltávolítása" 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…" msgid "Remove…"
msgstr "Eltávolítás…" msgstr "Eltávolítás…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." 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." 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "A(z) %h %h verziója szükséges, %h van telepítve" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" msgstr ""
"A szükséges <em>%h</em> függőségcsomag nem érhető el egyik tárolóban sem." "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" msgid "Requires update to %h %h"
msgstr "A(z) %h %h verzióra frissítést igényli" 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" msgid "Reset"
msgstr "Visszaállítás" 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" msgid "SHA256"
msgstr "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" msgid "Save"
msgstr "Mentés" 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…" msgid "Saving configuration data…"
msgstr "Beállítási adatok mentése…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Méret" 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)" msgid "Size (.ipk)"
msgstr "Méret (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "Szoftver" 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" msgstr ""
"Az <em>opkg %h</em> parancs meghiúsult a következő kóddal: <code>%d</code>." "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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "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, " "A(z) <em>%h</em> csomag telepített verziója nem megfelelő. %s szükséges, "
"miközben %s van telepítve." "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." 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." 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "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, " "A(z) <em>%h</em> csomag tárolóban lévő verziója nem megfelelő. %s szükséges, "
"de csak %s érhető el." "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…" msgid "Type to filter…"
msgstr "Gépeljen a szűréshez…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Nem sikerült végrehajtani az <em>opkg %s</em> parancsot: %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" msgid "Unable to read %s: %s"
msgstr "Nem sikerült beolvasni: %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" msgid "Unable to save %s: %s"
msgstr "Nem sikerült elmenteni: %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…" msgid "Update lists…"
msgstr "Listák frissítése…" 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" msgid "Updates"
msgstr "Frissítések" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" msgid "Upgrade…"
msgstr "Frissítés…" 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…" msgid "Upload Package…"
msgstr "Csomag feltöltése…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "Verzió" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" msgid "Version incompatible"
msgstr "Nem megfelelő verzió" 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…" 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…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "ismeretlen" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB tömörítve" msgstr "~%1024mB tömörítve"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB telepítve" msgstr "~%1024mB telepítve"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Fájlok felülírása más csomagokból"

View file

@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-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" msgid "Actions"
msgstr "Azioni" 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 ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies" msgid "Automatically remove unused dependencies"
msgstr "Rimuovi automaticamente le dipendenze non utilizzate" msgstr "Rimuovi automaticamente le dipendenze non utilizzate"
#: 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" msgid "Available"
msgstr "Disponibile" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -39,61 +43,75 @@ msgstr ""
"configurazione negli altri file può essere cambiata ma solitamente non viene " "configurazione negli altri file può essere cambiata ma solitamente non viene "
"conservata da <em>sysupgrade</em>." "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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Annulla" 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" msgid "Clear"
msgstr "Cancella" 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…" msgid "Configure opkg…"
msgstr "Configura 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" msgid "Dependencies"
msgstr "Dipendenze" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Descrizione" 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>" msgid "Details for package <em>%h</em>"
msgstr "Dettagli per il pacchetto <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" msgid "Dismiss"
msgstr "Chiudi" msgstr "Chiudi"
#: 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" msgid "Displaying %d-%d of %d"
msgstr "Mostrando %d-%d di %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" msgid "Download and install package"
msgstr "Scarica e installa pacchetto" msgstr "Scarica e installa 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" msgid "Errors"
msgstr "Errori" 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" msgid "Executing package manager"
msgstr "Esecuzione del gestore pacchetti" 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" msgid "Filter"
msgstr "Filtro" 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" msgid "Free space"
msgstr "Spazio di archiviazione libero" msgstr "Spazio di archiviazione libero"
@ -101,20 +119,28 @@ msgstr "Spazio di archiviazione libero"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Concedere l'accesso alla gestione di opkg" msgstr "Concedere 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Installa" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" msgid "Installed"
msgstr "Installati" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -122,153 +148,159 @@ msgstr ""
"L'installazione di pacchetti da fonti non attendibili è un potenziale " "L'installazione di pacchetti da fonti non attendibili è un potenziale "
"rischio per la sicurezza! Tentare davvero di installare <em>%h</em>?" "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…" msgid "Install…"
msgstr "Installa…" 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…" msgid "Loading configuration data…"
msgstr "Caricamento dati di configurazione…" 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…" msgid "Loading package information…"
msgstr "Caricamento delle informazioni sul pacchetto…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" msgid "Manually install package"
msgstr "Installa pacchetto manualmente" 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" msgid "Needs upgrade"
msgstr "Richiede aggiornamento" 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" msgid "Next page"
msgstr "Pagina successiva" 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" msgid "No information available"
msgstr "Nessuna informazione disponibile" 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" msgid "No packages"
msgstr "Nessun pacchetto" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Nessun pacchetto corrispondente a \"<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" msgid "Not available"
msgstr "Non disponibile" 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" msgid "Not installed"
msgstr "Non installato" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "Configurazione OPKG" msgstr "Configurazione OPKG"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
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
msgid "Package name" msgid "Package name"
msgstr "Nome pacchetto" 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…" msgid "Package name or URL…"
msgstr "Nome pacchetto o 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" msgid "Previous page"
msgstr "Pagina precedente" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "Tentare davvero di installare <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" msgid "Remove"
msgstr "Rimuovi" 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>" msgid "Remove package <em>%h</em>"
msgstr "Rimuovere il pacchetto <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…" msgid "Remove…"
msgstr "Rimuovi…" msgstr "Rimuovi…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "Richiede circa %.1024mB per installare %d pacchetto(i)." 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "Richiede la versione %h %h, installata %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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" msgstr ""
"Il pacchetto di dipendenza <em>%h</em> non è disponibile in nessuna " "Il pacchetto di dipendenza <em>%h</em> non è disponibile in nessuna "
"repository." "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" msgid "Requires update to %h %h"
msgstr "Richiede l'aggiornamento a %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" msgid "Reset"
msgstr "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" msgid "SHA256"
msgstr "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" msgid "Save"
msgstr "Salva" 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…" msgid "Saving configuration data…"
msgstr "Salvataggio dati di configurazione…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Dimensione" 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)" msgid "Size (.ipk)"
msgstr "Dimensione (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "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 ""
#: 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>." 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> ha 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -276,12 +308,12 @@ msgstr ""
"La versione installata del pacchetto <em>%h</em> non è compatibile, richiede " "La versione installata del pacchetto <em>%h</em> non è compatibile, richiede "
"%s mentre %s è installato." "%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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" msgstr ""
"Il pacchetto <em>%h</em> non è disponibile in nessuna repository configurata." "Il pacchetto <em>%h</em> non è disponibile in nessuna repository configurata."
#: 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -289,66 +321,84 @@ msgstr ""
"La versione della repository del pacchetto <em>%h</em> non è compatibile, " "La versione della repository del pacchetto <em>%h</em> non è compatibile, "
"richiede %s ma è disponibile solo %s." "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…" msgid "Type to filter…"
msgstr "Scrivi per filtrare…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Impossibile eseguire il comando <em>opkg %s</em>: %s" 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" msgid "Unable to read %s: %s"
msgstr "Impossibile leggere %s: %s" 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" msgid "Unable to save %s: %s"
msgstr "Impossibile salvare %s: %s" 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…" msgid "Update lists…"
msgstr "Aggiorna liste…" 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" msgid "Updates"
msgstr "Aggiornamenti" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" msgid "Upgrade…"
msgstr "Aggiorna…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "Versione" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" msgid "Version incompatible"
msgstr "Versione incompatibile" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "In attesa del completamento del comando <em>opkg %h</em>…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "sconosciuto" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB compressi" msgstr "~%1024mB compressi"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB installati" msgstr "~%1024mB installati"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Sovrascrivere i file da altri pacchetti"

View file

@ -14,84 +14,103 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.3.1\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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "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 " "custom repository entries. The configuration in the other files may be "
"changed but is usually not preserved by <em>sysupgrade</em>." "changed but is usually not preserved by <em>sysupgrade</em>."
msgstr "" msgstr ""
"以下は <em>opkg</em> によって使用される、様々な設定ファイルの一覧です。<em>opkg.conf</em> " "以下は <em>opkg</em> によって使用される、様々な設定ファイルの一覧です。"
"は全般的な設定に、<em>customfeeds.conf</em> はカスタム リポジトリの登録に使用します。これら以外のファイル内の設定を変更しても、" "<em>opkg.conf</em> は全般的な設定に、<em>customfeeds.conf</em> はカスタム リ"
"通常は <em>sysupgrade</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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" 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" msgid "Dismiss"
msgstr "閉じる" 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" 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" msgid "Download and install package"
msgstr "パッケージのダウンロードとインストール" 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" 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" 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" 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" msgid "Free space"
msgstr "空き容量" msgstr "空き容量"
@ -99,20 +118,28 @@ msgstr "空き容量"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "opkg 管理へのアクセスを許可" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "インストール" msgstr "インストール"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -120,151 +147,159 @@ msgstr ""
"信頼されていない提供元からのパッケージのインストールは、セキュリティ リスクを" "信頼されていない提供元からのパッケージのインストールは、セキュリティ リスクを"
"伴います! <em>%h</em> のインストールを試行してもよろしいですか?" "伴います! <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…" 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…" 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…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" 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" 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" 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" 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" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "\"<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" 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" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "OPKG 設定" msgstr "OPKG 設定"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr "他のパッケージからファイルを上書き"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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…" 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" 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>?" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "<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…" msgid "Remove…"
msgstr "削除…" msgstr "削除…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "%d のインストールには約 %.1024mB の領域が必要です。" 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "必須の依存パッケージ <em>%h</em> は、設定されているリポジトリでは利用できません。" 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" msgid "Requires update to %h %h"
msgstr "%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" 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" msgid "SHA256"
msgstr "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" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "サイズ (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -272,11 +307,11 @@ msgstr ""
"<em>%h</em> のインストール済みバージョンは互換性がありません。 %s が、インス" "<em>%h</em> のインストール済みバージョンは互換性がありません。 %s が、インス"
"トールされている %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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "<em>%h</em> パッケージは、設定済みのリポジトリでは利用できません。" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -284,69 +319,87 @@ msgstr ""
"<em>%h</em> パッケージのリポジトリ バージョンは互換性がありません。 %s が必要" "<em>%h</em> パッケージのリポジトリ バージョンは互換性がありません。 %s が必要"
"ですが、 %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…" 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" 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" 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" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB(圧縮後)" 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:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB(インストール後)" msgstr "~%1024mBインストール後"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "他のパッケージからファイルを上書き"
#~ msgid "" #~ msgid ""
#~ "Require version %h %h,\n" #~ "Require version %h %h,\n"

View file

@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n" "Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
"X-Generator: Weblate 4.14-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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "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>." "changed but is usually not preserved by <em>sysupgrade</em>."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" msgid "Details for package <em>%h</em>"
msgstr "" 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" msgid "Dismiss"
msgstr "닫기" 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" msgid "Displaying %d-%d of %d"
msgstr "" 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" msgid "Download and install package"
msgstr "패키지 다운로드 후 설치" 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" 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" 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" 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" msgid "Free space"
msgstr "여유 공간" msgstr "여유 공간"
@ -96,256 +114,285 @@ msgstr "여유 공간"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "설치" msgstr "설치"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
msgstr "" 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 #, fuzzy
msgid "Install…" 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
#, fuzzy #, fuzzy
msgid "Loading configuration data…" 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…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
#, fuzzy #, fuzzy
msgid "Manually install package" 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" 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" 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" 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
#, fuzzy #, fuzzy
msgid "No packages" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "" 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 #, fuzzy
msgid "Not available" 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
#, fuzzy #, fuzzy
msgid "Not installed" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
#, fuzzy #, fuzzy
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "OPKG-설정" msgstr "OPKG-설정"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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
#, fuzzy #, fuzzy
msgid "Package name or URL…" msgid "Package name or URL…"
msgstr "패키지 이름" 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" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "" 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…" msgid "Remove…"
msgstr "제거…" msgstr "제거…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" 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" msgid "Requires update to %h %h"
msgstr "" 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" 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
#, fuzzy #, fuzzy
msgid "SHA256" msgid "SHA256"
msgstr "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" 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
#, fuzzy #, fuzzy
msgid "Saving configuration data…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "크기 (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
msgstr "" 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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
msgstr "" 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…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "" 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" msgid "Unable to read %s: %s"
msgstr "" 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" msgid "Unable to save %s: %s"
msgstr "" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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
#, fuzzy #, fuzzy
msgid "Waiting for the <em>opkg %h</em> command to complete…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "실행한 명령이 끝나기를 기다리는 중입니다..." msgstr "실행한 명령이 끝나기를 기다리는 중입니다..."
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "" msgstr ""

View file

@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.3-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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "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>." "changed but is usually not preserved by <em>sysupgrade</em>."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" msgid "Details for package <em>%h</em>"
msgstr "" 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" msgid "Dismiss"
msgstr "डिसमिस करा" 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" msgid "Displaying %d-%d of %d"
msgstr "" 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" msgid "Download and install package"
msgstr "" 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" 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" 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" 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" msgid "Free space"
msgstr "" msgstr ""
@ -96,245 +114,274 @@ msgstr ""
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
msgstr "" 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…" 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…" 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…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" 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" 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" 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" 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" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "" 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" 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" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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…" msgid "Package name or URL…"
msgstr "" 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" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "" 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…" msgid "Remove…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" 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" msgid "Requires update to %h %h"
msgstr "" 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" 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" msgid "SHA256"
msgstr "" 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" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "" 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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
msgstr "" 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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
msgstr "" 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…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "" 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" msgid "Unable to read %s: %s"
msgstr "" 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" msgid "Unable to save %s: %s"
msgstr "" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "" msgstr ""

View file

@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.11-dev\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" msgid "Actions"
msgstr "Aksi" 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" 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" msgid "Available"
msgstr "Boleh didapati" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "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>." "changed but is usually not preserved by <em>sysupgrade</em>."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Batal" 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" 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
#, fuzzy #, fuzzy
msgid "Configure opkg…" msgid "Configure opkg…"
msgstr "Konfigurasi" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Keterangan" 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>" msgid "Details for package <em>%h</em>"
msgstr "" 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" msgid "Dismiss"
msgstr "" 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" msgid "Displaying %d-%d of %d"
msgstr "" 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" msgid "Download and install package"
msgstr "Turun dan memasang pakej" 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 #, fuzzy
msgid "Errors" msgid "Errors"
msgstr "Kesalahan" 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" 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" msgid "Filter"
msgstr "Penapis" 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" msgid "Free space"
msgstr "" msgstr ""
@ -98,254 +116,283 @@ msgstr ""
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Memasang" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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 #, fuzzy
msgid "Installed" msgid "Installed"
msgstr "Memasang" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
msgstr "" 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 #, fuzzy
msgid "Install…" msgid "Install…"
msgstr "Memasang" 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 #, fuzzy
msgid "Loading configuration data…" msgid "Loading configuration data…"
msgstr "Menuju ke halaman konfigurasi yang relevan" 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…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
#, fuzzy #, fuzzy
msgid "Manually install package" msgid "Manually install package"
msgstr "Turun dan memasang pakej" 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" 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" 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" 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
#, fuzzy #, fuzzy
msgid "No packages" msgid "No packages"
msgstr "Cari pakej" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "" 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 #, fuzzy
msgid "Not available" msgid "Not available"
msgstr "(%s sedia)" 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 #, fuzzy
msgid "Not installed" msgid "Not installed"
msgstr "Memasang" 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" msgid "OK"
msgstr "Baik" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
#, fuzzy #, fuzzy
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "OPKG-Konfigurasi" msgstr "OPKG-Konfigurasi"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" msgid "Package name"
msgstr "Nama pakej" 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 #, fuzzy
msgid "Package name or URL…" msgid "Package name or URL…"
msgstr "Nama pakej" 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" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "" 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" msgid "Remove"
msgstr "Menghapuskan" 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>" msgid "Remove package <em>%h</em>"
msgstr "" 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…" msgid "Remove…"
msgstr "Menghapuskan…" msgstr "Menghapuskan…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" 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" msgid "Requires update to %h %h"
msgstr "" 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" msgid "Reset"
msgstr "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" msgid "SHA256"
msgstr "" 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" msgid "Save"
msgstr "Simpan" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Saiz" 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)" msgid "Size (.ipk)"
msgstr "" 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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "Perisian" 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
msgstr "" 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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
msgstr "" 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…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "" 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" msgid "Unable to read %s: %s"
msgstr "" 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" msgid "Unable to save %s: %s"
msgstr "" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "Versi" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "" msgstr ""

View file

@ -10,19 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.5-dev\n" "X-Generator: Weblate 4.5-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" msgid "Actions"
msgstr "Handlinger" msgstr "Handlinger"
#: 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" msgid "Automatically remove unused dependencies"
msgstr "Fjern ubrukte avhengigheter automatisk" msgstr "Fjern ubrukte avhengigheter automatisk"
#: 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" msgid "Available"
msgstr "Tilgjengelig" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "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>." "changed but is usually not preserved by <em>sysupgrade</em>."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Avbryt" 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" msgid "Clear"
msgstr "Tøm" 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 #, fuzzy
msgid "Configure opkg…" msgid "Configure opkg…"
msgstr "Sett opp 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" msgid "Dependencies"
msgstr "Avhengigheter" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Beskrivelse" 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>" msgid "Details for package <em>%h</em>"
msgstr "Detaljer for pakken <em>%h</em>" 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" msgid "Dismiss"
msgstr "" 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" msgid "Displaying %d-%d of %d"
msgstr "Viser %d-%d av %d" msgstr "Viser %d-%d av %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" msgid "Download and install package"
msgstr "Last ned og installer pakken" 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 #, fuzzy
msgid "Errors" msgid "Errors"
msgstr "Feil" 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" 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" msgid "Filter"
msgstr "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" msgid "Free space"
msgstr "Ledig plass" msgstr "Ledig plass"
@ -94,252 +112,281 @@ msgstr "Ledig plass"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Installer" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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 #, fuzzy
msgid "Installed" msgid "Installed"
msgstr "Installer" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
msgstr "" 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…" msgid "Install…"
msgstr "Installer…" 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…" msgid "Loading configuration data…"
msgstr "Laster inn oppsettsdata…" 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…" msgid "Loading package information…"
msgstr "Last inn pakkeinfo …" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
#, fuzzy #, fuzzy
msgid "Manually install package" msgid "Manually install package"
msgstr "Last ned og installer pakken" 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" 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" msgid "Next page"
msgstr "Neste side" 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" msgid "No information available"
msgstr "Ingen informasjon tilgjengelig" 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 #, fuzzy
msgid "No packages" msgid "No packages"
msgstr "Finn pakke" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "" 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 #, fuzzy
msgid "Not available" msgid "Not available"
msgstr "Totalt Tilgjengelig" 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 #, fuzzy
msgid "Not installed" msgid "Not installed"
msgstr "Ikke tilkoblet" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
#, fuzzy #, fuzzy
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "<abbr title=\"Open PacKaGe Management\">OPKG</abbr>-Konfigurasjon" msgstr "<abbr title=\"Open PacKaGe Management\">OPKG</abbr>-Konfigurasjon"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" msgid "Package name"
msgstr "Pakkenavn" 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…" msgid "Package name or URL…"
msgstr "Pakkenavn eller nettadresse…" 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" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "" 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" msgid "Remove"
msgstr "Fjern" 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>" msgid "Remove package <em>%h</em>"
msgstr "" 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…" msgid "Remove…"
msgstr "Avinstaller…" msgstr "Avinstaller…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" 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" msgid "Requires update to %h %h"
msgstr "" 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" msgid "Reset"
msgstr "Nullstill" 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" msgid "SHA256"
msgstr "" 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" msgid "Save"
msgstr "Lagre" 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…" msgid "Saving configuration data…"
msgstr "Lagrer oppsettsdata…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Størrelse" 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)" msgid "Size (.ipk)"
msgstr "Størrelse (.ipk)" 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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "Programvare" 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
msgstr "" 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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
msgstr "" 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…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "" 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" msgid "Unable to read %s: %s"
msgstr "" 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" msgid "Unable to save %s: %s"
msgstr "" 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…" msgid "Update lists…"
msgstr "Oppdater lister…" 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 #, fuzzy
msgid "Updates" msgid "Updates"
msgstr "Oppdater lister" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "Versjon" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Venter på at <em>opkg %h</em>-kommando fullføres…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "ukjent" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "" msgstr ""

View file

@ -15,19 +15,23 @@ msgstr ""
"|| n%100>=20) ? 1 : 2;\n" "|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.12.1\n" "X-Generator: Weblate 4.12.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" msgid "Actions"
msgstr "Akcje" 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 ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies" msgid "Automatically remove unused dependencies"
msgstr "Automatycznie usuwaj nieużywane zależności" 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" msgid "Available"
msgstr "Dostępne" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -40,61 +44,75 @@ msgstr ""
"Konfiguracja w innych plikach może zostać zmieniona, ale zwykle nie jest " "Konfiguracja w innych plikach może zostać zmieniona, ale zwykle nie jest "
"zachowywana przez <em>sysupgrade</em>." "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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Anuluj" 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" msgid "Clear"
msgstr "Wyczyść" 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…" msgid "Configure opkg…"
msgstr "Skonfiguruj 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" msgid "Dependencies"
msgstr "Zależności" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Opis" 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>" msgid "Details for package <em>%h</em>"
msgstr "Szczegóły pakietu <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" msgid "Dismiss"
msgstr "Odrzuć" msgstr "Odrzuć"
#: 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" msgid "Displaying %d-%d of %d"
msgstr "Wyświetlanie %d-%d z %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" msgid "Download and install package"
msgstr "Pobierz i zainstaluj pakiet" 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" msgid "Errors"
msgstr "Błędy" 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" msgid "Executing package manager"
msgstr "Uruchamianie menedżera pakietów" 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" msgid "Filter"
msgstr "Filtr" 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" msgid "Free space"
msgstr "Wolna przestrzeń" msgstr "Wolna przestrzeń"
@ -102,20 +120,28 @@ msgstr "Wolna przestrzeń"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Udziel dostępu do zarządzania opkg" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Instaluj" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" msgid "Installed"
msgstr "Zainstalowane" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -123,154 +149,160 @@ msgstr ""
"Instalowanie pakietów z niezaufanych źródeł jest potencjalnym zagrożeniem " "Instalowanie pakietów z niezaufanych źródeł jest potencjalnym zagrożeniem "
"bezpieczeństwa! Czy na pewno chcesz zainstalować pakiet <em>%h</em>?" "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…" msgid "Install…"
msgstr "Zainstaluj.…" 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…" msgid "Loading configuration data…"
msgstr "Wczytywanie danych konfiguracyjnych…" 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…" msgid "Loading package information…"
msgstr "Ładowanie informacji o pakietach…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" msgid "Manually install package"
msgstr "Ręczna instalacja pakietu" 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" msgid "Needs upgrade"
msgstr "Wymaga aktualizacji" 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" msgid "Next page"
msgstr "Następna strona" 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" msgid "No information available"
msgstr "Brak dostępnych informacji" 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" msgid "No packages"
msgstr "Brak pakietów" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Brak pasujących pakietów \"<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" msgid "Not available"
msgstr "Niedostępne" 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" msgid "Not installed"
msgstr "Nie zainstalowano" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "Konfiguracja OPKG" msgstr "Konfiguracja OPKG"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
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
msgid "Package name" msgid "Package name"
msgstr "Nazwa pakietu" 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…" msgid "Package name or URL…"
msgstr "Nazwa pakietu lub adres 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" msgid "Previous page"
msgstr "Poprzednia strona" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "Czy na pewno chcesz zainstalować pakiet <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" msgid "Remove"
msgstr "Usuń" 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>" msgid "Remove package <em>%h</em>"
msgstr "Usuń pakiet <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…" msgid "Remove…"
msgstr "Usuń…" msgstr "Usuń…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "Wymaga ok. %.1024mB miejsca i instalacji %d pakietów." msgstr "Wymaga ok. %1024mB miejsca i instalacji %d pakietów."
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "Wymagana wersja %h %h, zainstalowano %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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" msgstr ""
"Wymagana zależność <em>%h</em> nie jest dostępna w żadnym repozytorium." "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" msgid "Requires update to %h %h"
msgstr "Wymaga aktualizacji do %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" msgid "Reset"
msgstr "Resetuj" 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" msgid "SHA256"
msgstr "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" msgid "Save"
msgstr "Zapisz" 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…" msgid "Saving configuration data…"
msgstr "Zapisywanie danych konfiguracyjnych…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Rozmiar" 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)" msgid "Size (.ipk)"
msgstr "Rozmiar (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "Oprogramowanie" 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 ""
#: 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" msgstr ""
"Polecenie <em>opkg %h</em> zakończyło się niepomyślnie z kodem <code>%d</" "Polecenie <em>opkg %h</em> zakończyło się niepomyślnie z kodem <code>%d</"
"code>." "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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -278,12 +310,12 @@ msgstr ""
"Zainstalowana wersja pakietu <em>%h</em> nie jest zgodna, wymaga %s podczas " "Zainstalowana wersja pakietu <em>%h</em> nie jest zgodna, wymaga %s podczas "
"gdy %s jest zainstalowana." "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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" msgstr ""
"Pakiet <em>%h</em> nie jest dostępny w żadnym skonfigurowanym repozytorium." "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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -291,69 +323,87 @@ msgstr ""
"Wersja pakietu w repozytorium <em>%h</em> nie jest zgodna, wymaga %s ale " "Wersja pakietu w repozytorium <em>%h</em> nie jest zgodna, wymaga %s ale "
"tylko %s jest dostępna." "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…" msgid "Type to filter…"
msgstr "Wpisz, aby przefiltrować…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Nie można wykonać polecenia <em>opkg %s</em>: %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" msgid "Unable to read %s: %s"
msgstr "Nie można odczytać %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" msgid "Unable to save %s: %s"
msgstr "Nie można zapisać %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…" msgid "Update lists…"
msgstr "Aktualizuj listy…" 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" msgid "Updates"
msgstr "Aktualizacje" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" msgid "Upgrade…"
msgstr "Zaktualizuj…" 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…" msgid "Upload Package…"
msgstr "Prześlij pakiet…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "Wersja" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" msgid "Version incompatible"
msgstr "Wersja niekompatybilna" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Oczekiwanie na <em>opkg %h</em> i wykonanie polecenia…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "nieznane" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB skompresowany" msgstr "~%1024mB skompresowany"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB zainstalowany" msgstr "~%1024mB zainstalowany"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Nadpisz pliki z innych pakietów"
#~ msgid "" #~ msgid ""
#~ "Require version %h %h,\n" #~ "Require version %h %h,\n"

View file

@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.12-dev\n" "X-Generator: Weblate 4.12-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" msgid "Actions"
msgstr "Ações" 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 ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies" msgid "Automatically remove unused dependencies"
msgstr "Remover automaticamente dependências não utilizadas" 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" msgid "Available"
msgstr "Disponível" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -39,61 +43,75 @@ msgstr ""
"configuração dos outros ficheiros pode ser alterada mas geralmente não é " "configuração dos outros ficheiros pode ser alterada mas geralmente não é "
"preservada pelo <em>sysupgrade</em>." "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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" 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" msgid "Clear"
msgstr "Limpar" 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…" msgid "Configure opkg…"
msgstr "Configurar 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" msgid "Dependencies"
msgstr "Dependências" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Descrição" 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>" msgid "Details for package <em>%h</em>"
msgstr "Detalhes do pacote <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" msgid "Dismiss"
msgstr "Dispensar" 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 ""
#: 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" msgid "Displaying %d-%d of %d"
msgstr "A mostrar %d-%d de %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" msgid "Download and install package"
msgstr "Descarregar e instalar o pacote" 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" msgid "Errors"
msgstr "Erros" 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" msgid "Executing package manager"
msgstr "A executar o gestor de pacotes" 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" msgid "Filter"
msgstr "Filtro" 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" msgid "Free space"
msgstr "Espaço livre" msgstr "Espaço livre"
@ -101,20 +119,28 @@ msgstr "Espaço livre"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Conceder acesso à gestão do 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Instalar" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" msgid "Installed"
msgstr "Instalado" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -122,154 +148,160 @@ msgstr ""
"Instalar pacotes de fontes desconhecidas é uma potencial falha de segurança! " "Instalar pacotes de fontes desconhecidas é uma potencial falha de segurança! "
"Pretende mesmo tentar instalar <em>%h</em>?" "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…" msgid "Install…"
msgstr "Instalar…" 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…" msgid "Loading configuration data…"
msgstr "A carregar os dados de configuração…" 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…" msgid "Loading package information…"
msgstr "A carregar informações do pacote…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" msgid "Manually install package"
msgstr "Instalar pacote manualmente" 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" msgid "Needs upgrade"
msgstr "Precisa de ser atualizado" 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" msgid "Next page"
msgstr "Próxima página" 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" msgid "No information available"
msgstr "Não há 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" msgid "No packages"
msgstr "Não há 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Não há 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" msgid "Not available"
msgstr "Não disponível" 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" msgid "Not installed"
msgstr "Não instalado" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "Configuração do OPKG" msgstr "Configuração do OPKG"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
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
msgid "Package name" msgid "Package name"
msgstr "Nome do pacote" 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…" msgid "Package name or URL…"
msgstr "Nome do pacote ou 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" msgid "Previous page"
msgstr "Página anterior" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "Tentar mesmo a instalação de <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" msgid "Remove"
msgstr "Remover" 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>" msgid "Remove package <em>%h</em>"
msgstr "Remover o pacote <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…" msgid "Remove…"
msgstr "Remover…" msgstr "Remover…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." 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)." 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "Requere a versão %h %h, instalada %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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" msgstr ""
"O pacote dependência <em>%h</em> requerido não se encontra disponível em " "O pacote dependência <em>%h</em> requerido não se encontra disponível em "
"nenhum repositório." "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" msgid "Requires update to %h %h"
msgstr "Requer a atualização de %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" msgid "Reset"
msgstr "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" msgid "SHA256"
msgstr "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" msgid "Save"
msgstr "Guardar" 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…" msgid "Saving configuration data…"
msgstr "A guardar dados de configuração…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Tamanho" 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)" msgid "Size (.ipk)"
msgstr "Tamanho (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "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 ""
#: 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" msgstr ""
"O comando <em>opkg %h</em> falhou com o código de erro <code>%d</code>." "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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -277,13 +309,13 @@ msgstr ""
"A versão instalada do pacote <em>%h</em> não é compatível, é necessária a %s " "A versão instalada do pacote <em>%h</em> não é compatível, é necessária a %s "
"enquanto a %s está instalada." "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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" msgstr ""
"O pacote <em>%h</em> não se encontra disponível em nenhum dos repositórios " "O pacote <em>%h</em> não se encontra disponível em nenhum dos repositórios "
"configurados." "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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -291,66 +323,84 @@ msgstr ""
"A versão do pacote <em>%h</em> do repositório não é compatível, é necessária " "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." "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…" msgid "Type to filter…"
msgstr "Escreva para filtrar…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Incapaz de executar o comando <em>opkg %s</em>: %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" msgid "Unable to read %s: %s"
msgstr "Incapaz de ler %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" msgid "Unable to save %s: %s"
msgstr "Incapaz de gravar %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…" msgid "Update lists…"
msgstr "Atualizar listas…" 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" msgid "Updates"
msgstr "Atualizações" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" msgid "Upgrade…"
msgstr "Atualizar…" 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…" msgid "Upload Package…"
msgstr "Enviar pacote…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "Versão" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" msgid "Version incompatible"
msgstr "Versão incompatível" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "A aguardar que o comando <em>opkg %h</em> termine…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "desconhecido" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB comprimidos" msgstr "~%1024mB comprimidos"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB instalados" msgstr "~%1024mB instalados"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Substituir ficheiros de outro(s) pacote(s)"

View file

@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.1-dev\n" "X-Generator: Weblate 4.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" msgid "Actions"
msgstr "Ações" 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 ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies" msgid "Automatically remove unused dependencies"
msgstr "Remover automaticamente dependentes não-utilizados" 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" msgid "Available"
msgstr "Disponível" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -39,61 +43,75 @@ msgstr ""
"configurações em outros arquivos podem ser alterados, mas normalmente não " "configurações em outros arquivos podem ser alterados, mas normalmente não "
"são preservados por <em>sysupgrade</em>." "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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" 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" msgid "Clear"
msgstr "Limpar" 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…" msgid "Configure opkg…"
msgstr "Configurar o 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" msgid "Dependencies"
msgstr "Dependentes" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Descrição" 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>" msgid "Details for package <em>%h</em>"
msgstr "Detalhes para o pacote <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" msgid "Dismiss"
msgstr "Dispensar" 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 ""
#: 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" msgid "Displaying %d-%d of %d"
msgstr "Exibindo %d-%d de %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" msgid "Download and install package"
msgstr "Baixe e instale o pacote" 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" msgid "Errors"
msgstr "Erros" 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" msgid "Executing package manager"
msgstr "Executando o gerenciador de pacotes" 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" msgid "Filter"
msgstr "Filtro" 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" msgid "Free space"
msgstr "Espaço livre" msgstr "Espaço livre"
@ -101,20 +119,28 @@ msgstr "Espaço livre"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Conceder acesso ao gerenciador opkg" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Instalar" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" msgid "Installed"
msgstr "Instalado" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -122,155 +148,160 @@ msgstr ""
"Instalar pacotes de fontes não confiáveis é um risco de segurança em " "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>?" "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…" msgid "Install…"
msgstr "Instalar…" 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…" msgid "Loading configuration data…"
msgstr "Carregando dados de configuração…" 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…" msgid "Loading package information…"
msgstr "Carregando informações de pacotes…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" msgid "Manually install package"
msgstr "Instalar o pacote manualmente" 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" msgid "Needs upgrade"
msgstr "Precisa de atualização" 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" msgid "Next page"
msgstr "Próxima página" 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" msgid "No information available"
msgstr "Nenhuma informação disponível" 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" msgid "No packages"
msgstr "Sem pacotes" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Não há pacotes que correspondam a \"<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" msgid "Not available"
msgstr "Não disponível" 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" msgid "Not installed"
msgstr "Não instalado" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "Configuração do OPKG" msgstr "Configuração do OPKG"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
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
msgid "Package name" msgid "Package name"
msgstr "Nome do Pacote" 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…" msgid "Package name or URL…"
msgstr "Nome do pacote ou 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" msgid "Previous page"
msgstr "Página anterior" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "Realmente tentar instalar <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" msgid "Remove"
msgstr "Remover" 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>" msgid "Remove package <em>%h</em>"
msgstr "Remover o pacote <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…" msgid "Remove…"
msgstr "Remover…" msgstr "Remover…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" msgstr ""
"Requer aprox. %.1024mB de tamanho para que o(s) pacote(s) %d sejam " "Requer aprox. %1024mB de tamanho para que o(s) pacote(s) %d sejam instalados."
"instalados."
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "Requer a versão%h %h, instalada %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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" msgstr ""
"Requer o pacote <em>%h</em> para suprir uma dependência que não está " "Requer o pacote <em>%h</em> para suprir uma dependência que não está "
"disponível em nenhum repositório." "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" msgid "Requires update to %h %h"
msgstr "Requer uma atualização para %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" msgid "Reset"
msgstr "Limpar" 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" msgid "SHA256"
msgstr "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" msgid "Save"
msgstr "Salvar" 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…" msgid "Saving configuration data…"
msgstr "Salvando os dados de configuração…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Tamanho" 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)" msgid "Size (.ipk)"
msgstr "Tamanho (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "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 ""
#: 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>." 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>." 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -278,13 +309,13 @@ msgstr ""
"A versão instalada do pacote <em>%h</em> não é compatível, requer o %s " "A versão instalada do pacote <em>%h</em> não é compatível, requer o %s "
"enquanto o %s estiver instalado." "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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" msgstr ""
"O pacote <em>%h</em> não está disponível em nenhum repositório previamente " "O pacote <em>%h</em> não está disponível em nenhum repositório previamente "
"configurado." "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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -292,66 +323,84 @@ msgstr ""
"A versão do repositório do pacote <em>%h</em> não é compatível, requer o %s " "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." "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…" msgid "Type to filter…"
msgstr "Digite para filtrar…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Impossível executar o comando <em>opkg %s</em> : %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" msgid "Unable to read %s: %s"
msgstr "Impossível ler %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" msgid "Unable to save %s: %s"
msgstr "Impossível salvar %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…" msgid "Update lists…"
msgstr "Atualizar listas…" 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" msgid "Updates"
msgstr "Atualizações" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" msgid "Upgrade…"
msgstr "Atualizar…" 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…" msgid "Upload Package…"
msgstr "Enviar Pacote…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "Versão" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" msgid "Version incompatible"
msgstr "Versão incompatível" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Aguardando a conclusão do comando <em>opkg %h</em>…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "desconhecido" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB comprimido" msgstr "~%1024mB comprimido"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB instalado" msgstr "~%1024mB instalado"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Sobrescrever arquivos de outro(s) pacote(s)"

View file

@ -13,19 +13,23 @@ msgstr ""
"20)) ? 1 : 2;\n" "20)) ? 1 : 2;\n"
"X-Generator: Weblate 4.10.1\n" "X-Generator: Weblate 4.10.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" msgid "Actions"
msgstr "Acțiuni" 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 ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies" msgid "Automatically remove unused dependencies"
msgstr "Eliminați automat dependențele neutilizate" 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" msgid "Available"
msgstr "Disponibile" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -38,61 +42,75 @@ msgstr ""
"Configurația din celelalte fișiere poate fi modificată, dar de obicei nu " "Configurația din celelalte fișiere poate fi modificată, dar de obicei nu "
"este păstrată de <em>sysupgrade</em>." "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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Anulare" 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" msgid "Clear"
msgstr "Curățați" msgstr "Curățați"
#: 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…" msgid "Configure opkg…"
msgstr "Configurați opkg…" 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" msgid "Dependencies"
msgstr "Dependențe" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Descriere" 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>" msgid "Details for package <em>%h</em>"
msgstr "Detalii pentru pachetul <em>%h</em>" 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" msgid "Dismiss"
msgstr "Închideți" msgstr "Închideți"
#: 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" msgid "Displaying %d-%d of %d"
msgstr "Se afișează %d-%d din %d" 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" msgid "Download and install package"
msgstr "Descărcați și instalați pachetul" msgstr "Descărcați și instalați pachetul"
#: 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" msgid "Errors"
msgstr "Erori" 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" msgid "Executing package manager"
msgstr "Executarea managerului de pachete" 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" msgid "Filter"
msgstr "Filtru" 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" msgid "Free space"
msgstr "Spațiu liber" msgstr "Spațiu liber"
@ -100,20 +118,28 @@ msgstr "Spațiu liber"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Acordați acces la gestionarea opkg" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Instalați" msgstr "Instalați"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" msgid "Installed"
msgstr "Instalat" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -121,153 +147,159 @@ msgstr ""
"Instalarea de pachete din surse nesigure reprezintă un potențial risc de " "Instalarea de pachete din surse nesigure reprezintă un potențial risc de "
"securitate! Încercați cu adevărat să instalați <em>%h</em>?" "securitate! Încercați cu adevărat să instalați <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…" msgid "Install…"
msgstr "Instalați…" msgstr "Instalați…"
#: 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…" msgid "Loading configuration data…"
msgstr "Se încarcă datele de configurare…" 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…" msgid "Loading package information…"
msgstr "Se încarcă informațiile despre pachet…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" msgid "Manually install package"
msgstr "Instalați manual 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" msgid "Needs upgrade"
msgstr "Necesită actualizare" 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" msgid "Next page"
msgstr "Pagina următoare" 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" msgid "No information available"
msgstr "Nu există informații disponibile" msgstr "Nu există informații 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" msgid "No packages"
msgstr "Fără pachete" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Nu există pachete care să corespundă cu \"<strong>%h</strong>\"." msgstr "Nu există pachete care să corespundă cu \"<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" msgid "Not available"
msgstr "Nu este disponibil" msgstr "Nu este disponibil"
#: 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" msgid "Not installed"
msgstr "Nu este instalat" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "Configurația OPKG" msgstr "Configurația OPKG"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr "Suprascrierea fișierelor din alt(e) pachet(e)"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" msgid "Package name"
msgstr "Numele pachetului" msgstr "Numele pachetului"
#: 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…" msgid "Package name or URL…"
msgstr "Numele pachetului sau URL-ul…" 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" msgid "Previous page"
msgstr "Pagina anterioară" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "Sigur doriți să instalați <em>%h</em>?" 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" msgid "Remove"
msgstr "Eliminați" 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>" msgid "Remove package <em>%h</em>"
msgstr "Eliminați pachetul <em>%h</em>" 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…" msgid "Remove…"
msgstr "Eliminați…" msgstr "Eliminați…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "Este necesar aproximativ %.1024mB pentru instalarea a %d pachete(e)." 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "Necesită versiunea %h %h, instalată %h" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" msgstr ""
"Pachetul de dependență necesar <em>%h</em> nu este disponibil în niciun " "Pachetul de dependență necesar <em>%h</em> nu este disponibil în niciun "
"depozit." "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" msgid "Requires update to %h %h"
msgstr "Necesită actualizare la %h %h" 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" msgid "Reset"
msgstr "Resetați" 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" msgid "SHA256"
msgstr "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" msgid "Save"
msgstr "Salvați" msgstr "Salvaț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…" msgid "Saving configuration data…"
msgstr "Se salvează datele de configurare…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Mărime" 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)" msgid "Size (.ipk)"
msgstr "Dimensiune (.ipk)" 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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "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 ""
#: 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "Comanda <em>opkg %h</em> a eșuat cu codul <code>%d</code>." 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -275,11 +307,11 @@ msgstr ""
"Versiunea instalată a pachetului <em>%h</em> nu este compatibilă, necesită " "Versiunea instalată a pachetului <em>%h</em> nu este compatibilă, necesită "
"%s cât timp este instalat %s." "%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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "Pachetul <em>%h</em> nu este disponibil în niciun depozit configurat." 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -287,66 +319,84 @@ msgstr ""
"Versiunea din depozit a pachetului <em>%h</em> nu este compatibilă, este " "Versiunea din depozit a pachetului <em>%h</em> nu este compatibilă, este "
"necesar %s dar numai %s este disponibil." "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…" msgid "Type to filter…"
msgstr "Tastați pentru a filtra…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Nu se poate executa comanda <em>opkg %s</em>: %s" 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" msgid "Unable to read %s: %s"
msgstr "Nu se poate citi %s: %s" 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" msgid "Unable to save %s: %s"
msgstr "Nu se poate salva %s: %s" 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…" msgid "Update lists…"
msgstr "Actualizați listele…" 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" msgid "Updates"
msgstr "Actualizări" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" msgid "Upgrade…"
msgstr "Faceți upgrade…" 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…" msgid "Upload Package…"
msgstr "Încărcați pachetul…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "Versiunea" msgstr "Versiunea"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" msgid "Version incompatible"
msgstr "Versiune incompatibilă" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Se așteaptă finalizarea comenzii <em>opkg %h</em>…" msgstr "Se așteaptă finalizarea comenzii <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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "necunoscut" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB comprimat" 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:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB instalat" msgstr "~%1024mB instalat"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Suprascrierea fișierelor din alt(e) pachet(e)"

View file

@ -16,19 +16,23 @@ msgstr ""
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" "интерфейс, все проверялось в графическом режиме, совместим с другими 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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -41,61 +45,75 @@ msgstr ""
"Конфигурация в других файлах может производится, но такие настройки могут не " "Конфигурация в других файлах может производится, но такие настройки могут не "
"сохраняться утилитой <em>sysupgrade</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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" 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" msgid "Dismiss"
msgstr "Закрыть" 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" 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" msgid "Download and install package"
msgstr "Загрузить и установить пакет" 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" 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" 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" 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" msgid "Free space"
msgstr "Свободное место" msgstr "Свободное место"
@ -103,20 +121,28 @@ msgstr "Свободное место"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Предоставить доступ к управлению opkg" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Установить" msgstr "Установить"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -124,154 +150,160 @@ msgstr ""
"Установка пакетов из недоверенных источников может привести к угрозе " "Установка пакетов из недоверенных источников может привести к угрозе "
"безопасности! Вы действительно хотите установить <em>%h</em>?" "безопасности! Вы действительно хотите установить <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…" 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…" 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…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" 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" 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" 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" 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" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Нет пакетов соответствующих запросу «<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" 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" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "Настройка OPKG" msgstr "Настройка OPKG"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr "Переписать файлы для других пакетов"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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…" 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" 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>?" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "Удалить пакет <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…" msgid "Remove…"
msgstr "Удалить…" msgstr "Удалить…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" 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" msgid "Requires update to %h %h"
msgstr "Требуется обновить до %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" 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" msgid "SHA256"
msgstr "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" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "Размер (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -279,12 +311,12 @@ msgstr ""
"Установленная версия пакета <em>%h</em> не совместима. Требуется версия %s, " "Установленная версия пакета <em>%h</em> не совместима. Требуется версия %s, "
"а установлена %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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" msgstr ""
"Пакет <em>%h</em> не доступен ни в одном из сконфигурированных репозиториев." "Пакет <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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -292,69 +324,87 @@ msgstr ""
"Версия пакета <em>%h</em>, доступная в репозитории, несовместима. Требуется " "Версия пакета <em>%h</em>, доступная в репозитории, несовместима. Требуется "
"%s, но доступна только %s." "%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…" 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" 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" 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" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mБ сжато" 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:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mБ установлено" msgstr "~%1024mБ установлено"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Переписать файлы для других пакетов"
#~ msgid "" #~ msgid ""
#~ "Require version %h %h,\n" #~ "Require version %h %h,\n"

View file

@ -12,19 +12,23 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 4.11-dev\n" "X-Generator: Weblate 4.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" msgid "Actions"
msgstr "Akcie" 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 ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies" msgid "Automatically remove unused dependencies"
msgstr "Automatické odstránenie nepoužitých závislostí" 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" msgid "Available"
msgstr "Dostupný" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -36,61 +40,75 @@ msgstr ""
"vlastné položky úložiska <em>customfeeds.conf</em>. Konfigurácia v ostatných " "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á." "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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Zrušiť" 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" msgid "Clear"
msgstr "Vymazať" 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…" msgid "Configure opkg…"
msgstr "Konfigurovať 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" msgid "Dependencies"
msgstr "Závislosti" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Popis" 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>" msgid "Details for package <em>%h</em>"
msgstr "Podrobnosti balíka <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" msgid "Dismiss"
msgstr "Zahodiť" msgstr "Zahodiť"
#: 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" msgid "Displaying %d-%d of %d"
msgstr "Zobrazených %d-%d z %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" msgid "Download and install package"
msgstr "Prevziať a nainštalovať balík" 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" msgid "Errors"
msgstr "Chyby" 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" msgid "Executing package manager"
msgstr "Spúšťanie správcu 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" msgid "Filter"
msgstr "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" msgid "Free space"
msgstr "Voľné miesto" msgstr "Voľné miesto"
@ -98,20 +116,28 @@ msgstr "Voľné miesto"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Poskytnite prístup k správe opkg" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Inštalovať" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -119,154 +145,160 @@ msgstr ""
"Inštalácia balíkov z nedôveryhodných zdrojov predstavuje potenciálne " "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>?" "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…" msgid "Install…"
msgstr "Inštalovať…" 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…" msgid "Loading configuration data…"
msgstr "Načítavajú sa konfiguračné údaje …" 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…" msgid "Loading package information…"
msgstr "Načítavajú sa informácie o balíku …" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" msgid "Manually install package"
msgstr "Manuálna inštalácia balíka" 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" msgid "Needs upgrade"
msgstr "Vyžaduje aktualizáciu" 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" msgid "Next page"
msgstr "Ďalšia strana" 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" msgid "No information available"
msgstr "Nie sú dostupné žiadne informácie" 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" msgid "No packages"
msgstr "Žiadne balíčky" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "\"<strong>%h</strong>\" nezodpovedajú žiadne balíky." 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" msgid "Not available"
msgstr "Nie je k dispozícií" 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" msgid "Not installed"
msgstr "Nie je nainštalovaný" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "Konfigurácia OPKG" msgstr "Konfigurácia OPKG"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
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
msgid "Package name" msgid "Package name"
msgstr "Názov balíka" 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…" msgid "Package name or URL…"
msgstr "Názov balíka alebo URL adresa…" 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" msgid "Previous page"
msgstr "Predošlá strana" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "Naozaj sa snažíte nainštalovať <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" msgid "Remove"
msgstr "Odstrániť" 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>" msgid "Remove package <em>%h</em>"
msgstr "Odstrániť balík <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…" msgid "Remove…"
msgstr "Odstrániť…" msgstr "Odstrániť…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "Požaduje sa verzia %h %h, nainštalovaná je %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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" msgstr ""
"Požadovaný balík závislostí <em>%h</em> nie je k dispozícii v žiadnom " "Požadovaný balík závislostí <em>%h</em> nie je k dispozícii v žiadnom "
"úložisku." "ú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" msgid "Requires update to %h %h"
msgstr "Požaduje sa aktualizácia na %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" msgid "Reset"
msgstr "Obnoviť" 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" msgid "SHA256"
msgstr "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" msgid "Save"
msgstr "Uložiť" 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…" msgid "Saving configuration data…"
msgstr "Ukladajú sa konfiguračné údaje …" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Veľkosť" 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)" msgid "Size (.ipk)"
msgstr "Veľkosť (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "Softvér" 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 ""
#: 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>." 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>." 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -274,11 +306,11 @@ msgstr ""
"Nainštalovaná verzia balíka <em>%h</em> nie je kompatibilná, požaduje sa %s, " "Nainštalovaná verzia balíka <em>%h</em> nie je kompatibilná, požaduje sa %s, "
"zatiaľ čo nainštalovaná je %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." 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." 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -286,66 +318,84 @@ msgstr ""
"Verzia archívu balíka <em>%h</em> nie je kompatibilná, požaduje sa %s, ale " "Verzia archívu balíka <em>%h</em> nie je kompatibilná, požaduje sa %s, ale "
"je k dispozícii je iba %s." "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…" msgid "Type to filter…"
msgstr "Reťazec na filtrovanie…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Nedá sa vykonať príkaz <em>opkg %s</em>: %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" msgid "Unable to read %s: %s"
msgstr "Nedá sa prečítať %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" msgid "Unable to save %s: %s"
msgstr "Nedá sa uložiť %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…" msgid "Update lists…"
msgstr "Aktualizovať zoznamy…" 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" msgid "Updates"
msgstr "Aktualizácie" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" msgid "Upgrade…"
msgstr "Inovovať…" 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…" msgid "Upload Package…"
msgstr "Odovzdať 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "Verzia" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" msgid "Version incompatible"
msgstr "Verzia je nekompatibilná" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Čaká sa na dokončenie príkazu <em>opkg %h</em>…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "neznámy" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB komprimované" msgstr "~%1024mB komprimované"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB nainštalovaných" msgstr "~%1024mB nainštalovaných"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Prepísať súbory z iného balíka(kov)"

View file

@ -12,19 +12,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-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" msgid "Actions"
msgstr "Åtgärder" 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" msgid "Automatically remove unused dependencies"
msgstr "Ta automatiskt bort oanvända beroenden" 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" msgid "Available"
msgstr "Tillgänglig" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -36,61 +40,75 @@ msgstr ""
"conf</em> för anpassade filförrådsposter. Konfigurationen i de andra filerna " "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>." "kan vara ändrade, men är oftast inte reserverad av <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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Avbryt" 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" msgid "Clear"
msgstr "Rensa" msgstr "Rensa"
#: 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…" msgid "Configure opkg…"
msgstr "Ställ in opkg…" 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" msgid "Dependencies"
msgstr "Beroenden" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Beskrivning" 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>" msgid "Details for package <em>%h</em>"
msgstr "Detaljer för paketet <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" msgid "Dismiss"
msgstr "Avfärda" msgstr "Avfärda"
#: 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" msgid "Displaying %d-%d of %d"
msgstr "Visar %d-%d av %d" msgstr "Visar %d-%d av %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" msgid "Download and install package"
msgstr "Ladda ner och installera paket" msgstr "Ladda ner och installera paket"
#: 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" msgid "Errors"
msgstr "Felen" 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" msgid "Executing package manager"
msgstr "Kör pakethanteraren" 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" msgid "Filter"
msgstr "Filtrera" 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" msgid "Free space"
msgstr "Fritt utrymme" msgstr "Fritt utrymme"
@ -98,20 +116,28 @@ msgstr "Fritt utrymme"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Tillåt åtkomst till hantering av opkg" msgstr "Tillåt åtkomst till hantering av opkg"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Installera" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" msgid "Installed"
msgstr "Installerad" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -119,151 +145,157 @@ msgstr ""
"Att installera paket från o-pålitliga källor är en potentiell säkerhetsrisk! " "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>?" "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…" msgid "Install…"
msgstr "Installera…" 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…" msgid "Loading configuration data…"
msgstr "Laddar konfigurationssidan…" 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…" msgid "Loading package information…"
msgstr "Laddar paketinformationen…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" msgid "Manually install package"
msgstr "Installera paket manuellt" 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" msgid "Needs upgrade"
msgstr "Behöver uppgradering" 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" msgid "Next page"
msgstr "Nästa sida" 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" msgid "No information available"
msgstr "Ingen information tillgänglig" msgstr "Ingen information tillgänglig"
#: 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" msgid "No packages"
msgstr "Inga 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Inga paket matchar \"<strong>%h</strong>\"." msgstr "Inga paket matchar \"<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" msgid "Not available"
msgstr "Ej 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" msgid "Not installed"
msgstr "Inte installerad" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "Konfiguration av OPKG" msgstr "Konfiguration av OPKG"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr "Skriv över filer från andra paket(en)"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" msgid "Package name"
msgstr "Paketnamn" msgstr "Paketnamn"
#: 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…" msgid "Package name or URL…"
msgstr "Paketnamn eller URL…" 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" msgid "Previous page"
msgstr "Föregående sida" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "Vill du verkligen utföra installationen av <em>%h</em>?" 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" msgid "Remove"
msgstr "Ta bort" 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>" msgid "Remove package <em>%h</em>"
msgstr "Ta bort paketet <em>%h</em>" 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…" msgid "Remove…"
msgstr "Ta bort…" msgstr "Ta bort…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." 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." 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "Kräv version %h %h, installerade %h" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "Paketet som behövs <em>%h</em> är inte tillgängligt i något filförråd." 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" msgid "Requires update to %h %h"
msgstr "Kräver uppdatering till %h %h" 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" msgid "Reset"
msgstr "Återställ" 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" msgid "SHA256"
msgstr "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" msgid "Save"
msgstr "Spara" msgstr "Spara"
#: 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…" msgid "Saving configuration data…"
msgstr "Sparar konfigurationsdata…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Storlek" 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)" msgid "Size (.ipk)"
msgstr "Storlek (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "Mjukvara" msgstr "Mjukvara"
#: 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>." 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>." msgstr "<em>opkg %h</em>-kommandot misslyckades med koden <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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -271,12 +303,12 @@ msgstr ""
"Den installerade versionen av paketet <em>%h</em>är inte kompatibel, kräver " "Den installerade versionen av paketet <em>%h</em>är inte kompatibel, kräver "
"%s medans %s är installerat." "%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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" msgstr ""
"Paketet <em>%h</em> är inte tillgängligt i något konfigurerat filförråd." "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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -284,66 +316,84 @@ msgstr ""
"Filförrådets version av paketet <em>%h</em> är inte tillgängligt, kräver %s, " "Filförrådets version av paketet <em>%h</em> är inte tillgängligt, kräver %s, "
"men endast %s är tillgänglig." "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…" msgid "Type to filter…"
msgstr "Skriv för att filtrera…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Kunde inte köra <em>opkg %</em>-kommandot: %s" 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" msgid "Unable to read %s: %s"
msgstr "Kunde inte läsa %s: %s" 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" msgid "Unable to save %s: %s"
msgstr "Kunde inte spara %s: %s" msgstr "Kunde inte spara %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…" msgid "Update lists…"
msgstr "Uppdatera listor…" msgstr "Uppdatera listor…"
#: 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" msgid "Updates"
msgstr "Uppdateringar" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" msgid "Upgrade…"
msgstr "Uppgradera…" 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…" msgid "Upload Package…"
msgstr "Ladda upp paket…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" msgid "Version incompatible"
msgstr "Versionen passar inte" msgstr "Versionen passar inte"
#: 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Väntar på att <em>opkg %h</em>-kommandot ska slutföras…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "okänd" msgstr "okänd"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB komprimerat" msgstr "~%1024mB komprimerat"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB installerat" msgstr "~%1024mB installerat"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Skriv över filer från andra paket(en)"

View file

@ -1,19 +1,23 @@
msgid "" msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8" 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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "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>." "changed but is usually not preserved by <em>sysupgrade</em>."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" msgid "Details for package <em>%h</em>"
msgstr "" 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" msgid "Dismiss"
msgstr "" 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" msgid "Displaying %d-%d of %d"
msgstr "" 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" msgid "Download and install package"
msgstr "" 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" 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" 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" 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" msgid "Free space"
msgstr "" msgstr ""
@ -83,245 +101,274 @@ msgstr ""
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
msgstr "" 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…" 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…" 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…" 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" msgid "MD5"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" 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" 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" 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" 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" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "" 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" 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" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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…" msgid "Package name or URL…"
msgstr "" 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" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "" 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…" msgid "Remove…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" 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" msgid "Requires update to %h %h"
msgstr "" 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" 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" msgid "SHA256"
msgstr "" 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" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "" 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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
msgstr "" 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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
msgstr "" 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…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "" 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" msgid "Unable to read %s: %s"
msgstr "" 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" msgid "Unable to save %s: %s"
msgstr "" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "" msgstr ""

View file

@ -13,19 +13,23 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.7-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" msgid "Actions"
msgstr "Eylemler" 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 ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies" msgid "Automatically remove unused dependencies"
msgstr "Kullanılmayan bağımlılıkları otomatik olarak kaldır" 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" msgid "Available"
msgstr "Kullanılabilir" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -38,61 +42,75 @@ msgstr ""
"dosyalardaki yapılandırmalar değiştirilebilir ancak genellikle " "dosyalardaki yapılandırmalar değiştirilebilir ancak genellikle "
"<em>sysupgrade</em> tarafından korunmaz." "<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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "İptal" 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" msgid "Clear"
msgstr "Temizle" 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…" msgid "Configure opkg…"
msgstr "opkg'yi yapılandır…" 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" msgid "Dependencies"
msgstr "Bağımlılıklar" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Açıklama" 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>" msgid "Details for package <em>%h</em>"
msgstr "Paket detayları <em>%h</em>" 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" msgid "Dismiss"
msgstr "Kapat" msgstr "Kapat"
#: 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" msgid "Displaying %d-%d of %d"
msgstr "Görüntülenen %d-%d toplam %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" msgid "Download and install package"
msgstr "Paket indir ve yükle" 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" msgid "Errors"
msgstr "Hatalar" 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" msgid "Executing package manager"
msgstr "Paket yöneticisi çalıştırılıyor" 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" msgid "Filter"
msgstr "Filtre" 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" msgid "Free space"
msgstr "Boş alan" msgstr "Boş alan"
@ -100,20 +118,28 @@ msgstr "Boş alan"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Opkg yönetimine erişim izni verin" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Yükle" msgstr "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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" msgid "Installed"
msgstr "Yüklenenler" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -121,152 +147,158 @@ msgstr ""
"Güvenilmeyen kaynaklardan paket yüklemek, güvenlik riski oluşturabilir! Bu " "Güvenilmeyen kaynaklardan paket yüklemek, güvenlik riski oluşturabilir! Bu "
"paketi yüklemeyi gerçekten denemek istiyor musunuz <em>% h </em>?" "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…" msgid "Install…"
msgstr "Yükle…" msgstr "Yükle…"
#: 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…" msgid "Loading configuration data…"
msgstr "Yapılandırma verisi yükleniyor…" 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…" msgid "Loading package information…"
msgstr "Paket bilgisi yükleniyor…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" msgid "Manually install package"
msgstr "Elle paket yükle" 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" msgid "Needs upgrade"
msgstr "Yükseltme gerekli" 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" msgid "Next page"
msgstr "Sonraki sayfa" 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" msgid "No information available"
msgstr "Bilgi bulunmamaktadır" msgstr "Bilgi bulunmamaktadır"
#: 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" msgid "No packages"
msgstr "Paket(ler) yok" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Eşleşen paket yok \"<strong>%h</strong>\"." msgstr "Eşleşen paket yok \"<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" msgid "Not available"
msgstr "Mevcut değil" 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" msgid "Not installed"
msgstr "Yüklenmedi" 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" msgid "OK"
msgstr "Tamam" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "OPKG Yapılandırması" msgstr "OPKG Yapılandırması"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr "Diğer paket(ler)in dosyalarının üzerine yaz"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" msgid "Package name"
msgstr "Paket adı" 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…" msgid "Package name or URL…"
msgstr "Paket adı veya URL…" 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" msgid "Previous page"
msgstr "Önceki sayfa" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "Gerçekten yüklemeyi denemek istiyor musunuz <em>%h</em>?" 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" msgid "Remove"
msgstr "Kaldır" 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>" msgid "Remove package <em>%h</em>"
msgstr "Paketi kaldır <em>%h</em>" 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…" msgid "Remove…"
msgstr "Kaldır…" msgstr "Kaldır…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" msgstr ""
"%d paket(ler)ini yüklemek için yaklaşık %.1024mB boyutunda alan gerekli." "%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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "Gereken sürüm %h %h, yüklü olan %h" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "Gerekli olan bağımlılık paketi <em>%h</em> hiçbir depoda mevcut değil." 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" msgid "Requires update to %h %h"
msgstr "Şu sürüme güncellenmesi gerekiyor %h %h" 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" msgid "Reset"
msgstr "Sıfırla" 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" msgid "SHA256"
msgstr "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" msgid "Save"
msgstr "Kaydet" msgstr "Kaydet"
#: 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…" msgid "Saving configuration data…"
msgstr "Yapılandırma verisi kaydediliyor…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" msgid "Size"
msgstr "Boyut" 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)" msgid "Size (.ipk)"
msgstr "Boyut (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "Yazılım" 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 ""
#: 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "<em>opkg %h</em> komutu <code>%d</code> koduyla başarısız oldu." 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -274,11 +306,11 @@ msgstr ""
"Yüklü olan <em>%h</em> paketinin sürümü uyumlu değil. Gerekli olan %s iken, " "Yüklü olan <em>%h</em> paketinin sürümü uyumlu değil. Gerekli olan %s iken, "
"%s sürümü yüklü." "%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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "<em>%h</em> paketi yapılandırılmış depoların hiçbirinde mevcut değil." 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -286,66 +318,84 @@ msgstr ""
"<em>%h</em> paketinin depo bulunan sürümü uyumlu değil. Gerekli olan %s iken " "<em>%h</em> paketinin depo bulunan sürümü uyumlu değil. Gerekli olan %s iken "
"sadece %s sürümü mevcut." "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…" msgid "Type to filter…"
msgstr "Filtrelemek için yazın…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "<em>opkg %s</em> komutu çalıştırılamıyor: %s" 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" msgid "Unable to read %s: %s"
msgstr "Okunamıyor %s: %s" 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" msgid "Unable to save %s: %s"
msgstr "Kaydedilemiyor %s: %s" 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…" msgid "Update lists…"
msgstr "Listeyi güncelle…" 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" msgid "Updates"
msgstr "Güncellemeler" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" msgid "Upgrade…"
msgstr "Yükselt…" 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…" msgid "Upload Package…"
msgstr "Paket Yükle…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "Sürüm" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" msgid "Version incompatible"
msgstr "Sürüm uyumsuz" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "<em>opkg %h</em> komutunun tamamlanması bekleniyor…" msgstr "<em>opkg %h</em> komutunun tamamlanması bekleniyor…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" msgid "unknown"
msgstr "bilinmeyen" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB sıkıştırıldı" 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:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB yüklendi" msgstr "~%1024mB yüklendi"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Diğer paket(ler)in dosyalarının üzerine yaz"

View file

@ -13,19 +13,23 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.11-dev\n" "X-Generator: Weblate 4.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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -38,61 +42,75 @@ msgstr ""
"інших файлах може бути змінено, але вона зазвичай не зберігається при " "інших файлах може бути змінено, але вона зазвичай не зберігається при "
"<em>оновленні системи</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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" 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" msgid "Dismiss"
msgstr "Закрити" 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" 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" msgid "Download and install package"
msgstr "Завантажити та інсталювати пакети" 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" 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" 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" 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" msgid "Free space"
msgstr "Вільне місце" msgstr "Вільне місце"
@ -100,20 +118,28 @@ msgstr "Вільне місце"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "Надати доступ до керування opkg" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "Інсталювати" msgstr "Інсталювати"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -121,153 +147,159 @@ msgstr ""
"Інсталяція пакетів з ненадійних джерел є потенційною загрозою безпеці! " "Інсталяція пакетів з ненадійних джерел є потенційною загрозою безпеці! "
"Дійсно спробувати інсталювати <em>%h</em>?" "Дійсно спробувати інсталювати <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…" 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…" 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…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" 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" 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" 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" 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" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Немає пакетів, що відповідають \"<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" 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" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "Конфігурація OPKG" msgstr "Конфігурація OPKG"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr "Перезаписати файли з інших пакетів"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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…" 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" 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>?" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "Видалити пакет <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…" msgid "Remove…"
msgstr "Видалити…" msgstr "Видалити…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "Потрібно приблизно %.1024mB для інсталяції %d пакетів." 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" 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" msgid "Requires update to %h %h"
msgstr "Потрібно оновити до %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" 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" msgid "SHA256"
msgstr "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" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "Розмір (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
@ -275,12 +307,12 @@ msgstr ""
"Інстальована версія пакета <em>%h</em> несумісна, потрібно %s, а " "Інстальована версія пакета <em>%h</em> несумісна, потрібно %s, а "
"інстальовано %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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" msgstr ""
"Пакет <em>%h</em> не доступний ні в одному сконфігурованому репозиторії." "Пакет <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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -288,66 +320,84 @@ msgstr ""
"Версія пакету <em>%h</em> у репозиторії несумісна, потрібно %s, але доступна " "Версія пакету <em>%h</em> у репозиторії несумісна, потрібно %s, але доступна "
"лише %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…" 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" 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" 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" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB стиснуто" 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:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB інстальовано" msgstr "~%1024mB інстальовано"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "Перезаписати файли з інших пакетів"

View file

@ -10,19 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.14-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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -35,61 +39,75 @@ msgstr ""
"کنفیگریشن کو تبدیل کیا جا سکتا ہے لیکن عام طور پر <em>sysupgrade</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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" 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" msgid "Dismiss"
msgstr "مسترد کریں" 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" 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" msgid "Download and install package"
msgstr "پیکیج ڈاؤن لوڈ اور انسٹال کریں" 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" 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" 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" 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" msgid "Free space"
msgstr "خالی جگہ" msgstr "خالی جگہ"
@ -97,20 +115,28 @@ msgstr "خالی جگہ"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "opkg مینجمنٹ تک رسائی فراہم کریں" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "انسٹال کریں" msgstr "انسٹال کریں"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
@ -118,163 +144,169 @@ msgstr ""
"غیر بھروسہ مند ذرائع سے پیکجز انسٹال کرنا ایک ممکنہ سیکورٹی رسک ہے! واقعی " "غیر بھروسہ مند ذرائع سے پیکجز انسٹال کرنا ایک ممکنہ سیکورٹی رسک ہے! واقعی "
"انسٹال کرنے کی کوشش کریں <em>%h</em>؟" "انسٹال کرنے کی کوشش کریں <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…" 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…" 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…" 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
#, fuzzy #, fuzzy
msgid "MD5" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" 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" 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" 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" 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" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "\"<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" 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" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "OPKG کنفیگریشن" msgstr "OPKG کنفیگریشن"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr "دوسرے پیکجوں سے فائلوں کو اوور رائٹ کریں"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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…" 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" 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>?" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "پیکیج <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…" msgid "Remove…"
msgstr "الگ کرنا…" msgstr "الگ کرنا…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "لگ بھگ کی ضرورت ہے۔ انسٹال کرنے کے لیے %d پیکجز کے لیے %.1024mB سائز۔" 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "مطلوبہ انحصار پیکج <em>%h</em> کسی بھی ذخیرہ میں دستیاب نہیں ہے" 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" msgid "Requires update to %h %h"
msgstr "%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" 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
#, fuzzy #, fuzzy
msgid "SHA256" msgid "SHA256"
msgstr "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" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "سائز(.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
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: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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "پیکیج <em>%h</em> کسی بھی ترتیب شدہ ذخیرہ میں دستیاب نہیں ہے" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
@ -282,66 +314,84 @@ msgstr ""
"پیکیج <em>%h</em> کا ذخیرہ ورژن مطابقت نہیں رکھتا، %s کی ضرورت ہے لیکن صرف " "پیکیج <em>%h</em> کا ذخیرہ ورژن مطابقت نہیں رکھتا، %s کی ضرورت ہے لیکن صرف "
"%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…" 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" 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" 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" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "" msgstr ""
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "دوسرے پیکجوں سے فائلوں کو اوور رائٹ کریں"

View file

@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.11-dev\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" 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 ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies" 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" msgid "Available"
msgstr "Sẵn có" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "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>." "changed but is usually not preserved by <em>sysupgrade</em>."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" msgid "Cancel"
msgstr "Hủy bỏ" msgstr "Hủy bỏ"
#: 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" 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
#, fuzzy #, fuzzy
msgid "Configure opkg…" msgid "Configure opkg…"
msgstr "Cấu hình" msgstr "Cấu hình"
#: 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" msgid "Description"
msgstr "Mô tả" 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>" msgid "Details for package <em>%h</em>"
msgstr "" 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" msgid "Dismiss"
msgstr "" 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" msgid "Displaying %d-%d of %d"
msgstr "" 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" msgid "Download and install package"
msgstr "Tải và cài đặt gói" msgstr "Tải và cài đặt gói"
#: 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 #, fuzzy
msgid "Errors" msgid "Errors"
msgstr "Lỗi" 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" 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" msgid "Filter"
msgstr "Lọc" msgstr "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" msgid "Free space"
msgstr "" msgstr ""
@ -98,254 +116,283 @@ msgstr ""
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" 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:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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 #, fuzzy
msgid "Installed" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "Really attempt to install <em>%h</em>?"
msgstr "" 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 #, fuzzy
msgid "Install…" msgid "Install…"
msgstr "Cài đặt " msgstr "Cài đặt "
#: 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 #, fuzzy
msgid "Loading configuration data…" msgid "Loading configuration data…"
msgstr "Đi tới trang cấu hình thích hợp" msgstr "Đi tới trang cấu hình thích hợp"
#: 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…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
#, fuzzy #, fuzzy
msgid "Manually install package" msgid "Manually install package"
msgstr "Tải và cài đặt gói" msgstr "Tải và cài đặt gói"
#: 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" 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" 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" 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
#, fuzzy #, fuzzy
msgid "No packages" msgid "No packages"
msgstr "Tìm gói" msgstr "Tìm 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "" 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 #, fuzzy
msgid "Not available" msgid "Not available"
msgstr "(%s available)" msgstr "(%s available)"
#: 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 #, fuzzy
msgid "Not installed" msgid "Not installed"
msgstr "Cài đặt " msgstr "Cài đặ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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
#, fuzzy #, fuzzy
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "Cấu hình OPKG-" msgstr "Cấu hình OPKG-"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" msgid "Package name"
msgstr "Tên gói" msgstr "Tên gói"
#: 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 #, fuzzy
msgid "Package name or URL…" msgid "Package name or URL…"
msgstr "Tên gói" msgstr "Tên gói"
#: 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" 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>?" msgid "Really attempt to install <em>%h</em>?"
msgstr "" 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" msgid "Remove"
msgstr "Loại bỏ" msgstr "Loại bỏ"
#: 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>" msgid "Remove package <em>%h</em>"
msgstr "" 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…" msgid "Remove…"
msgstr "Loại bỏ…" msgstr "Loại bỏ…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" msgid "Require version %h %h, installed %h"
msgstr "" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "" 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" msgid "Requires update to %h %h"
msgstr "" 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" msgid "Reset"
msgstr "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" msgid "SHA256"
msgstr "" 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" msgid "Save"
msgstr "Lưu" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "" 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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" msgid "Software"
msgstr "Phần mềm" 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 ""
#: 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>." msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "" 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "while %s is installed."
msgstr "" 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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "but only %s is available."
msgstr "" 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…" 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" msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "" 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" msgid "Unable to read %s: %s"
msgstr "" 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" msgid "Unable to save %s: %s"
msgstr "" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" msgid "Version"
msgstr "Phiên bản" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "" msgstr ""
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "" msgstr ""

View file

@ -16,19 +16,23 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.6-dev\n" "X-Generator: Weblate 4.6-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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@ -39,61 +43,75 @@ msgstr ""
"置,<em>customfeeds.conf</em> 用于自定义仓库。其他配置文件的变更在<em>系统升" "置,<em>customfeeds.conf</em> 用于自定义仓库。其他配置文件的变更在<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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" 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" msgid "Dismiss"
msgstr "关闭" 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" 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" msgid "Download and install package"
msgstr "下载并安装软件包" 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" 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" 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" 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" msgid "Free space"
msgstr "空闲空间" msgstr "空闲空间"
@ -101,248 +119,280 @@ msgstr "空闲空间"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "授予访问 opkg 管理的权限" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "安装" msgstr "安装"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "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:272 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…" 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…" 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…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" 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" 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" 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" 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" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "没有匹配“<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" 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" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "OPKG 配置" msgstr "OPKG 配置"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr "覆盖其他软件包中的文件"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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…" 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" 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>?" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "移除软件包 <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…" msgid "Remove…"
msgstr "移除…" msgstr "移除…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "需要大约 %.1024mB 空间来安装 %d 个软件包。" 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "依赖的软件包 <em>%h</em> 在所有仓库都未提供。" 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" msgid "Requires update to %h %h"
msgstr "需要更新到 %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" 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" msgid "SHA256"
msgstr "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" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "大小(.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "软件包 <em>%h</em> 在所有已配置的仓库中都不存在。" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "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…" 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" 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" 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" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB 已压缩" 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:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB 已安装" msgstr "~%1024mB 已安装"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "覆盖其他软件包中的文件"
#~ msgid "" #~ msgid ""
#~ "Require version %h %h,\n" #~ "Require version %h %h,\n"

View file

@ -12,83 +12,102 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.7-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" 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" 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" 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 "" msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. " "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 " "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 " "custom repository entries. The configuration in the other files may be "
"changed but is usually not preserved by <em>sysupgrade</em>." "changed but is usually not preserved by <em>sysupgrade</em>."
msgstr "" msgstr ""
"下面列出了 <em>opkg</em> 使用的各種組態檔;<em>opkg.conf</em> 用於全域設定,<em>customfeeds.conf</" "下面列出了 <em>opkg</em> 使用的各種組態檔;<em>opkg.conf</em> 用於全域設定,"
"em> 則用於自訂儲存庫項目。其他組態檔的變更可能在 <em>系統升級</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:800
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel" 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" 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…" 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" 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:750
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description" 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>" 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" msgid "Dismiss"
msgstr "關閉" 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" 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" msgid "Download and install package"
msgstr "下載並安裝套件包" 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" 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" 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" 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" msgid "Free space"
msgstr "剩餘空間" msgstr "剩餘空間"
@ -96,245 +115,277 @@ msgstr "剩餘空間"
msgid "Grant access to opkg management" msgid "Grant access to opkg management"
msgstr "授予存取 opkg 管理的權限" 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:1194
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721 msgid "Hide all translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959 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" msgid "Install"
msgstr "安裝" msgstr "安裝"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494 msgid "Install suggested translation packages as well"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055 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" 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:830
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid "" msgid ""
"Installing packages from untrusted sources is a potential security risk! " "Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?" "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:272 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…" 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…" 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…" 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" msgid "MD5"
msgstr "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:840
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package" 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" 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" 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" 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" 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>\"." msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "沒有與 \"<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" 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" 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" 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:856
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration" msgid "OPKG Configuration"
msgstr "OPKG 設定" msgstr "OPKG 設定"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Overwrite files from other package(s)"
msgstr "覆蓋其他套件包的檔案"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
msgid "Package name" 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…" msgid "Package name or URL…"
msgstr "套件包名稱或網址…" 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" 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>?" 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" 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>" msgid "Remove package <em>%h</em>"
msgstr "移除套件 <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…" msgid "Remove…"
msgstr "移除…" msgstr "移除…"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
msgid "Require approx. %.1024mB size for %d package(s) to install." msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "約需 %.1024mB 的空間來安裝 %d 個套件包。" 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:517
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h" 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 "" msgid ""
"Required dependency package <em>%h</em> is not available in any repository." "Required dependency package <em>%h</em> is not available in any repository."
msgstr "依賴的套件 <em>%h</em> 不存在於任何的儲存庫。" 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" msgid "Requires update to %h %h"
msgstr "需要更新至 %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" 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" msgid "SHA256"
msgstr "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" 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…" 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:758
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size" 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)" msgid "Size (.ipk)"
msgstr "大小 (.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 #: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software" 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 ""
#: 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>." 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 "" msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s " "The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed." "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." msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "套件 <em>%h</em> 在所有已設定的儲存庫中不可用。" 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 "" msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s " "The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available." "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…" 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" 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" 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" 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…" 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" 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:265
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…" 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…" 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:757
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version" 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:519
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible" 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…" 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:1190
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831 msgctxt "Display translation packages"
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024 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" 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:671
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
msgid "~%.1024mB compressed" msgid "~%1024mB compressed"
msgstr "~%.1024mB 已壓縮" 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:669
#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
msgid "~%.1024mB installed" msgid "~%1024mB installed"
msgstr "~%.1024mB 已安裝" msgstr "~%1024mB 已安裝"
#~ msgid "Overwrite files from other package(s)"
#~ msgstr "覆蓋其他套件包的檔案"