summaryrefslogtreecommitdiffhomepage
path: root/applications
diff options
context:
space:
mode:
Diffstat (limited to 'applications')
-rw-r--r--applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js256
-rw-r--r--applications/luci-app-opkg/po/ar/opkg.po254
-rw-r--r--applications/luci-app-opkg/po/bg/opkg.po260
-rw-r--r--applications/luci-app-opkg/po/bn_BD/opkg.po251
-rw-r--r--applications/luci-app-opkg/po/ca/opkg.po251
-rw-r--r--applications/luci-app-opkg/po/cs/opkg.po260
-rw-r--r--applications/luci-app-opkg/po/da/opkg.po263
-rw-r--r--applications/luci-app-opkg/po/de/opkg.po268
-rw-r--r--applications/luci-app-opkg/po/el/opkg.po251
-rw-r--r--applications/luci-app-opkg/po/en/opkg.po251
-rw-r--r--applications/luci-app-opkg/po/es/opkg.po260
-rw-r--r--applications/luci-app-opkg/po/fa/opkg.po251
-rw-r--r--applications/luci-app-opkg/po/fi/opkg.po260
-rw-r--r--applications/luci-app-opkg/po/fr/opkg.po260
-rw-r--r--applications/luci-app-opkg/po/he/opkg.po251
-rw-r--r--applications/luci-app-opkg/po/hi/opkg.po251
-rw-r--r--applications/luci-app-opkg/po/hu/opkg.po260
-rw-r--r--applications/luci-app-opkg/po/it/opkg.po260
-rw-r--r--applications/luci-app-opkg/po/ja/opkg.po273
-rw-r--r--applications/luci-app-opkg/po/ko/opkg.po251
-rw-r--r--applications/luci-app-opkg/po/mr/opkg.po251
-rw-r--r--applications/luci-app-opkg/po/ms/opkg.po251
-rw-r--r--applications/luci-app-opkg/po/nb_NO/opkg.po251
-rw-r--r--applications/luci-app-opkg/po/pl/opkg.po260
-rw-r--r--applications/luci-app-opkg/po/pt/opkg.po260
-rw-r--r--applications/luci-app-opkg/po/pt_BR/opkg.po261
-rw-r--r--applications/luci-app-opkg/po/ro/opkg.po260
-rw-r--r--applications/luci-app-opkg/po/ru/opkg.po260
-rw-r--r--applications/luci-app-opkg/po/sk/opkg.po260
-rw-r--r--applications/luci-app-opkg/po/sv/opkg.po260
-rw-r--r--applications/luci-app-opkg/po/templates/opkg.pot251
-rw-r--r--applications/luci-app-opkg/po/tr/opkg.po260
-rw-r--r--applications/luci-app-opkg/po/uk/opkg.po260
-rw-r--r--applications/luci-app-opkg/po/ur/opkg.po256
-rw-r--r--applications/luci-app-opkg/po/vi/opkg.po251
-rw-r--r--applications/luci-app-opkg/po/zh_Hans/opkg.po260
-rw-r--r--applications/luci-app-opkg/po/zh_Hant/opkg.po265
37 files changed, 5726 insertions, 3793 deletions
diff --git a/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js b/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js
index de725ea00a..f1be0eed36 100644
--- a/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js
+++ b/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js
@@ -98,6 +98,8 @@ var packages = {
installed: { providers: {}, pkgs: {} }
};
+var languages = ['en'];
+
var currentDisplayMode = 'available', currentDisplayRows = [];
function parseList(s, dest)
@@ -201,13 +203,24 @@ function display(pattern)
{
var src = packages[currentDisplayMode === 'updates' ? 'installed' : currentDisplayMode],
table = document.querySelector('#packages'),
- pager = document.querySelector('#pager');
+ pagers = document.querySelectorAll('.controls > .pager'),
+ i18n_filter = null;
currentDisplayRows.length = 0;
if (typeof(pattern) === 'string' && pattern.length > 0)
pattern = new RegExp(pattern.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), 'ig');
+ switch (document.querySelector('input[name="filter_i18n"]:checked').value) {
+ case 'all':
+ i18n_filter = /^luci-i18n-/;
+ break;
+
+ case 'lang':
+ i18n_filter = new RegExp('^luci-i18n-(base-.+|.+-(' + languages.join('|') + '))$');
+ break;
+ }
+
for (var name in src.pkgs) {
var pkg = src.pkgs[name],
desc = pkg.description || '',
@@ -226,6 +239,9 @@ function display(pattern)
!name.match(pattern) && !desc.match(pattern))
continue;
+ if (name.indexOf('luci-i18n-') === 0 && (!(i18n_filter instanceof RegExp) || !name.match(i18n_filter)))
+ continue;
+
var btn, ver;
if (currentDisplayMode === 'updates') {
@@ -294,8 +310,8 @@ function display(pattern)
currentDisplayRows.push([
name,
ver,
- pkg.size ? '%.1024mB'.format(pkg.size)
- : (altsize ? '~%.1024mB'.format(altsize) : '-'),
+ pkg.size ? '%1024mB'.format(pkg.size)
+ : (altsize ? '~%1024mB'.format(altsize) : '-'),
desc,
btn
]);
@@ -310,37 +326,44 @@ function display(pattern)
return 0;
});
- pager.parentNode.style.display = '';
- pager.setAttribute('data-offset', 100);
- handlePage({ target: pager.querySelector('.prev') });
+ for (var i = 0; i < pagers.length; i++) {
+ pagers[i].parentNode.style.display = '';
+ pagers[i].setAttribute('data-offset', 100);
+
+ if (i == 0)
+ handlePage({ target: pagers[i].querySelector('.prev') });
+ }
}
function handlePage(ev)
{
var filter = document.querySelector('input[name="filter"]'),
- pager = ev.target.parentNode,
- offset = +pager.getAttribute('data-offset'),
- next = ev.target.classList.contains('next');
+ offset = +ev.target.parentNode.getAttribute('data-offset'),
+ next = ev.target.classList.contains('next'),
+ pagers = document.querySelectorAll('.controls > .pager');
if ((next && (offset + 100) >= currentDisplayRows.length) ||
(!next && (offset < 100)))
return;
offset += next ? 100 : -100;
- pager.setAttribute('data-offset', offset);
- pager.querySelector('.text').firstChild.data = currentDisplayRows.length
- ? _('Displaying %d-%d of %d').format(1 + offset, Math.min(offset + 100, currentDisplayRows.length), currentDisplayRows.length)
- : _('No packages');
- if (offset < 100)
- pager.querySelector('.prev').setAttribute('disabled', 'disabled');
- else
- pager.querySelector('.prev').removeAttribute('disabled');
+ for (var i = 0; i < pagers.length; i++) {
+ pagers[i].setAttribute('data-offset', offset);
+ pagers[i].querySelector('.text').firstChild.data = currentDisplayRows.length
+ ? _('Displaying %d-%d of %d').format(1 + offset, Math.min(offset + 100, currentDisplayRows.length), currentDisplayRows.length)
+ : _('No packages');
- if ((offset + 100) >= currentDisplayRows.length)
- pager.querySelector('.next').setAttribute('disabled', 'disabled');
- else
- pager.querySelector('.next').removeAttribute('disabled');
+ if (offset < 100)
+ pagers[i].querySelector('.prev').setAttribute('disabled', 'disabled');
+ else
+ pagers[i].querySelector('.prev').removeAttribute('disabled');
+
+ if ((offset + 100) >= currentDisplayRows.length)
+ pagers[i].querySelector('.next').setAttribute('disabled', 'disabled');
+ else
+ pagers[i].querySelector('.next').removeAttribute('disabled');
+ }
var placeholder = _('No information available');
@@ -376,6 +399,11 @@ function handleMode(ev)
ev.preventDefault();
}
+function handleI18nFilter(ev)
+{
+ display(document.querySelector('input[name="filter"]').value);
+}
+
function orderOf(c)
{
if (c === '~')
@@ -515,7 +543,7 @@ function pkgStatus(pkg, vop, ver, info)
}
}
-function renderDependencyItem(dep, info)
+function renderDependencyItem(dep, info, flat)
{
var li = E('li'),
vop = dep.version ? dep.version[0] : null,
@@ -533,9 +561,9 @@ function renderDependencyItem(dep, info)
var text = pkg.name;
if (pkg.installsize)
- text += ' (%.1024mB)'.format(pkg.installsize);
+ text += ' (%1024mB)'.format(pkg.installsize);
else if (pkg.size)
- text += ' (~%.1024mB)'.format(pkg.size);
+ text += ' (~%1024mB)'.format(pkg.size);
li.appendChild(E('span', { 'data-tooltip': pkg.description },
[ text, ' ', pkgStatus(pkg, vop, ver, info) ]));
@@ -551,14 +579,16 @@ function renderDependencyItem(dep, info)
[ dep.name, ' ',
pkgStatus({ name: dep.name, missing: true }, vop, ver, info) ]));
- var subdeps = renderDependencies(depends, info);
- if (subdeps)
- li.appendChild(subdeps);
+ if (!flat) {
+ var subdeps = renderDependencies(depends, info);
+ if (subdeps)
+ li.appendChild(subdeps);
+ }
return li;
}
-function renderDependencies(depends, info)
+function renderDependencies(depends, info, flat)
{
var deps = depends || [],
items = [];
@@ -571,7 +601,7 @@ function renderDependencies(depends, info)
if (deps[i] === 'libc')
continue;
- if (deps[i].match(/^(.+)\s+\((<=|>=|<<|>>|<|>|=)(.+)\)$/)) {
+ if (deps[i].match(/^(.+)\s+\((<=|<|>|>=|=|<<|>>)(.+)\)$/)) {
dep = RegExp.$1.trim();
vop = RegExp.$2.trim();
ver = RegExp.$3.trim();
@@ -600,7 +630,7 @@ function renderDependencies(depends, info)
version: [vop, ver]
};
- items.push(renderDependencyItem(info.seen[dep], info));
+ items.push(renderDependencyItem(info.seen[dep], info, flat));
}
if (items.length)
@@ -636,9 +666,9 @@ function handleInstall(ev)
size;
if (pkg.installsize)
- size = _('~%.1024mB installed').format(pkg.installsize);
+ size = _('~%1024mB installed').format(pkg.installsize);
else if (pkg.size)
- size = _('~%.1024mB compressed').format(pkg.size);
+ size = _('~%1024mB compressed').format(pkg.size);
else
size = _('unknown');
@@ -653,7 +683,8 @@ function handleInstall(ev)
}
var totalsize = pkg.installsize || pkg.size || 0,
- totalpkgs = 1;
+ totalpkgs = 1,
+ suggestsize = 0;
if (depcache.install && depcache.install.length)
depcache.install.forEach(function(ipkg) {
@@ -661,9 +692,53 @@ function handleInstall(ev)
totalpkgs++;
});
- inst = E('p', {},
- _('Require approx. %.1024mB size for %d package(s) to install.')
- .format(totalsize, totalpkgs));
+ var luci_basename = pkg.name.match(/^luci-([^-]+)-(.+)$/),
+ i18n_packages = [],
+ i18n_tree;
+
+ if (luci_basename && (luci_basename[1] != 'i18n' || luci_basename[2].indexOf('base-') === 0)) {
+ var i18n_filter;
+
+ if (luci_basename[1] == 'i18n') {
+ var basenames = [];
+
+ for (var pkgname in packages.installed.pkgs) {
+ var m = pkgname.match(/^luci-([^-]+)-(.+)$/);
+
+ if (m && m[1] != 'i18n')
+ basenames.push(m[2]);
+ }
+
+ if (basenames.length)
+ i18n_filter = new RegExp('^luci-i18n-(' + basenames.join('|') + ')-' + pkg.name.replace(/^luci-i18n-base-/, '') + '$');
+ }
+ else {
+ i18n_filter = new RegExp('^luci-i18n-' + luci_basename[2] + '-(' + languages.join('|') + ')$');
+ }
+
+ if (i18n_filter) {
+ for (var pkgname in packages.available.pkgs)
+ if (pkgname != pkg.name && pkgname.match(i18n_filter))
+ i18n_packages.push(pkgname);
+
+ var i18ncache = {};
+
+ i18n_tree = renderDependencies(i18n_packages, i18ncache, true);
+
+ if (i18ncache.install && i18ncache.install.length) {
+ i18ncache.install.forEach(function(ipkg) {
+ suggestsize += ipkg.installsize || ipkg.size || 0;
+ });
+ }
+ }
+ }
+
+ inst = E('p', [
+ _('Require approx. %1024mB size for %d package(s) to install.')
+ .format(totalsize, totalpkgs),
+ ' ',
+ suggestsize ? _('Suggested translations require approx. %1024mB additional space.').format(suggestsize) : ''
+ ]);
if (deps) {
tree = E('li', '<strong>%s:</strong>'.format(_('Dependencies')));
@@ -682,15 +757,43 @@ function handleInstall(ev)
E('li', '<strong>%s:</strong> %h'.format(_('Version'), pkg.version)),
E('li', '<strong>%s:</strong> %h'.format(_('Size'), size)),
tree || '',
+ i18n_packages.length ? E('li', [
+ E('strong', [_('Suggested translations'), ':']),
+ i18n_tree
+ ]) : ''
]),
desc || '',
errs || inst || '',
+ E('div', [
+ E('hr'),
+ i18n_packages.length ? E('p', [
+ E('label', { 'class': 'cbi-checkbox' }, [
+ E('input', {
+ 'id': 'i18ninstall-cb',
+ 'type': 'checkbox',
+ 'name': 'i18ninstall',
+ 'data-packages': i18n_packages.join(' '),
+ 'disabled': isReadonlyView,
+ 'checked': true
+ }), ' ',
+ E('label', { 'for': 'i18ninstall-cb' }), ' ',
+ _('Install suggested translation packages as well')
+ ])
+ ]) : '',
+ E('p', [
+ E('label', { 'class': 'cbi-checkbox' }, [
+ E('input', {
+ 'id': 'overwrite-cb',
+ 'type': 'checkbox',
+ 'name': 'overwrite',
+ 'disabled': isReadonlyView
+ }), ' ',
+ E('label', { 'for': 'overwrite-cb' }), ' ',
+ _('Allow overwriting conflicting package files')
+ ])
+ ])
+ ]),
E('div', { 'class': 'right' }, [
- E('label', { 'class': 'cbi-checkbox', 'style': 'float:left' }, [
- E('input', { 'id': 'overwrite-cb', 'type': 'checkbox', 'name': 'overwrite', 'disabled': isReadonlyView }), ' ',
- E('label', { 'for': 'overwrite-cb' }), ' ',
- _('Overwrite files from other package(s)')
- ]),
E('div', {
'class': 'btn',
'click': ui.hideModal
@@ -824,9 +927,9 @@ function handleRemove(ev)
size, desc;
if (avail.installsize)
- size = _('~%.1024mB installed').format(avail.installsize);
+ size = _('~%1024mB installed').format(avail.installsize);
else if (avail.size)
- size = _('~%.1024mB compressed').format(avail.size);
+ size = _('~%1024mB compressed').format(avail.size);
else
size = _('unknown');
@@ -873,7 +976,8 @@ function handleOpkg(ev)
var cmd = ev.target.getAttribute('data-command'),
pkg = ev.target.getAttribute('data-package'),
rem = document.querySelector('input[name="autoremove"]'),
- owr = document.querySelector('input[name="overwrite"]');
+ owr = document.querySelector('input[name="overwrite"]'),
+ i18n = document.querySelector('input[name="i18ninstall"]');
var dlg = ui.showModal(_('Executing package manager'), [
E('p', { 'class': 'spinning' },
@@ -888,6 +992,9 @@ function handleOpkg(ev)
if (owr && owr.checked)
argv.push('--force-overwrite');
+ if (i18n && i18n.checked)
+ argv.push.apply(argv, i18n.getAttribute('data-packages').split(' '));
+
if (pkg != null)
argv.push(pkg);
@@ -985,11 +1092,15 @@ function updateLists(data)
.sort(function(a, b) { return a.mount > b.mount })[0] || { size: 0, free: 0 };
pg.firstElementChild.style.width = Math.floor(mount.size ? ((100 / mount.size) * mount.free) : 100) + '%';
- pg.setAttribute('title', '%s (%.1024mB)'.format(pg.firstElementChild.style.width, mount.free));
+ pg.setAttribute('title', '%s (%1024mB)'.format(pg.firstElementChild.style.width, mount.free));
parseList(data[1], packages.available);
parseList(data[2], packages.installed);
+ for (var pkgname in packages.installed.pkgs)
+ if (pkgname.indexOf('luci-i18n-base-') === 0)
+ languages.push(pkgname.substring(15));
+
display(document.querySelector('input[name="filter"]').value);
});
}
@@ -1047,6 +1158,51 @@ return view.extend({
E('button', { 'class': 'btn cbi-button-action', 'click': handleUpload, 'disabled': isReadonlyView }, [ _('Upload Package…') ]), ' ',
E('button', { 'class': 'btn cbi-button-neutral', 'click': handleConfig }, [ _('Configure opkg…') ])
])
+ ]),
+
+ E('div', {}, [
+ E('label', {}, _('Display LuCI translation packages') + ':'), ' ',
+ E('div', [
+ E('label', {
+ 'data-tooltip': _('Display base translation packages and translation packages for already installed languages only')
+ }, [
+ E('input', {
+ 'type': 'radio',
+ 'name': 'filter_i18n',
+ 'value': 'lang',
+ 'change': handleI18nFilter,
+ 'checked': true
+ }),
+ ' ',
+ _('filtered', 'Display translation packages')
+ ]),
+ ' \u00a0 ',
+ E('label', {
+ 'data-tooltip': _('Display all available translation packages')
+ }, [
+ E('input', {
+ 'type': 'radio',
+ 'name': 'filter_i18n',
+ 'value': 'all',
+ 'change': handleI18nFilter
+ }),
+ ' ',
+ _('all', 'Display translation packages')
+ ]),
+ ' \u00a0 ',
+ E('label', {
+ 'data-tooltip': _('Hide all translation packages')
+ }, [
+ E('input', {
+ 'type': 'radio',
+ 'name': 'filter_i18n',
+ 'value': 'none',
+ 'change': handleI18nFilter
+ }),
+ ' ',
+ _('none', 'Display translation packages')
+ ])
+ ])
])
]),
@@ -1057,7 +1213,7 @@ return view.extend({
]),
E('div', { 'class': 'controls', 'style': 'display:none' }, [
- E('div', { 'id': 'pager', 'class': 'center' }, [
+ E('div', { 'class': 'pager center' }, [
E('button', { 'class': 'btn cbi-button-neutral prev', 'aria-label': _('Previous page'), 'click': handlePage }, [ '«' ]),
E('div', { 'class': 'text' }, [ 'dummy' ]),
E('button', { 'class': 'btn cbi-button-neutral next', 'aria-label': _('Next page'), 'click': handlePage }, [ '»' ])
@@ -1072,6 +1228,14 @@ return view.extend({
E('th', { 'class': 'th col-10 left' }, [ _('Description') ]),
E('th', { 'class': 'th right cbi-section-actions' }, [ '\u00a0' ])
])
+ ]),
+
+ E('div', { 'class': 'controls', 'style': 'display:none' }, [
+ E('div', { 'class': 'pager center' }, [
+ E('button', { 'class': 'btn cbi-button-neutral prev', 'aria-label': _('Previous page'), 'click': handlePage }, [ '«' ]),
+ E('div', { 'class': 'text' }, [ 'dummy' ]),
+ E('button', { 'class': 'btn cbi-button-neutral next', 'aria-label': _('Next page'), 'click': handlePage }, [ '»' ])
+ ])
])
]);
diff --git a/applications/luci-app-opkg/po/ar/opkg.po b/applications/luci-app-opkg/po/ar/opkg.po
index a7f2ce3702..96587e1ddf 100644
--- a/applications/luci-app-opkg/po/ar/opkg.po
+++ b/applications/luci-app-opkg/po/ar/opkg.po
@@ -11,19 +11,23 @@ msgstr ""
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 4.5.1-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "إجراءات"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr "قم بإزالة التبعيات غير المستخدمة تلقائيًا"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "متاح"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -35,61 +39,75 @@ msgstr ""
"لإدخالات المستودع المخصصة. قد يتم تغيير التهيئة في الملفات الأخرى ولكن عادةً "
"لا يتم الاحتفاظ بها بواسطة <em> sysupgrade </em>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "إلغاء"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "إجلاء"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "تكوين opkg …"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "التبعيات"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "الوصف"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "تفاصيل الحزمة <em>%h </em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "إلغاء"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "عرض d% -%d من %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "قم بتنزيل الحزمة وتثبيتها"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "أخطاء"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "تنفيذ مدير الحزم"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "مصفي"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "مساحة فارغة"
@@ -97,20 +115,28 @@ msgstr "مساحة فارغة"
msgid "Grant access to opkg management"
msgstr "منح حقوق الدخول لإدارة opkg"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "تثبيت"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "مثبت"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -118,228 +144,252 @@ msgstr ""
"يعد تثبيت الحزم من مصادر غير موثوق بها مخاطرة أمنية محتملة! هل تحاول حقًا "
"تثبيت <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "تثبيت…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "تحميل بيانات التكوين …"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "جارٍ تحميل معلومات الحزمة …"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "قم بتثبيت الحزمة يدويًا"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "يحتاج إلى ترقية"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "الصفحة التالية"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "لا توجد معلومات متاحة"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "لا توجد حزم"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "لا توجد حزم تطابق \"<strong>%h </strong>\"."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "غير متوفر"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "غير مثبت"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "موافق"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "تكوين OPKG"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "الكتابة فوق الملفات من حزم أخرى"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "اسم الحزمة"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "اسم الحزمة أو URL …"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "الصفحة السابقة"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "هل تحاول حقًا تثبيت <em> %h </em>؟"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "نزع"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "قم بإزالة الحزمة <em>% h </em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "يزيل…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr "تتطلب تقريبا. ٪ .1024 ميغا بايت حجم لتثبيت %d حزمة (حزم)."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "إصدار مطلوب %h% h ، مثبت %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr "حزمة التبعية المطلوبة <em>%h </em> غير متوفرة في أي مستودع."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "يتطلب التحديث إلى %h% h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "إعادة ضبط"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "إحفض"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "جارٍ حفظ بيانات التكوين …"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "مقاس"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "الحجم (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "برنامج"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "فشل الأمر <em> opkg % h </em> برمز <code>%d </code>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr ""
"الإصدار المثبت من الحزمة <em>% h </em> غير متوافق ، يتطلب٪ s أثناء تثبيت %s."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "الحزمة <em>%h </em> ليست متاحة في أي مستودع تم تكوينه."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
msgstr ""
"إصدار المستودع للحزمة <em>%h </em> غير متوافق ، يتطلب %s ولكن يتوفر%s فقط."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "اكتب للتصفية …"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "تعذر تنفيذ أمر <em> opkg %s </em>:%s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "غير قادر على قراءة٪ s: %s%"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "غير قادر على حفظ٪ %s% : s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "تحديث القوائم …"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "التحديثات"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "تحديث النظام…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "تحميل الحزمة …"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "الإصدار"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "الإصدار غير متوافق"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "في انتظار إكمال أمر <em> opkg %h </em> …"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "غير معروف"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
msgstr "مضغوط ~٪ .1024 ميغا بايت"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
msgstr "تم تثبيت ~٪ .1024 ميغا بايت"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "الكتابة فوق الملفات من حزم أخرى"
diff --git a/applications/luci-app-opkg/po/bg/opkg.po b/applications/luci-app-opkg/po/bg/opkg.po
index e4e80e115c..445e921ec6 100644
--- a/applications/luci-app-opkg/po/bg/opkg.po
+++ b/applications/luci-app-opkg/po/bg/opkg.po
@@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.8.1-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "Действия"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr "Автоматично премахни неизползвани зависимости"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Налични"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -38,61 +42,75 @@ msgstr ""
"conf</em> за ваши записи на хранилища. Конфигурацията в други файлове може "
"да се промени, но обикновено не се запазва при <em>sysupgrade</em>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Отмени"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "Изчисти"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "Конфигуриране opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Зависимости"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Описание"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Детайли за пакет <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "Затвори"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "Показване %d-%d 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"
msgstr "Свали и инсталирай пакет"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "Грешки"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "Стартиране на пакетния мениджър"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Филтър"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Свободно място"
@@ -100,20 +118,28 @@ msgstr "Свободно място"
msgid "Grant access to opkg management"
msgstr "Разрешаване достъп до opkg менажиране"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Инсталирай"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Инсталирани"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -121,151 +147,157 @@ msgstr ""
"Инсталиране на пакети от недоверени източници е потенциален риск за "
"сигурността! Наистина ли да се опитам да инсталирам <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Инсталиране…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "Зареждане на конфигурации…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Зареждане пакетна информация…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Ръчно инсталирай пакет"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Нуждаещ се от ъпгрейд"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Следваща страница"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "Няма налична информация"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "Няма пакети"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Няма съвпадение за \"<strong>%h</strong>\"."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "Липсва"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "Не е инсталиран"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "ОК"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "OPKG Конфигурация"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "Заместване на файлове от други пакет(и)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Име на пакет"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Име на пакет или URL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "Предишна страница"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "Да се направи опит за инсталиране на <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Премахни"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "Премахни пакет <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Премахване…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "Нужни са прибл. %.1024mB място за инсталиране на %d пакет(а)."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Нужни са прибл. %1024mB място за инсталиране на %d пакет(а)."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "Изисква версия %h %h, инсталирана %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr "Необходим пакет <em>%h</em> не е наличен в никое хранилище."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Изисква се ъпдейт към %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Нулирай"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Запази"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Запазване на конфигурация…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Размер"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Размер (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Софтуер"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "Команда <em>opkg %h</em> се провали с код <code>%d</code>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -273,11 +305,11 @@ msgstr ""
"Инсталираната версия на пакета <em>%h</em> не е съвместима, изисква се %s "
"докато %s е инсталирана."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "Пакетът <em>%h</em> не е наличен в нито едно от хранилищата."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -285,66 +317,84 @@ msgstr ""
"Версията на пакета в хранилището <em>%h</em> не е свъместима, изисква се %s "
"но само %s е налична."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Пиши за филтър…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Не може да се изпълни <em>opkg %s</em> команда: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "Не може да се прочете %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "Не може да се запази %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Обновяване на списъци…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Обновления"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Надстройване…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Качване пакет…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Версия"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Несъвместима версия"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Изчкаване <em>opkg %h</em> команда да приключи…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "неизвестен"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB архивирани"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB архивирани"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB инсталирани"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB инсталирани"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Заместване на файлове от други пакет(и)"
diff --git a/applications/luci-app-opkg/po/bn_BD/opkg.po b/applications/luci-app-opkg/po/bn_BD/opkg.po
index 60c355ea92..7024972627 100644
--- a/applications/luci-app-opkg/po/bn_BD/opkg.po
+++ b/applications/luci-app-opkg/po/bn_BD/opkg.po
@@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "ক্রিয়া"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -34,61 +38,75 @@ msgid ""
"changed but is usually not preserved by <em>sysupgrade</em>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "বাতিল করুন"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "বর্ণনা"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "বাতিল"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "ছাঁকনি"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr ""
@@ -96,245 +114,274 @@ msgstr ""
msgid "Grant access to opkg management"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "সংরক্ষণ করুন"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "সংস্করণ"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "অজ্ঞাত"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
msgstr ""
diff --git a/applications/luci-app-opkg/po/ca/opkg.po b/applications/luci-app-opkg/po/ca/opkg.po
index e671574a66..832a554d5d 100644
--- a/applications/luci-app-opkg/po/ca/opkg.po
+++ b/applications/luci-app-opkg/po/ca/opkg.po
@@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "Accions"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Disponible"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -34,63 +38,77 @@ msgid ""
"changed but is usually not preserved by <em>sysupgrade</em>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Cancel•lar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
#, fuzzy
msgid "Configure opkg…"
msgstr "Configuració"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Descripció"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "Oblida-ho"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Descarrega i instal·la el paquet"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
#, fuzzy
msgid "Errors"
msgstr "Error"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Filtre"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Espai lliure"
@@ -98,258 +116,287 @@ msgstr "Espai lliure"
msgid "Grant access to opkg management"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Instal·la"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
#, fuzzy
msgid "Installed"
msgstr "Instal·la"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
#, fuzzy
msgid "Install…"
msgstr "Instal·la"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
#, fuzzy
msgid "Loading configuration data…"
msgstr "Vés a la pàgina de configuració"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
#, fuzzy
msgid "Manually install package"
msgstr "Descarrega i instal·la el paquet"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "No hi ha informació disponible"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
#, fuzzy
msgid "No packages"
msgstr "Cerca paquet"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
#, fuzzy
msgid "Not available"
msgstr "Total disponible"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
#, fuzzy
msgid "Not installed"
msgstr "No connectat"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "D'acord"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
#, fuzzy
msgid "OPKG Configuration"
msgstr "Configuració d&#39;OPKG"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Nom del paquet"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
#, fuzzy
msgid "Package name or URL…"
msgstr "Nom del paquet"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Treu"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Treu…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Restableix"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Desar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
#, fuzzy
msgid "Saving configuration data…"
msgstr "Configuració de dispositiu"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Mida"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Mida (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Programari"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
#, fuzzy
msgid "Update lists…"
msgstr "Actualitza les llistes"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
#, fuzzy
msgid "Updates"
msgstr "Actualitza les llistes"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Versió"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
#, fuzzy
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Esperant que s'acabi l'ordre..."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "desconegut"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
msgstr ""
diff --git a/applications/luci-app-opkg/po/cs/opkg.po b/applications/luci-app-opkg/po/cs/opkg.po
index 5d08c96baf..8592da1fe6 100644
--- a/applications/luci-app-opkg/po/cs/opkg.po
+++ b/applications/luci-app-opkg/po/cs/opkg.po
@@ -13,19 +13,23 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 4.9-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "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"
msgstr "Automatické odstranění nepoužívaných závislostí"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "K dispozici"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -37,61 +41,75 @@ msgstr ""
"<em>customfeeds.conf</em> pro vlastní položky úložiště. Konfigurace v jiných "
"souborech může být změněna, ale obvykle není spravována <em>sysupgrade</em>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Storno"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "Prázdný"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "Nakonfigurujte opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Závislosti"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Popis"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Podrobnosti o balíčku <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "Zahodit"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "Zobrazuji %d-%d z %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Stáhnout a nainstalovat balíček"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "Chyby"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "Spuštění správce balíčků"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Filtr"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Volné místo"
@@ -99,20 +117,28 @@ msgstr "Volné místo"
msgid "Grant access to opkg management"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Instalovat"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Instalací"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -120,152 +146,158 @@ msgstr ""
"Instalace balíků z nedůvěryhodných zdrojů je potenciálním bezpečnostním "
"rizikem! Opravdu se pokusíte nainstalovat <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Instalovat…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "Načítání konfiguračních dat…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Načítání informací o balíčku…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Ručně nainstalujte balíček"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Vyžaduje upgrade"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Další stránka"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "Údaje nejsou k dispozici"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "Žádné balíčky"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Žádné balíčky odpovídající \"<strong>%h</strong>\"."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "Není dostupný"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "Není instalován"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "OK"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "Konfigurace OPKG"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "Přepsat soubory z jiných balíčků"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Název balíčku"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Název balíčku nebo adresa URLL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "Předchozí stránka"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "Opravdu se pokusíte nainstalovat <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Odstranit"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "Odstraňte balíček <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Odstranit…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "Vyžadovat cca. %.1024mB velikost pro balíčky %d instalaci."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Vyžadovat cca. %1024mB velikost pro balíčky %d instalaci."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "Vyžadovat verzi %h %h, instalovaná %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
"Požadovaný balíček závislostí <em>%h</em> není dostupný v žádném úložišti."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Vyžaduje aktualizaci na %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Reset"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Uložit"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Ukládání konfiguračních dat…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Velikost"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Velikost (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Software"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "Příkaz <em>opkg %h</em> byl označen kódem <code>%d</code>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -273,11 +305,11 @@ msgstr ""
"Nainstalovaná verze balíku <em>%h</em> není kompatibilní, vyžaduje instalaci "
"%s, ale %s."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "Balík <em>%h</em> není k dispozici v žádném nakonfigurovaném úložišti."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -285,66 +317,84 @@ msgstr ""
"Verze balíčku <em>%h</em> není kompatibilní, vyžaduje %s, ale k dispozici je "
"pouze %s."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Začněte psát pro filtrování…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Aktualizovat seznamy…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Aktualizace"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Přechod na novější verzi…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Nahrát balíček…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Verze"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Verze nekompatibilní"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Čekání na dokončení příkazu <em>opkg %h</em> …"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "neznámý"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB komprimován"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB komprimován"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB nainstalován"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB nainstalován"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Přepsat soubory z jiných balíčků"
diff --git a/applications/luci-app-opkg/po/da/opkg.po b/applications/luci-app-opkg/po/da/opkg.po
index ed5bcee9c5..830cf4451d 100644
--- a/applications/luci-app-opkg/po/da/opkg.po
+++ b/applications/luci-app-opkg/po/da/opkg.po
@@ -10,19 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\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"
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"
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"
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 ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -35,61 +39,75 @@ msgstr ""
"Konfigurationen i de andre filer kan ændres, men den bevares normalt ikke af "
"<em>sysupgrade</em>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "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"
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…"
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"
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:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Beskrivelse"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "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"
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"
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"
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"
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"
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"
msgstr "Filter"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Ledig plads"
@@ -97,20 +115,28 @@ msgstr "Ledig plads"
msgid "Grant access to opkg management"
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:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Installer"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
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:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -118,152 +144,158 @@ msgstr ""
"Installation af pakker fra kilder, der ikke er tillid til, er en potentiel "
"sikkerhedsrisiko! Forsøger du virkelig at installere <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Installer…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "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…"
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"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Installer 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"
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"
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"
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"
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>\"."
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"
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"
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"
msgstr "OK"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "OPKG konfiguration"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "Overskriv filer fra andre pakke(r)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Pakkenavn"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Pakkenavn eller URL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "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>?"
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"
msgstr "Fjern"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "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…"
msgstr "Fjern…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "Kræver ca. %.1024mB størrelse for %d pakke(r) at installere."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Kræver ca. %1024mB størrelse for %d pakke(r) at installere."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "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 ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
"Påkrævet dependency pakke <em>%h</em> er ikke tilgængelig i noget repository."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Kræver opdatering til %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Nulstil"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "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…"
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:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Størrelse"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Størrelse (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "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>."
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 ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -271,11 +303,12 @@ msgstr ""
"Den installerede version af pakken <em>%h</em> er ikke kompatibel, kræver %s "
"mens %s er installeret."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
-msgstr "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 ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -283,66 +316,84 @@ msgstr ""
"repository version af pakken <em>%h</em> er ikke kompatibel, kræver %s, men "
"kun %s er tilgængelig."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Skriv for at filtrere…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Kan ikke udføre <em>opkg %s</em> kommando: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "Kan ikke læse %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "Kan ikke gemme %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Opdater lister…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Opdateringer"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "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…"
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:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Version"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Version inkompatibel"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "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:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "ukendt"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB komprimeret"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB komprimeret"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB installeret"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB installeret"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Overskriv filer fra andre pakke(r)"
diff --git a/applications/luci-app-opkg/po/de/opkg.po b/applications/luci-app-opkg/po/de/opkg.po
index 2aebf674fc..5255b8e753 100644
--- a/applications/luci-app-opkg/po/de/opkg.po
+++ b/applications/luci-app-opkg/po/de/opkg.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-05-26 17:57+0200\n"
-"PO-Revision-Date: 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"
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsopkg/de/>\n"
@@ -12,21 +12,25 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.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"
msgstr "Aktionen"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Überschreiben von Dateien bei Konflikten mit anderen Paketen erlauben"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr "Unbenutzte Abhängigkeiten automatisch entfernen"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Verfügbar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -40,61 +44,77 @@ msgstr ""
"Konfigurationsdateien kann zwar geändert werden, wird aber überlicherweise "
"bei <em>Systemupdates</em> zurückgesetzt."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Abbrechen"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "Zurücksetzen"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "Konfiguriere opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Abhängigkeiten"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Beschreibung"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Details für Paket <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "Verwerfen"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr "LuCI Sprachpakete anzeigen"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr "Alle verfügbaren Sprachpakete anzeigen"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Nur Basis-Sprachpakete und zusätzliche Sprachpakete für bereits installierte "
+"Sprachen anzeigen"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "Einträge %d-%d von %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Paket herunterladen und installieren"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "Fehler"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "Paketmanager ausführen"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Filter"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Freier Platz"
@@ -102,20 +122,28 @@ msgstr "Freier Platz"
msgid "Grant access to opkg management"
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:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr "Alle Sprachpakete ausblenden"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Installieren"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Vorgeschlagene Sprachpakete auch installieren"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Installiert"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -124,154 +152,162 @@ msgstr ""
"Sicherheitsrisiko! Soll wirklich versucht werden, <em>%h</em> zu "
"installieren?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Installieren…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "Lade Konfigurationsdaten…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Lade Paketinformationen…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Paket manuell installieren"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Aktualisierung benötigt"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Nächste Seite"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "Keine Informationen verfügbar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "Keine Pakete"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Keine auf \"<strong>%h</strong>\" zutreffenden Pakete."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "Nicht verfügbar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "Nicht installiert"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "OK"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "OPKG-Konfiguration"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "Überschreiben von Dateien anderer Pakete erlauben"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Paketname"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Paketname oder URL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "Vorige Seite"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "Soll wirklich versucht werden, <em>%h</em> zu installieren?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Entfernen"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "Paket <em>%h</em> entfernen"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Entfernen…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-"Benötige etwa %.1024mB Speicherplatz für die Installation von %d Pakete(n)."
+"Benötige etwa %1024mB Speicherplatz für die Installation von %d Pakete(n)."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "Erforderliche Version %h %h, installiert %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
"Benötigtes abhängiges Paket <em>%h</em> ist in keinem Repository verfügbar."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Benötigt Update auf Version %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Zurücksetzen"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Speichern"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Speichere Konfigurationsdaten…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Größe"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Größe (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Paketverwaltung"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Vorgeschlagene Sprachpakete"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+"Die vorgeschlagenen Sprachpakete benötigen etwa %1024mB zusätzlichen "
+"Speicherplatz."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr ""
"Das <em>opkg %h</em> Kommando wurde mit Fehlercode <code>%d</code> beendet."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -279,12 +315,12 @@ msgstr ""
"Die installierte Version von Paket <em>%h</em> ist nicht kompatibel, "
"benötige Version %s während %s installiert ist."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
"Das Paket <em>%h</em> ist in keinem konfiguriertem Repository verfügbar."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -292,69 +328,87 @@ msgstr ""
"Die Repository-Version von Paket <em>%h</em> ist nicht kompatibel, benötige "
"Version %s aber nur %s ist verfügbar."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Tippen zum Filtern…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Der Befehl <em>opkg %s</em> konnte nicht ausgeführt werden: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "Kann %s nicht lesen: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "%s kann nicht gespeichert werden: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Listen aktualisieren…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Aktualisierungen"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Aktualisieren…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Paket hochladen…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Version"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Version inkompatibel"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Warte auf das <em>opkg %h</em> Kommando…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "alle"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "gefiltert"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "keine"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "unbekannt"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "ca. %.1024mB komprimiert"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "ca. %1024mB komprimiert"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "ca. %1024mB installiert"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "ca. %.1024mB installiert"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Überschreiben von Dateien anderer Pakete erlauben"
#~ msgid ""
#~ "Require version %h %h,\n"
diff --git a/applications/luci-app-opkg/po/el/opkg.po b/applications/luci-app-opkg/po/el/opkg.po
index 383d069caa..daa09c336c 100644
--- a/applications/luci-app-opkg/po/el/opkg.po
+++ b/applications/luci-app-opkg/po/el/opkg.po
@@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "Ενέργειες"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Διαθέσιμο"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -34,63 +38,77 @@ msgid ""
"changed but is usually not preserved by <em>sysupgrade</em>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Ακύρωση"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
#, fuzzy
msgid "Configure opkg…"
msgstr "Παραμετροποίηση"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Περιγραφή"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Κατέβασμα και εγκατάσταση πακέτου"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
#, fuzzy
msgid "Errors"
msgstr "Σφάλμα"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Φίλτρο"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Ελεύθερος χώρος"
@@ -98,255 +116,284 @@ msgstr "Ελεύθερος χώρος"
msgid "Grant access to opkg management"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Εγκατάσταση"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
#, fuzzy
msgid "Installed"
msgstr "Εγκατάσταση"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
#, fuzzy
msgid "Install…"
msgstr "Εγκατάσταση"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
#, fuzzy
msgid "Loading configuration data…"
msgstr "Μετάβαση στη σχετική σελίδα ρυθμίσεων"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
#, fuzzy
msgid "Manually install package"
msgstr "Κατέβασμα και εγκατάσταση πακέτου"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "Δεν υπάρχουν πληροφορίες διαθέσιμες"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
#, fuzzy
msgid "No packages"
msgstr "Εύρεση πακέτου"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
#, fuzzy
msgid "Not available"
msgstr "Διαθέσιμο Συνολικά"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
#, fuzzy
msgid "Not installed"
msgstr "Εγκατάσταση"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "Εντάξει"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
#, fuzzy
msgid "OPKG Configuration"
msgstr "Παραμετροποίηση OPKG"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Όνομα πακέτου"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
#, fuzzy
msgid "Package name or URL…"
msgstr "Όνομα πακέτου"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Αφαίρεση"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Αφαίρεση…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Αρχικοποίηση"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Αποθήκευση"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
#, fuzzy
msgid "Saving configuration data…"
msgstr "Παραμετροποίηση Συσκευής"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Μέγεθος"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Λογισμικό"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Έκδοση"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
msgstr ""
diff --git a/applications/luci-app-opkg/po/en/opkg.po b/applications/luci-app-opkg/po/en/opkg.po
index b6d00f31ce..937b44c9d0 100644
--- a/applications/luci-app-opkg/po/en/opkg.po
+++ b/applications/luci-app-opkg/po/en/opkg.po
@@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\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"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -34,61 +38,75 @@ msgid ""
"changed but is usually not preserved by <em>sysupgrade</em>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr ""
@@ -96,245 +114,274 @@ msgstr ""
msgid "Grant access to opkg management"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
msgstr ""
diff --git a/applications/luci-app-opkg/po/es/opkg.po b/applications/luci-app-opkg/po/es/opkg.po
index 94f05db1c7..9e75b1ff19 100644
--- a/applications/luci-app-opkg/po/es/opkg.po
+++ b/applications/luci-app-opkg/po/es/opkg.po
@@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.7-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "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"
msgstr "Eliminar automáticamente las dependencias no utilizadas"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Disponible"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -39,61 +43,75 @@ msgstr ""
"repositorio personalizadas. La configuración en los otros archivos puede "
"cambiarse, pero por lo general no se conserva mediante <em>sysupgrade</em>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Cancelar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "Limpiar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "Configurar opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Dependencias"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Descripción"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Detalles para el paquete <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "Descartar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "Mostrando %d-%d de %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Descargar e instalar paquete"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "Errores"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "Ejecutando el gestor de paquetes"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Filtrar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Espacio libre"
@@ -101,20 +119,28 @@ msgstr "Espacio libre"
msgid "Grant access to opkg management"
msgstr "Conceder acceso a la gestión de opkg"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Instalar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Instalado"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -122,153 +148,159 @@ msgstr ""
"¡Instalar paquetes de fuentes no confiables es un riesgo potencial de "
"seguridad! ¿Realmente intentas instalar <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Instalar…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "Cargando datos de configuración…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Cargando información del paquete…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Instalar manualmente el paquete"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Necesita actualización"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Página siguiente"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "No hay información disponible"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "Sin paquetes"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Ningún paquete coincide con «<strong>%h</strong>»."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "No disponible"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "No instalado"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "Aceptar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "Configuración de OPKG"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "Sobrescribir archivos de otro/s paquete/s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Nombre del paquete"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Nombre de paquete o URL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "Página anterior"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "¿Confirma que quiere instalar <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Eliminar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "Eliminar paquete <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Desinstalar…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "Se necesitan aproximadamente %.1024mB para instalar %d paquete/s."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Se necesitan aproximadamente %1024mB para instalar %d paquete/s."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "Requiere la versión%h%h, instalado %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
"El paquete de dependencia requerido <em>%h</em> no está disponible en ningún "
"repositorio."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Requiere actualización a %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Restablecer"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Guardar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Guardando datos de configuración…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Tamaño"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Tamaño (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Software"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "El comando <em>opkg %h</em> falló con el código <code>%d</code>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -276,12 +308,12 @@ msgstr ""
"La versión instalada del paquete <em>%h</em> no es compatible; requiere %s, "
"mientras que %s está instalado."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
"El paquete <em>%h</em> no está disponible en ningún repositorio configurado."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -289,69 +321,87 @@ msgstr ""
"La versión de repositorio del paquete <em>%h</em> no es compatible, requiere "
"%s pero solo %s está disponible."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Escriba para filtrar…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "No se puede ejecutar el comando <em>opkg %s</em>: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "No se puede leer %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "No se puede guardar %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Actualizar listas…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Actualizaciones"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Actualizar…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Subir paquete…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Versión"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Versión incompatible"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Esperando a que el comando <em>opkg %h</em> finalice…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "desconocido"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB comprimido"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB comprimido"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB instalado"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB instalado"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Sobrescribir archivos de otro/s paquete/s"
#~ msgid ""
#~ "Require version %h %h,\n"
diff --git a/applications/luci-app-opkg/po/fa/opkg.po b/applications/luci-app-opkg/po/fa/opkg.po
index cfea938edf..88f0967b55 100644
--- a/applications/luci-app-opkg/po/fa/opkg.po
+++ b/applications/luci-app-opkg/po/fa/opkg.po
@@ -10,19 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\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"
msgstr "اقدام ها"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr "حذف اتوماتیک پیش نیازهای بدون استفاده"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "در دسترس"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -30,61 +34,75 @@ msgid ""
"changed but is usually not preserved by <em>sysupgrade</em>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr ""
@@ -92,245 +110,274 @@ msgstr ""
msgid "Grant access to opkg management"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
msgstr ""
diff --git a/applications/luci-app-opkg/po/fi/opkg.po b/applications/luci-app-opkg/po/fi/opkg.po
index 954bffda00..6416e250ec 100644
--- a/applications/luci-app-opkg/po/fi/opkg.po
+++ b/applications/luci-app-opkg/po/fi/opkg.po
@@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\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"
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"
msgstr "Poista tarpeettomat riippuvuudet automaattisesti"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Saatavilla"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -39,61 +43,75 @@ msgstr ""
"myös muita tiedostoja, mutta <em>sysupgrade</em> ei yleensä säilytä "
"muutoksia."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Peruuta"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "Tyhjennä"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "Määritä opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Riippuvuudet"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Kuvaus"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Paketin <em>%h</em> tiedot"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "Hylkää"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "Näytetään %d-%d / %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Lataa ja asenna paketti"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "Virheet"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "Suoritetaan paketinhallintaa"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Suodatin"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Vapaa levytila"
@@ -101,20 +119,28 @@ msgstr "Vapaa levytila"
msgid "Grant access to opkg management"
msgstr "Salli pääsy pakettiasennusten hallintaan (opkg)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Asenna"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Asennettu"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -122,153 +148,159 @@ msgstr ""
"Pakettien asentaminen epäluotettavista lähteistä on mahdollinen "
"tietoturvariski! Yritätkö todella asentaa <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Asenna…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "Ladataan asetustietoja…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Ladataan paketin tietoja…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Asenna paketti käsin"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Tarvitsee päivityksen"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Seuraava sivu"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "Ei tietoja saatavilla"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "Ei paketteja"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Ei paketteja, jotka vastaavat \"<strong>%h</strong>\"."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "Ei saatavilla"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "Ei asennettu"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "OK"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "OPKG-määritys"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "Korvaa tiedostoja muista paketeista"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Paketin nimi"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Paketin nimi tai URL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "Edellinen sivu"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "Yritätkö todella asentaa <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Poista"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "Poista paketti <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Poista…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "%d paketin asennus edellyttää noin %.1024mB tilaa."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "%d paketin asennus edellyttää noin %1024mB tilaa."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "Vaatii version %h %h, asennettu %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
"Vaadittava riippuvuuspaketti <em>%h</em> ei ole saatavilla mistään "
"ohjelmistolähteestä."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Edellyttää päivitystä kohteeseen %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Palauta"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Tallenna"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Tallennetaan määritystietoja…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Koko"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Koko (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Ohjelmisto"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "<em>opkg %h</em> -komento epäonnistui koodilla <code>%d</code>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -276,13 +308,13 @@ msgstr ""
"Paketin <em>%h</em> asennettu versio ei ole yhteensopiva, se vaatii %s, kun "
"%s on asennettu."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
"Paketti <em>%h</em> ei ole saatavilla mistään määritetystä "
"ohjelmistolähteestä."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -290,66 +322,84 @@ msgstr ""
"Ohjelmistolähteen versio paketista <em>%h</em> ei ole yhteensopiva, "
"vaaditaan %s mutta vain %s on saatavilla."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Kirjoita suodattaaksesi…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Komentoa <em>opkg %s</em> ei voida suorittaa: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "Ei voida lukea %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "Ei voida tallentaa %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Päivitä luettelot…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Päivitykset"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Päivitys…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Lähetä paketti…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Versio"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Versio ei ole yhteensopiva"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Odotetaan <em>opkg %h</em> -komennon valmistumista…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "tuntematon"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB pakattu"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB pakattu"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB asennettuna"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB asennettuna"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Korvaa tiedostoja muista paketeista"
diff --git a/applications/luci-app-opkg/po/fr/opkg.po b/applications/luci-app-opkg/po/fr/opkg.po
index 0d04903576..9686ad60a1 100644
--- a/applications/luci-app-opkg/po/fr/opkg.po
+++ b/applications/luci-app-opkg/po/fr/opkg.po
@@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.14-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "Actions"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr "Supprimez automatiquement les dépendances inutilisées"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Disponible"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -39,61 +43,75 @@ msgstr ""
"personnalisées. La configuration des autres fichiers peut être modifiée mais "
"n'est généralement pas conservée par <em>sysupgrade</em>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Annuler"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "Nettoyer"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "Configuration opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Dépendances"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Description"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Détails du package <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "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"
msgstr "Affichage de %d-%d sur %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Télécharge et installe le paquet"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "Erreurs"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "Exécution du gestionnaire de packages"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Filtrer"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Espace libre"
@@ -101,20 +119,28 @@ msgstr "Espace libre"
msgid "Grant access to opkg management"
msgstr "Permettre l'accès complet à la gestion des opkg"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Installer"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Installé"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -122,153 +148,159 @@ msgstr ""
"L'installation de packages à partir de sources non fiables est un risque "
"potentiel pour la sécurité! Voulez-vous vraiment installer <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Installer…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "Chargement des données de configuration…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Chargement des informations sur le package…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Installer manuellement le package"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Besoin de mise à niveau"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Page suivante"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "Aucune information disponible"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "Pas de paquet"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Aucun package correspondant à \"<strong>%h</strong>\"."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "Indisponible"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "Pas installé"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "OK"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "Configuration OPKG"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "Écraser les fichiers d'autres packages"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Nom du paquet"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Nom ou URL du package…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "Page précédente"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "Voulez-vous vraiment installer <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Désinstaller"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "Supprimer le package <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Désinstaller…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "Exiger env taille. %.1024mB pour %d paquet(s) à installer."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Exiger env taille. %1024mB pour %d paquet(s) à installer."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "Version requise %h %h, installée %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
"Le package de dépendance requis <em>%h</em> n'est disponible dans aucun "
"référentiel."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Nécessite une mise à jour vers %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Remise à zéro"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Sauvegarder"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Enregistrement des données de configuration…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Taille"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Taille (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Logiciels"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "La commande <em>opkg %h</em> a échoué avec le code <code>%d</code>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -276,12 +308,12 @@ msgstr ""
"La version installée du package <em>%h</em> n'est pas compatible, nécessite "
"%s pendant que %s est installé."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
"Le package <em>%h</em> n'est disponible dans aucun référentiel configuré."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -289,66 +321,84 @@ msgstr ""
"La version du référentiel du package <em>%h</em> n'est pas compatible, "
"nécessite %s mais seulement %s est disponible."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Type à filtrer…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Impossible d'exécuter la commande <em>opkg %s</em> : %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "Impossible de lire %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "Impossible d'enregistrer %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Mettre à jour les listes…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Mises à jour"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Mettre à jour…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Télécharger le package…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Version"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Version incompatible"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "En attente de la fin de la commande <em>opkg %h</em>…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "inconnu"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB compressé"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB compressé"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB installé"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB installé"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Écraser les fichiers d'autres packages"
diff --git a/applications/luci-app-opkg/po/he/opkg.po b/applications/luci-app-opkg/po/he/opkg.po
index bef6fe8039..c709cc2cf4 100644
--- a/applications/luci-app-opkg/po/he/opkg.po
+++ b/applications/luci-app-opkg/po/he/opkg.po
@@ -12,19 +12,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\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"
msgstr "פעולות"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr "להסיר אוטומטית תלויות שאינן בשימוש"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "זמין"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -32,61 +36,75 @@ msgid ""
"changed but is usually not preserved by <em>sysupgrade</em>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "ביטול"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "הגדר opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "תיאור"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "פרטים על החבילה <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "התעלמות"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "מוצגים %d-%d מתוך %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "הורדת והתקנת חבילות"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "שגיאות"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "מנהל החבילות מופעל"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "מסנן"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "מקום פנוי"
@@ -94,20 +112,28 @@ msgstr "מקום פנוי"
msgid "Grant access to opkg management"
msgstr "הענקת גישה לניהול opkg"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "התקנה"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "מותקנת"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -115,226 +141,247 @@ msgstr ""
"התקנת חבילות ממקורות מפוקפקים היא הזמנה לסיכון אבטחה! לנסות להתקין את "
"<em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "התקנה…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "נתוני התצורה נטענים…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "פרטי החבילה נטענים…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "התקנת חבילה באופן ידני"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "נדרש שדרוג"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "העמוד הבא"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "אין פרטים זמינים"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "אין חבילות"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "לא זמין"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "לא מותקן"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "תצורת OPKG"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "שם החבילה"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "שם החבילה או URL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "שומר נתוני תצורה…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "תוכנה"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "גרסה"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
msgstr ""
diff --git a/applications/luci-app-opkg/po/hi/opkg.po b/applications/luci-app-opkg/po/hi/opkg.po
index f6c123acb3..189b5f5037 100644
--- a/applications/luci-app-opkg/po/hi/opkg.po
+++ b/applications/luci-app-opkg/po/hi/opkg.po
@@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "चाल-चलन"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -34,61 +38,75 @@ msgid ""
"changed but is usually not preserved by <em>sysupgrade</em>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr ""
@@ -96,245 +114,274 @@ msgstr ""
msgid "Grant access to opkg management"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
msgstr ""
diff --git a/applications/luci-app-opkg/po/hu/opkg.po b/applications/luci-app-opkg/po/hu/opkg.po
index b1574f752e..94b205d830 100644
--- a/applications/luci-app-opkg/po/hu/opkg.po
+++ b/applications/luci-app-opkg/po/hu/opkg.po
@@ -12,19 +12,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.7-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "Műveletek"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr "Nem használt függőségek automatikus eltávolítása"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Elérhető"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -37,61 +41,75 @@ msgstr ""
"fájlokban lévő beállítások megváltoztathatók, de általában nem lesznek "
"megtartva <em>rendszerfrissítéskor</em>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Mégse"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "Törlés"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "Az opkg beállítása…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Függőségek"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Leírás"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "A(z) <em>%h</em> csomag részletei"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "Eltüntetés"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "%d-%d / %d megjelenítése"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Csomag letöltése és telepítése"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "Hibák"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "Csomagkezelő végrehajtása"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Szűrő"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Szabad hely"
@@ -99,20 +117,28 @@ msgstr "Szabad hely"
msgid "Grant access to opkg management"
msgstr "Hozzáférés megadása az opkg kezelőnek"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Telepítés"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Telepítve"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -121,153 +147,159 @@ msgstr ""
"biztonsági kockázattal járhat! Valóban megpróbálja telepíteni a(z) <em>%h</"
"em> csomagot?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Telepítés…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "Beállítási adatok betöltése…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Csomaginformációk betöltése…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Csomag kézi telepítése"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Frissítés szükséges"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Következő oldal"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "Nincs elérhető információ"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "Nincsenek csomagok"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Nincs „<strong>%h</strong>” mintára illeszkedő csomag."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "Nem érhető el"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "Nincs telepítve"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "Rendben"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "OPKG beállításai"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "Fájlok felülírása más csomagokból"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Csomagnév"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Csomagnév vagy URL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "Előző oldal"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "Valóban megpróbálja telepíteni a(z) <em>%h</em> csomagot?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Eltávolítás"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "A(z) <em>%h</em> csomag eltávolítása"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Eltávolítás…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "Nagyjából %.1024mB méret szükséges %d csomag telepítéséhez."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Nagyjából %1024mB méret szükséges %d csomag telepítéséhez."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "A(z) %h %h verziója szükséges, %h van telepítve"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
"A szükséges <em>%h</em> függőségcsomag nem érhető el egyik tárolóban sem."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "A(z) %h %h verzióra frissítést igényli"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Visszaállítás"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Mentés"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Beállítási adatok mentése…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Méret"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Méret (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Szoftver"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr ""
"Az <em>opkg %h</em> parancs meghiúsult a következő kóddal: <code>%d</code>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -275,11 +307,11 @@ msgstr ""
"A(z) <em>%h</em> csomag telepített verziója nem megfelelő. %s szükséges, "
"miközben %s van telepítve."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "A(z) <em>%h</em> csomag nem érhető el egyik beállított tárolóban sem."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -287,66 +319,84 @@ msgstr ""
"A(z) <em>%h</em> csomag tárolóban lévő verziója nem megfelelő. %s szükséges, "
"de csak %s érhető el."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Gépeljen a szűréshez…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Nem sikerült végrehajtani az <em>opkg %s</em> parancsot: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "Nem sikerült beolvasni: %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "Nem sikerült elmenteni: %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Listák frissítése…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Frissítések"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Frissítés…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Csomag feltöltése…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Verzió"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Nem megfelelő verzió"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Várakozás az <em>opkg %h</em> parancs befejeződésére…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "ismeretlen"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB tömörítve"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB tömörítve"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB telepítve"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB telepítve"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Fájlok felülírása más csomagokból"
diff --git a/applications/luci-app-opkg/po/it/opkg.po b/applications/luci-app-opkg/po/it/opkg.po
index aa2de828be..4c28fccab2 100644
--- a/applications/luci-app-opkg/po/it/opkg.po
+++ b/applications/luci-app-opkg/po/it/opkg.po
@@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "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"
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"
msgstr "Disponibile"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -39,61 +43,75 @@ msgstr ""
"configurazione negli altri file può essere cambiata ma solitamente non viene "
"conservata da <em>sysupgrade</em>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Annulla"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "Cancella"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "Configura opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Dipendenze"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Descrizione"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Dettagli per il pacchetto <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "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"
msgstr "Mostrando %d-%d di %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Scarica e installa pacchetto"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "Errori"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "Esecuzione del gestore pacchetti"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Filtro"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Spazio di archiviazione libero"
@@ -101,20 +119,28 @@ msgstr "Spazio di archiviazione libero"
msgid "Grant access to opkg management"
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:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Installa"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Installati"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -122,153 +148,159 @@ msgstr ""
"L'installazione di pacchetti da fonti non attendibili è un potenziale "
"rischio per la sicurezza! Tentare davvero di installare <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Installa…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "Caricamento dati di configurazione…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Caricamento delle informazioni sul pacchetto…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Installa pacchetto manualmente"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Richiede aggiornamento"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Pagina successiva"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "Nessuna informazione disponibile"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "Nessun pacchetto"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Nessun pacchetto corrispondente a \"<strong>%h</strong>\"."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "Non disponibile"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "Non installato"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "OK"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "Configurazione OPKG"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "Sovrascrivere i file da altri pacchetti"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Nome pacchetto"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Nome pacchetto o URL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "Pagina precedente"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "Tentare davvero di installare <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Rimuovi"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "Rimuovere il pacchetto <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Rimuovi…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "Richiede circa %.1024mB per installare %d pacchetto(i)."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Richiede circa %1024mB per installare %d pacchetto(i)."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "Richiede la versione %h %h, installata %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
"Il pacchetto di dipendenza <em>%h</em> non è disponibile in nessuna "
"repository."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Richiede l'aggiornamento a %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Reset"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Salva"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Salvataggio dati di configurazione…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Dimensione"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Dimensione (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Software"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "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 ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -276,12 +308,12 @@ msgstr ""
"La versione installata del pacchetto <em>%h</em> non è compatibile, richiede "
"%s mentre %s è installato."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
"Il pacchetto <em>%h</em> non è disponibile in nessuna repository configurata."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -289,66 +321,84 @@ msgstr ""
"La versione della repository del pacchetto <em>%h</em> non è compatibile, "
"richiede %s ma è disponibile solo %s."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Scrivi per filtrare…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Impossibile eseguire il comando <em>opkg %s</em>: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "Impossibile leggere %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "Impossibile salvare %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Aggiorna liste…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Aggiornamenti"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Aggiorna…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Carica Pacchetto…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Versione"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Versione incompatibile"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "In attesa del completamento del comando <em>opkg %h</em>…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "sconosciuto"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB compressi"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB compressi"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB installati"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB installati"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Sovrascrivere i file da altri pacchetti"
diff --git a/applications/luci-app-opkg/po/ja/opkg.po b/applications/luci-app-opkg/po/ja/opkg.po
index 9d8ca54b26..ca21e08c79 100644
--- a/applications/luci-app-opkg/po/ja/opkg.po
+++ b/applications/luci-app-opkg/po/ja/opkg.po
@@ -14,84 +14,103 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.3.1\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "操作"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr "使用されない依存パッケージを自動的に削除"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "利用可能"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
"custom repository entries. The configuration in the other files may be "
"changed but is usually not preserved by <em>sysupgrade</em>."
msgstr ""
-"以下は <em>opkg</em> によって使用される、様々な設定ファイルの一覧です。<em>opkg.conf</em> "
-"は全般的な設定に、<em>customfeeds.conf</em> はカスタム リポジトリの登録に使用します。これら以外のファイル内の設定を変更しても、"
-"通常は <em>sysupgrade</em> 時に保持されません。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+"以下は <em>opkg</em> によって使用される、様々な設定ファイルの一覧です。"
+"<em>opkg.conf</em> は全般的な設定に、<em>customfeeds.conf</em> はカスタム リ"
+"ポジトリの登録に使用します。これら以外のファイル内の設定を変更しても、通常は "
+"<em>sysupgrade</em> 時に保持されません。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "キャンセル"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "クリア"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "opkg設定…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "依存関係"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "説明"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "<em>%h</em> パッケージの詳細"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "閉じる"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "%d - %d 個を表示中(全 %d 個)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "パッケージのダウンロードとインストール"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "エラー"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "パッケージマネージャーが実行中"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "フィルター"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "空き容量"
@@ -99,20 +118,28 @@ msgstr "空き容量"
msgid "Grant access to opkg management"
msgstr "opkg 管理へのアクセスを許可"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "インストール"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "インストール済"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -120,151 +147,159 @@ msgstr ""
"信頼されていない提供元からのパッケージのインストールは、セキュリティ リスクを"
"伴います! <em>%h</em> のインストールを試行してもよろしいですか?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "インストール…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "設定データをロード中…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "パッケージ情報をロード中…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "パッケージの手動インストール"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "要アップグレード"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "次のページ"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "情報なし"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "パッケージなし"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "\"<strong>%h</strong>\" に一致するパッケージはありません。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "利用不可"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "未インストール"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "OK"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "OPKG 設定"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "他のパッケージからファイルを上書き"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "パッケージ名"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "パッケージ名または URL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "前のページ"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "本当に <em>%h</em> をインストールしますか?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "削除"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "<em>%h</em> パッケージを削除"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "削除…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "%d のインストールには約 %.1024mB の領域が必要です。"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "%d のインストールには約 %1024mB の領域が必要です。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "バージョン %h %h が必要です。%h がインストール済みです"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
-msgstr "必須の依存パッケージ <em>%h</em> は、設定されているリポジトリでは利用できません。"
+msgstr ""
+"必須の依存パッケージ <em>%h</em> は、設定されているリポジトリでは利用できませ"
+"ん。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "%h %h への更新が必要です"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "リセット"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "保存"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "設定データを保存中…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "サイズ"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "サイズ (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "ソフトウェア"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "<em>opkg %h</em> コマンドが失敗しました(コード <code>%d</code>)。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -272,11 +307,11 @@ msgstr ""
"<em>%h</em> のインストール済みバージョンは互換性がありません。 %s が、インス"
"トールされている %s には必要です。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "<em>%h</em> パッケージは、設定済みのリポジトリでは利用できません。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -284,69 +319,87 @@ msgstr ""
"<em>%h</em> パッケージのリポジトリ バージョンは互換性がありません。 %s が必要"
"ですが、 %s のみ利用可能です。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "検索…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "<em>opkg %s</em> コマンドを実行できません: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "%s を読み取れません: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "%s を保存できません: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "リストを更新…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "アップデート"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "アップグレード…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "パッケージをアップロード…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "バージョン"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "互換性の無いバージョン"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "<em>opkg %h</em> コマンドが完了するのを待っています…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "不明"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB(圧縮後)"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB(圧縮後)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB(インストール後)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB(インストール後)"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "他のパッケージからファイルを上書き"
#~ msgid ""
#~ "Require version %h %h,\n"
diff --git a/applications/luci-app-opkg/po/ko/opkg.po b/applications/luci-app-opkg/po/ko/opkg.po
index d824db0343..bd93c3e773 100644
--- a/applications/luci-app-opkg/po/ko/opkg.po
+++ b/applications/luci-app-opkg/po/ko/opkg.po
@@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
"X-Generator: Weblate 4.14-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "관리 도구"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "사용 가능"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -34,61 +38,75 @@ msgid ""
"changed but is usually not preserved by <em>sysupgrade</em>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "취소"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "opkg 설정…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "설명"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "닫기"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "패키지 다운로드 후 설치"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "패키지 관리자 실행 중"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "필터"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "여유 공간"
@@ -96,256 +114,285 @@ msgstr "여유 공간"
msgid "Grant access to opkg management"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "설치"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "설치됨"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
#, fuzzy
msgid "Install…"
msgstr "설치"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
#, fuzzy
msgid "Loading configuration data…"
msgstr "공통 설정"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
#, fuzzy
msgid "Manually install package"
msgstr "패키지 다운로드 후 설치"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "이용 가능한 정보가 없습니다"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
#, fuzzy
msgid "No packages"
msgstr "패키지 찾기"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
#, fuzzy
msgid "Not available"
msgstr "총 이용 가능한 양"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
#, fuzzy
msgid "Not installed"
msgstr "연결되지 않음"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
#, fuzzy
msgid "OPKG Configuration"
msgstr "OPKG-설정"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "패키지 이름"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
#, fuzzy
msgid "Package name or URL…"
msgstr "패키지 이름"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "제거"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "제거…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "초기화"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
#, fuzzy
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "저장"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
#, fuzzy
msgid "Saving configuration data…"
msgstr "장치 설정"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "크기"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "크기 (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "소프트웨어"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "버전"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
#, fuzzy
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "실행한 명령이 끝나기를 기다리는 중입니다..."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "알 수 없는"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
msgstr ""
diff --git a/applications/luci-app-opkg/po/mr/opkg.po b/applications/luci-app-opkg/po/mr/opkg.po
index 4c8d2d204e..f0505ceb51 100644
--- a/applications/luci-app-opkg/po/mr/opkg.po
+++ b/applications/luci-app-opkg/po/mr/opkg.po
@@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.3-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "क्रिया"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -34,61 +38,75 @@ msgid ""
"changed but is usually not preserved by <em>sysupgrade</em>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "रद्द करा"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "वर्णन"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "डिसमिस करा"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "फिल्टर करा"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr ""
@@ -96,245 +114,274 @@ msgstr ""
msgid "Grant access to opkg management"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
msgstr ""
diff --git a/applications/luci-app-opkg/po/ms/opkg.po b/applications/luci-app-opkg/po/ms/opkg.po
index 7a1672b96c..b20546fa35 100644
--- a/applications/luci-app-opkg/po/ms/opkg.po
+++ b/applications/luci-app-opkg/po/ms/opkg.po
@@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "Aksi"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Boleh didapati"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -34,63 +38,77 @@ msgid ""
"changed but is usually not preserved by <em>sysupgrade</em>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Batal"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
#, fuzzy
msgid "Configure opkg…"
msgstr "Konfigurasi"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Keterangan"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Turun dan memasang pakej"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
#, fuzzy
msgid "Errors"
msgstr "Kesalahan"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Penapis"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr ""
@@ -98,254 +116,283 @@ msgstr ""
msgid "Grant access to opkg management"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Memasang"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
#, fuzzy
msgid "Installed"
msgstr "Memasang"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
#, fuzzy
msgid "Install…"
msgstr "Memasang"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
#, fuzzy
msgid "Loading configuration data…"
msgstr "Menuju ke halaman konfigurasi yang relevan"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
#, fuzzy
msgid "Manually install package"
msgstr "Turun dan memasang pakej"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
#, fuzzy
msgid "No packages"
msgstr "Cari pakej"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
#, fuzzy
msgid "Not available"
msgstr "(%s sedia)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
#, fuzzy
msgid "Not installed"
msgstr "Memasang"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "Baik"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
#, fuzzy
msgid "OPKG Configuration"
msgstr "OPKG-Konfigurasi"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Nama pakej"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
#, fuzzy
msgid "Package name or URL…"
msgstr "Nama pakej"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Menghapuskan"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Menghapuskan…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Reset"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Simpan"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Saiz"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Perisian"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Versi"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
msgstr ""
diff --git a/applications/luci-app-opkg/po/nb_NO/opkg.po b/applications/luci-app-opkg/po/nb_NO/opkg.po
index 51214a3698..657b7b776d 100644
--- a/applications/luci-app-opkg/po/nb_NO/opkg.po
+++ b/applications/luci-app-opkg/po/nb_NO/opkg.po
@@ -10,19 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\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"
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"
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"
msgstr "Tilgjengelig"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -30,63 +34,77 @@ msgid ""
"changed but is usually not preserved by <em>sysupgrade</em>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Avbryt"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "Tøm"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
#, fuzzy
msgid "Configure opkg…"
msgstr "Sett opp opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Avhengigheter"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Beskrivelse"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Detaljer for pakken <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "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"
msgstr "Last ned og installer pakken"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
#, fuzzy
msgid "Errors"
msgstr "Feil"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Filter"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Ledig plass"
@@ -94,252 +112,281 @@ msgstr "Ledig plass"
msgid "Grant access to opkg management"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Installer"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
#, fuzzy
msgid "Installed"
msgstr "Installer"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Installer…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "Laster inn oppsettsdata…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Last inn pakkeinfo …"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
#, fuzzy
msgid "Manually install package"
msgstr "Last ned og installer pakken"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Neste side"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "Ingen informasjon tilgjengelig"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
#, fuzzy
msgid "No packages"
msgstr "Finn pakke"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
#, fuzzy
msgid "Not available"
msgstr "Totalt Tilgjengelig"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
#, fuzzy
msgid "Not installed"
msgstr "Ikke tilkoblet"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "OK"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
#, fuzzy
msgid "OPKG Configuration"
msgstr "<abbr title=\"Open PacKaGe Management\">OPKG</abbr>-Konfigurasjon"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Pakkenavn"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Pakkenavn eller nettadresse…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Fjern"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Avinstaller…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Nullstill"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Lagre"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Lagrer oppsettsdata…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Størrelse"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Størrelse (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Programvare"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Oppdater lister…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
#, fuzzy
msgid "Updates"
msgstr "Oppdater lister"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Versjon"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Venter på at <em>opkg %h</em>-kommando fullføres…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "ukjent"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
msgstr ""
diff --git a/applications/luci-app-opkg/po/pl/opkg.po b/applications/luci-app-opkg/po/pl/opkg.po
index 0d6becb9f3..0e789cbb28 100644
--- a/applications/luci-app-opkg/po/pl/opkg.po
+++ b/applications/luci-app-opkg/po/pl/opkg.po
@@ -15,19 +15,23 @@ msgstr ""
"|| n%100>=20) ? 1 : 2;\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"
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"
msgstr "Automatycznie usuwaj nieużywane zależności"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Dostępne"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -40,61 +44,75 @@ msgstr ""
"Konfiguracja w innych plikach może zostać zmieniona, ale zwykle nie jest "
"zachowywana przez <em>sysupgrade</em>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Anuluj"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "Wyczyść"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "Skonfiguruj opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Zależności"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Opis"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Szczegóły pakietu <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "Odrzuć"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "Wyświetlanie %d-%d z %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Pobierz i zainstaluj pakiet"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "Błędy"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "Uruchamianie menedżera pakietów"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Filtr"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Wolna przestrzeń"
@@ -102,20 +120,28 @@ msgstr "Wolna przestrzeń"
msgid "Grant access to opkg management"
msgstr "Udziel dostępu do zarządzania opkg"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Instaluj"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Zainstalowane"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -123,154 +149,160 @@ msgstr ""
"Instalowanie pakietów z niezaufanych źródeł jest potencjalnym zagrożeniem "
"bezpieczeństwa! Czy na pewno chcesz zainstalować pakiet <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Zainstaluj.…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "Wczytywanie danych konfiguracyjnych…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Ładowanie informacji o pakietach…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Ręczna instalacja pakietu"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Wymaga aktualizacji"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Następna strona"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "Brak dostępnych informacji"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "Brak pakietów"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Brak pasujących pakietów \"<strong>%h</strong>\"."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "Niedostępne"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "Nie zainstalowano"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "OK"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "Konfiguracja OPKG"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "Nadpisz pliki z innych pakietów"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Nazwa pakietu"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Nazwa pakietu lub adres URL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "Poprzednia strona"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "Czy na pewno chcesz zainstalować pakiet <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Usuń"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "Usuń pakiet <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Usuń…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "Wymaga ok. %.1024mB miejsca i instalacji %d pakietów."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Wymaga ok. %1024mB miejsca i instalacji %d 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:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "Wymagana wersja %h %h, zainstalowano %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
"Wymagana zależność <em>%h</em> nie jest dostępna w żadnym repozytorium."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Wymaga aktualizacji do %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Resetuj"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Zapisz"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Zapisywanie danych konfiguracyjnych…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Rozmiar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Rozmiar (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Oprogramowanie"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr ""
"Polecenie <em>opkg %h</em> zakończyło się niepomyślnie z kodem <code>%d</"
"code>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -278,12 +310,12 @@ msgstr ""
"Zainstalowana wersja pakietu <em>%h</em> nie jest zgodna, wymaga %s podczas "
"gdy %s jest zainstalowana."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
"Pakiet <em>%h</em> nie jest dostępny w żadnym skonfigurowanym repozytorium."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -291,69 +323,87 @@ msgstr ""
"Wersja pakietu w repozytorium <em>%h</em> nie jest zgodna, wymaga %s ale "
"tylko %s jest dostępna."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Wpisz, aby przefiltrować…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Nie można wykonać polecenia <em>opkg %s</em>: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "Nie można odczytać %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "Nie można zapisać %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Aktualizuj listy…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Aktualizacje"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Zaktualizuj…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Prześlij pakiet…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Wersja"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Wersja niekompatybilna"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Oczekiwanie na <em>opkg %h</em> i wykonanie polecenia…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "nieznane"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB skompresowany"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB skompresowany"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB zainstalowany"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB zainstalowany"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Nadpisz pliki z innych pakietów"
#~ msgid ""
#~ "Require version %h %h,\n"
diff --git a/applications/luci-app-opkg/po/pt/opkg.po b/applications/luci-app-opkg/po/pt/opkg.po
index 4f9733421e..d4bf00c8b0 100644
--- a/applications/luci-app-opkg/po/pt/opkg.po
+++ b/applications/luci-app-opkg/po/pt/opkg.po
@@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\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"
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"
msgstr "Remover automaticamente dependências não utilizadas"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Disponível"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -39,61 +43,75 @@ msgstr ""
"configuração dos outros ficheiros pode ser alterada mas geralmente não é "
"preservada pelo <em>sysupgrade</em>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Cancelar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "Limpar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "Configurar opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Dependências"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Descrição"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Detalhes do pacote <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "Dispensar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "A mostrar %d-%d de %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Descarregar e instalar o pacote"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "Erros"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "A executar o gestor de pacotes"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Filtro"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Espaço livre"
@@ -101,20 +119,28 @@ msgstr "Espaço livre"
msgid "Grant access to opkg management"
msgstr "Conceder acesso à gestão do opkg"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Instalar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Instalado"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -122,154 +148,160 @@ msgstr ""
"Instalar pacotes de fontes desconhecidas é uma potencial falha de segurança! "
"Pretende mesmo tentar instalar <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Instalar…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "A carregar os dados de configuração…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "A carregar informações do pacote…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Instalar pacote manualmente"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Precisa de ser atualizado"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Próxima página"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "Não há informação disponível"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "Não há pacotes"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Não há pacotes com correspondência a \"<strong>%h</strong>\"."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "Não disponível"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "Não instalado"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "OK"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "Configuração do OPKG"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "Substituir ficheiros de outro(s) pacote(s)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Nome do pacote"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Nome do pacote ou URL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "Página anterior"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "Tentar mesmo a instalação de <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Remover"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "Remover o pacote <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Remover…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "Requere aprox. %.1024mB de espaço para a instalação de %d pacote(s)."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Requere aprox. %1024mB de espaço para a instalação de %d pacote(s)."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "Requere a versão %h %h, instalada %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
"O pacote dependência <em>%h</em> requerido não se encontra disponível em "
"nenhum repositório."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Requer a atualização de %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Reset"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Guardar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "A guardar dados de configuração…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Tamanho"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Tamanho (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Software"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr ""
"O comando <em>opkg %h</em> falhou com o código de erro <code>%d</code>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -277,13 +309,13 @@ msgstr ""
"A versão instalada do pacote <em>%h</em> não é compatível, é necessária a %s "
"enquanto a %s está instalada."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
"O pacote <em>%h</em> não se encontra disponível em nenhum dos repositórios "
"configurados."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -291,66 +323,84 @@ msgstr ""
"A versão do pacote <em>%h</em> do repositório não é compatível, é necessária "
"a %s mas apenas a %s está disponível."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Escreva para filtrar…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Incapaz de executar o comando <em>opkg %s</em>: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "Incapaz de ler %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "Incapaz de gravar %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Atualizar listas…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Atualizações"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Atualizar…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Enviar pacote…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Versão"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Versão incompatível"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "A aguardar que o comando <em>opkg %h</em> termine…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "desconhecido"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB comprimidos"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB comprimidos"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB instalados"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB instalados"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Substituir ficheiros de outro(s) pacote(s)"
diff --git a/applications/luci-app-opkg/po/pt_BR/opkg.po b/applications/luci-app-opkg/po/pt_BR/opkg.po
index 7ff444199a..e268be3322 100644
--- a/applications/luci-app-opkg/po/pt_BR/opkg.po
+++ b/applications/luci-app-opkg/po/pt_BR/opkg.po
@@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\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"
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"
msgstr "Remover automaticamente dependentes não-utilizados"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Disponível"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -39,61 +43,75 @@ msgstr ""
"configurações em outros arquivos podem ser alterados, mas normalmente não "
"são preservados por <em>sysupgrade</em>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Cancelar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "Limpar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "Configurar o opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Dependentes"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Descrição"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Detalhes para o pacote <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "Dispensar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "Exibindo %d-%d de %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Baixe e instale o pacote"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "Erros"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "Executando o gerenciador de pacotes"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Filtro"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Espaço livre"
@@ -101,20 +119,28 @@ msgstr "Espaço livre"
msgid "Grant access to opkg management"
msgstr "Conceder acesso ao gerenciador opkg"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Instalar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Instalado"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -122,155 +148,160 @@ msgstr ""
"Instalar pacotes de fontes não confiáveis é um risco de segurança em "
"potencial! Realmente deseja tentar a instalação de <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Instalar…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "Carregando dados de configuração…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Carregando informações de pacotes…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Instalar o pacote manualmente"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Precisa de atualização"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Próxima página"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "Nenhuma informação disponível"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "Sem pacotes"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Não há pacotes que correspondam a \"<strong>%h</strong>\"."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "Não disponível"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "Não instalado"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "OK"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "Configuração do OPKG"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "Sobrescrever arquivos de outro(s) pacote(s)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Nome do Pacote"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Nome do pacote ou URL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "Página anterior"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "Realmente tentar instalar <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Remover"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "Remover o pacote <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Remover…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-"Requer aprox. %.1024mB de tamanho para que o(s) pacote(s) %d sejam "
-"instalados."
+"Requer aprox. %1024mB de tamanho para que o(s) pacote(s) %d sejam instalados."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "Requer a versão%h %h, instalada %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
"Requer o pacote <em>%h</em> para suprir uma dependência que não está "
"disponível em nenhum repositório."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Requer uma atualização para %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Limpar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Salvar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Salvando os dados de configuração…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Tamanho"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Tamanho (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Software"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "O comando <em>opkg %h</em> falhou com o código <code>%d</code>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -278,13 +309,13 @@ msgstr ""
"A versão instalada do pacote <em>%h</em> não é compatível, requer o %s "
"enquanto o %s estiver instalado."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
"O pacote <em>%h</em> não está disponível em nenhum repositório previamente "
"configurado."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -292,66 +323,84 @@ msgstr ""
"A versão do repositório do pacote <em>%h</em> não é compatível, requer o %s "
"mas apenas o %s está disponível."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Digite para filtrar…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Impossível executar o comando <em>opkg %s</em> : %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "Impossível ler %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "Impossível salvar %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Atualizar listas…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Atualizações"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Atualizar…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Enviar Pacote…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Versão"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Versão incompatível"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Aguardando a conclusão do comando <em>opkg %h</em>…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "desconhecido"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB comprimido"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB comprimido"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB instalado"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB instalado"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Sobrescrever arquivos de outro(s) pacote(s)"
diff --git a/applications/luci-app-opkg/po/ro/opkg.po b/applications/luci-app-opkg/po/ro/opkg.po
index a46573bb3c..349107b5e2 100644
--- a/applications/luci-app-opkg/po/ro/opkg.po
+++ b/applications/luci-app-opkg/po/ro/opkg.po
@@ -13,19 +13,23 @@ msgstr ""
"20)) ? 1 : 2;\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"
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"
msgstr "Eliminați automat dependențele neutilizate"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Disponibile"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -38,61 +42,75 @@ msgstr ""
"Configurația din celelalte fișiere poate fi modificată, dar de obicei nu "
"este păstrată de <em>sysupgrade</em>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Anulare"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "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…"
msgstr "Configurați opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Dependențe"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Descriere"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Detalii pentru pachetul <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "Închideți"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "Se afișează %d-%d din %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "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"
msgstr "Erori"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "Executarea managerului de pachete"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Filtru"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Spațiu liber"
@@ -100,20 +118,28 @@ msgstr "Spațiu liber"
msgid "Grant access to opkg management"
msgstr "Acordați acces la gestionarea opkg"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "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:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Instalat"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -121,153 +147,159 @@ msgstr ""
"Instalarea de pachete din surse nesigure reprezintă un potențial risc de "
"securitate! Încercați cu adevărat să instalați <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
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…"
msgstr "Se încarcă datele de configurare…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Se încarcă informațiile despre pachet…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Instalați manual pachetul"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Necesită actualizare"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Pagina următoare"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "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"
msgstr "Fără pachete"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "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"
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"
msgstr "Nu este instalat"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "OK"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "Configurația OPKG"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-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
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Numele pachetului"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Numele pachetului sau URL-ul…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "Pagina anterioară"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "Sigur doriți să instalați <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Eliminați"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "Eliminați pachetul <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Eliminați…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "Este necesar aproximativ %.1024mB pentru instalarea a %d pachete(e)."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Este necesar aproximativ %1024mB pentru instalarea a %d pachete(e)."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "Necesită versiunea %h %h, instalată %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
"Pachetul de dependență necesar <em>%h</em> nu este disponibil în niciun "
"depozit."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Necesită actualizare la %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Resetați"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Salvați"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Se salvează datele de configurare…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Mărime"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Dimensiune (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Software"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "Comanda <em>opkg %h</em> a eșuat cu codul <code>%d</code>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -275,11 +307,11 @@ msgstr ""
"Versiunea instalată a pachetului <em>%h</em> nu este compatibilă, necesită "
"%s cât timp este instalat %s."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "Pachetul <em>%h</em> nu este disponibil în niciun depozit configurat."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -287,66 +319,84 @@ msgstr ""
"Versiunea din depozit a pachetului <em>%h</em> nu este compatibilă, este "
"necesar %s dar numai %s este disponibil."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Tastați pentru a filtra…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Nu se poate executa comanda <em>opkg %s</em>: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "Nu se poate citi %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "Nu se poate salva %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Actualizați listele…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Actualizări"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Faceți upgrade…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Încărcați pachetul…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Versiunea"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Versiune incompatibilă"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "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:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "necunoscut"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB comprimat"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB comprimat"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB instalat"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB instalat"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Suprascrierea fișierelor din alt(e) pachet(e)"
diff --git a/applications/luci-app-opkg/po/ru/opkg.po b/applications/luci-app-opkg/po/ru/opkg.po
index f42e0d6a72..783b66e7b5 100644
--- a/applications/luci-app-opkg/po/ru/opkg.po
+++ b/applications/luci-app-opkg/po/ru/opkg.po
@@ -16,19 +16,23 @@ msgstr ""
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "Действия"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr "Удалить неиспользуемые зависимости"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Доступно"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -41,61 +45,75 @@ msgstr ""
"Конфигурация в других файлах может производится, но такие настройки могут не "
"сохраняться утилитой <em>sysupgrade</em>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Отмена"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "Очистить"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "Настройки"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Зависимости"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Описание"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Подробная информация о пакете <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "Закрыть"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "Показано %d-%d из %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Загрузить и установить пакет"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "Ошибки"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "Выполнение..."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Фильтр"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Свободное место"
@@ -103,20 +121,28 @@ msgstr "Свободное место"
msgid "Grant access to opkg management"
msgstr "Предоставить доступ к управлению opkg"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Установить"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Установлено"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -124,154 +150,160 @@ msgstr ""
"Установка пакетов из недоверенных источников может привести к угрозе "
"безопасности! Вы действительно хотите установить <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Установить…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "Загрузка данных конфигурации…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Загрузка информации о пакете…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Ручная установка пакета"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Требуется обновление"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Следующая страница"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "Нет доступной информации"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "Нет пакетов"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Нет пакетов соответствующих запросу «<strong>%h</strong>»."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "Не доступно"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "Не установлено"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "OK"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "Настройка OPKG"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "Переписать файлы для других пакетов"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Имя пакета"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Имя пакета или URL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "Предыдущая страница"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "Вы действительно хотите установить <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Удалить"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "Удалить пакет <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Удалить…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-"Требуется примерно %.1024mБ свободного пространства для установки %d пакетов."
+"Требуется примерно %1024mБ свободного пространства для установки %d пакетов."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "Требуемая версия %h %h, установлена %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
"Требуемый в качестве зависимости пакет <em>%h</em> не доступен ни в одном из "
"сконфигурированных репозиториев."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Требуется обновить до %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Очистить"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Сохранить"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Сохранение данных конфигурации…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Размер"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Размер (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Менеджер пакетов"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "Команда <em>opkg %h</em> завершилась с кодом ошибки <code>%d</code>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -279,12 +311,12 @@ msgstr ""
"Установленная версия пакета <em>%h</em> не совместима. Требуется версия %s, "
"а установлена %s."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
"Пакет <em>%h</em> не доступен ни в одном из сконфигурированных репозиториев."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -292,69 +324,87 @@ msgstr ""
"Версия пакета <em>%h</em>, доступная в репозитории, несовместима. Требуется "
"%s, но доступна только %s."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Введите для фильтрации"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Не удалось выполнить команду <em>opkg %s</em>: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "Не удалось прочитать %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "Не удалось сохранить %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Обновить списки"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Обновления"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Обновление…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Загрузить пакет"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Версия"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Версия несовместима"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Выполнение команды <em>opkg %h</em>…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "неизвестный"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mБ сжато"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mБ сжато"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mБ установлено"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mБ установлено"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Переписать файлы для других пакетов"
#~ msgid ""
#~ "Require version %h %h,\n"
diff --git a/applications/luci-app-opkg/po/sk/opkg.po b/applications/luci-app-opkg/po/sk/opkg.po
index f802630c77..89654cc480 100644
--- a/applications/luci-app-opkg/po/sk/opkg.po
+++ b/applications/luci-app-opkg/po/sk/opkg.po
@@ -12,19 +12,23 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\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"
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"
msgstr "Automatické odstránenie nepoužitých závislostí"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Dostupný"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -36,61 +40,75 @@ msgstr ""
"vlastné položky úložiska <em>customfeeds.conf</em>. Konfigurácia v ostatných "
"súboroch sa môže zmeniť, ale zvyčajne ju <em>sysupgrade</em> nezachová."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Zrušiť"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "Vymazať"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "Konfigurovať opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Závislosti"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Popis"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Podrobnosti balíka <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "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"
msgstr "Zobrazených %d-%d z %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Prevziať a nainštalovať balík"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "Chyby"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "Spúšťanie správcu balíkov"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Filter"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Voľné miesto"
@@ -98,20 +116,28 @@ msgstr "Voľné miesto"
msgid "Grant access to opkg management"
msgstr "Poskytnite prístup k správe opkg"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Inštalovať"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Nainštalovaný"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -119,154 +145,160 @@ msgstr ""
"Inštalácia balíkov z nedôveryhodných zdrojov predstavuje potenciálne "
"bezpečnostné riziko! Naozaj sa snažíte nainštalovať <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Inštalovať…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "Načítavajú sa konfiguračné údaje …"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Načítavajú sa informácie o balíku …"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Manuálna inštalácia balíka"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Vyžaduje aktualizáciu"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Ďalšia strana"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "Nie sú dostupné žiadne informácie"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "Žiadne balíčky"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "\"<strong>%h</strong>\" nezodpovedajú žiadne balíky."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "Nie je k dispozícií"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "Nie je nainštalovaný"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "OK"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "Konfigurácia OPKG"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "Prepísať súbory z iného balíka(kov)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Názov balíka"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Názov balíka alebo URL adresa…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "Predošlá strana"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "Naozaj sa snažíte nainštalovať <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Odstrániť"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "Odstrániť balík <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Odstrániť…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-"Vyžaduje sa veľkosť cca %.1024mB pre inštaláciu balíčka(kov) %d package(s)."
+"Vyžaduje sa veľkosť cca %1024mB pre inštaláciu balíčka(kov) %d package(s)."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "Požaduje sa verzia %h %h, nainštalovaná je %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
"Požadovaný balík závislostí <em>%h</em> nie je k dispozícii v žiadnom "
"úložisku."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Požaduje sa aktualizácia na %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Obnoviť"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Uložiť"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Ukladajú sa konfiguračné údaje …"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Veľkosť"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Veľkosť (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Softvér"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "Príkaz <em>opkg %h</em> zlyhal s kódom <code>%d</code>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -274,11 +306,11 @@ msgstr ""
"Nainštalovaná verzia balíka <em>%h</em> nie je kompatibilná, požaduje sa %s, "
"zatiaľ čo nainštalovaná je %s."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "Balík <em>%h</em> nie je dostupný v žiadnom nakonfigurovanom úložisku."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -286,66 +318,84 @@ msgstr ""
"Verzia archívu balíka <em>%h</em> nie je kompatibilná, požaduje sa %s, ale "
"je k dispozícii je iba %s."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Reťazec na filtrovanie…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Nedá sa vykonať príkaz <em>opkg %s</em>: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "Nedá sa prečítať %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "Nedá sa uložiť %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Aktualizovať zoznamy…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Aktualizácie"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Inovovať…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Odovzdať balík…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Verzia"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Verzia je nekompatibilná"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Čaká sa na dokončenie príkazu <em>opkg %h</em>…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "neznámy"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB komprimované"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB komprimované"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB nainštalovaných"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB nainštalovaných"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Prepísať súbory z iného balíka(kov)"
diff --git a/applications/luci-app-opkg/po/sv/opkg.po b/applications/luci-app-opkg/po/sv/opkg.po
index 7508f2b9cb..0a35befd3f 100644
--- a/applications/luci-app-opkg/po/sv/opkg.po
+++ b/applications/luci-app-opkg/po/sv/opkg.po
@@ -12,19 +12,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "Åtgärder"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr "Ta automatiskt bort oanvända beroenden"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Tillgänglig"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -36,61 +40,75 @@ msgstr ""
"conf</em> för anpassade filförrådsposter. Konfigurationen i de andra filerna "
"kan vara ändrade, men är oftast inte reserverad av <em>sysupgrade</em>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Avbryt"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "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…"
msgstr "Ställ in opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Beroenden"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Beskrivning"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Detaljer för paketet <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "Avfärda"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "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"
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"
msgstr "Felen"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "Kör pakethanteraren"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Filtrera"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Fritt utrymme"
@@ -98,20 +116,28 @@ msgstr "Fritt utrymme"
msgid "Grant access to opkg management"
msgstr "Tillåt åtkomst till hantering av opkg"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Installera"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Installerad"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -119,151 +145,157 @@ msgstr ""
"Att installera paket från o-pålitliga källor är en potentiell säkerhetsrisk! "
"Vill du verkligen försöka installera <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Installera…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "Laddar konfigurationssidan…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Laddar paketinformationen…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Installera paket manuellt"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Behöver uppgradering"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Nästa sida"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "Ingen information tillgänglig"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "Inga paket"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Inga paket matchar \"<strong>%h</strong>\"."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "Ej tillgängligt"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "Inte installerad"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "OK"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "Konfiguration av OPKG"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-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
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Paketnamn"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or 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"
msgstr "Föregående sida"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "Vill du verkligen utföra installationen av <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Ta bort"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "Ta bort paketet <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Ta bort…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "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:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Kräver ungefär %1024mB utrymme för att %d paket(en) ska installeras."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "Kräv version %h %h, installerade %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr "Paketet som behövs <em>%h</em> är inte tillgängligt i något filförråd."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Kräver uppdatering till %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Återställ"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Spara"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Sparar konfigurationsdata…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Storlek"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Storlek (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Mjukvara"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "<em>opkg %h</em>-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 ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -271,12 +303,12 @@ msgstr ""
"Den installerade versionen av paketet <em>%h</em>är inte kompatibel, kräver "
"%s medans %s är installerat."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
"Paketet <em>%h</em> är inte tillgängligt i något konfigurerat filförråd."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -284,66 +316,84 @@ msgstr ""
"Filförrådets version av paketet <em>%h</em> är inte tillgängligt, kräver %s, "
"men endast %s är tillgänglig."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Skriv för att filtrera…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Kunde inte köra <em>opkg %</em>-kommandot: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "Kunde inte läsa %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "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…"
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"
msgstr "Uppdateringar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Uppgradera…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Ladda upp paket…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Version"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "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…"
msgstr "Väntar på att <em>opkg %h</em>-kommandot ska slutföras…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "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:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB komprimerat"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB komprimerat"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB installerat"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB installerat"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Skriv över filer från andra paket(en)"
diff --git a/applications/luci-app-opkg/po/templates/opkg.pot b/applications/luci-app-opkg/po/templates/opkg.pot
index 8e40470354..389def63fc 100644
--- a/applications/luci-app-opkg/po/templates/opkg.pot
+++ b/applications/luci-app-opkg/po/templates/opkg.pot
@@ -1,19 +1,23 @@
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -21,61 +25,75 @@ msgid ""
"changed but is usually not preserved by <em>sysupgrade</em>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr ""
@@ -83,245 +101,274 @@ msgstr ""
msgid "Grant access to opkg management"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
msgstr ""
diff --git a/applications/luci-app-opkg/po/tr/opkg.po b/applications/luci-app-opkg/po/tr/opkg.po
index 14cfc525f7..1c913cdcd7 100644
--- a/applications/luci-app-opkg/po/tr/opkg.po
+++ b/applications/luci-app-opkg/po/tr/opkg.po
@@ -13,19 +13,23 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.7-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "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"
msgstr "Kullanılmayan bağımlılıkları otomatik olarak kaldır"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Kullanılabilir"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -38,61 +42,75 @@ msgstr ""
"dosyalardaki yapılandırmalar değiştirilebilir ancak genellikle "
"<em>sysupgrade</em> tarafından korunmaz."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "İptal"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "Temizle"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "opkg'yi yapılandır…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Bağımlılıklar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Açıklama"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Paket detayları <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "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"
msgstr "Görüntülenen %d-%d toplam %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Paket indir ve yükle"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "Hatalar"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "Paket yöneticisi çalıştırılıyor"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Filtre"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Boş alan"
@@ -100,20 +118,28 @@ msgstr "Boş alan"
msgid "Grant access to opkg management"
msgstr "Opkg yönetimine erişim izni verin"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Yükle"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Yüklenenler"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -121,152 +147,158 @@ msgstr ""
"Güvenilmeyen kaynaklardan paket yüklemek, güvenlik riski oluşturabilir! Bu "
"paketi yüklemeyi gerçekten denemek istiyor musunuz <em>% h </em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "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…"
msgstr "Yapılandırma verisi yükleniyor…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Paket bilgisi yükleniyor…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Elle paket yükle"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Yükseltme gerekli"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Sonraki sayfa"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "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"
msgstr "Paket(ler) yok"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "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"
msgstr "Mevcut değil"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "Yüklenmedi"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "Tamam"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "OPKG Yapılandırması"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-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
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Paket adı"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Paket adı veya URL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "Önceki sayfa"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "Gerçekten yüklemeyi denemek istiyor musunuz <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Kaldır"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "Paketi kaldır <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Kaldır…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-"%d paket(ler)ini yüklemek için yaklaşık %.1024mB boyutunda alan gerekli."
+"%d paket(ler)ini yüklemek için yaklaşık %1024mB boyutunda alan gerekli."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "Gereken sürüm %h %h, yüklü olan %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr "Gerekli olan bağımlılık paketi <em>%h</em> hiçbir depoda mevcut değil."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Şu sürüme güncellenmesi gerekiyor %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Sıfırla"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Kaydet"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Yapılandırma verisi kaydediliyor…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Boyut"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Boyut (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Yazılım"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "<em>opkg %h</em> komutu <code>%d</code> koduyla başarısız oldu."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -274,11 +306,11 @@ msgstr ""
"Yüklü olan <em>%h</em> paketinin sürümü uyumlu değil. Gerekli olan %s iken, "
"%s sürümü yüklü."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "<em>%h</em> paketi yapılandırılmış depoların hiçbirinde mevcut değil."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -286,66 +318,84 @@ msgstr ""
"<em>%h</em> paketinin depo bulunan sürümü uyumlu değil. Gerekli olan %s iken "
"sadece %s sürümü mevcut."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Filtrelemek için yazın…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "<em>opkg %s</em> komutu çalıştırılamıyor: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "Okunamıyor %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "Kaydedilemiyor %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Listeyi güncelle…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Güncellemeler"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Yükselt…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Paket Yükle…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Sürüm"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Sürüm uyumsuz"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "<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:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "bilinmeyen"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB sıkıştırıldı"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB sıkıştırıldı"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB yüklendi"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB yüklendi"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Diğer paket(ler)in dosyalarının üzerine yaz"
diff --git a/applications/luci-app-opkg/po/uk/opkg.po b/applications/luci-app-opkg/po/uk/opkg.po
index 5c0a49bc48..e90d61d0bd 100644
--- a/applications/luci-app-opkg/po/uk/opkg.po
+++ b/applications/luci-app-opkg/po/uk/opkg.po
@@ -13,19 +13,23 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\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"
msgstr "Дії"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr "Автоматичне видалення невикористовуваних залежностей"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Доступно"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -38,61 +42,75 @@ msgstr ""
"інших файлах може бути змінено, але вона зазвичай не зберігається при "
"<em>оновленні системи</em>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "Скасувати"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "Очистити"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "Налаштування opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "Залежності"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Опис"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "Подробиці про пакет <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "Закрити"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "Відображається %d-%d із %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "Завантажити та інсталювати пакети"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "Помилки"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "Виконання менеджера пакетів"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Фільтр"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "Вільне місце"
@@ -100,20 +118,28 @@ msgstr "Вільне місце"
msgid "Grant access to opkg management"
msgstr "Надати доступ до керування opkg"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Інсталювати"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "Інстальовано"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -121,153 +147,159 @@ msgstr ""
"Інсталяція пакетів з ненадійних джерел є потенційною загрозою безпеці! "
"Дійсно спробувати інсталювати <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "Інсталювати…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "Завантаження даних конфігурації…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "Завантаження інформації про пакети…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "Інсталяція пакета вручну"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "Потребує оновлення"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "Наступна сторінка"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "Інформація відсутня"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "Немає пакетів"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "Немає пакетів, що відповідають \"<strong>%h</strong>\"."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "Недоступно"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "Не інстальовано"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "OK"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "Конфігурація OPKG"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "Перезаписати файли з інших пакетів"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Назва пакунку"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "Назва пакунка чи URL-адреса…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "Попередня сторінка"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "Дійсно спробувати інсталювати <em>%h</em>?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "Видалити"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "Видалити пакет <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Видалити…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "Потрібно приблизно %.1024mB для інсталяції %d пакетів."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Потрібно приблизно %1024mB для інсталяції %d пакетів."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "Потрібна версія %h %h, інстальовано %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
"Необхідний за залежністю пакет <em>%h</em> не доступний ні в одному "
"репозиторії."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "Потрібно оновити до %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Скинути"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Зберегти"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "Збереження даних конфігурації…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Розмір"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "Розмір (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "Програмне забезпечення"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "Помилка виконання команди <em>opkg %h</em> з кодом <code>%d</code>."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
@@ -275,12 +307,12 @@ msgstr ""
"Інстальована версія пакета <em>%h</em> несумісна, потрібно %s, а "
"інстальовано %s."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
"Пакет <em>%h</em> не доступний ні в одному сконфігурованому репозиторії."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -288,66 +320,84 @@ msgstr ""
"Версія пакету <em>%h</em> у репозиторії несумісна, потрібно %s, але доступна "
"лише %s."
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "Введіть текст для фільтра…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "Не вдалося виконати команду <em>opkg %s</em>: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "Не вдалося прочитати %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "Не вдалося зберегти %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "Оновити списки…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "Оновлення"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "Оновлення…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "Відвантажити пакет…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Версія"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "Несумісна версія"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "Очікуємо завершення виконання команди <em>opkg %h</em> …"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "невідомо"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB стиснуто"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB стиснуто"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB інстальовано"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB інстальовано"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Перезаписати файли з інших пакетів"
diff --git a/applications/luci-app-opkg/po/ur/opkg.po b/applications/luci-app-opkg/po/ur/opkg.po
index a5c179efcc..a4eb271c0f 100644
--- a/applications/luci-app-opkg/po/ur/opkg.po
+++ b/applications/luci-app-opkg/po/ur/opkg.po
@@ -10,19 +10,23 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.14-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "اعمال"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr "غیر استعمال شدہ انحصار کو خود بخود ہٹا دیں"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "موجود"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -35,61 +39,75 @@ msgstr ""
"کنفیگریشن کو تبدیل کیا جا سکتا ہے لیکن عام طور پر <em>sysupgrade</em> کے "
"ذریعے محفوظ نہیں کیا جاتا ہے۔"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "کینسل"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "کلیر"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "opkg کو ترتیب دیں…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "انحصار"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "تفصیل"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "پیکیج <em>%h</em> کی تفصیلات"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "مسترد کریں"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "%d میں سے %d-%d ڈسپلے ہو رہا ہے"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "پیکیج ڈاؤن لوڈ اور انسٹال کریں"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "غلطیاں"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "پیکج مینیجر پر عمل درآمد ہو رہا"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "فلٹر"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "خالی جگہ"
@@ -97,20 +115,28 @@ msgstr "خالی جگہ"
msgid "Grant access to opkg management"
msgstr "opkg مینجمنٹ تک رسائی فراہم کریں"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "انسٹال کریں"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "نصب خدمات"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
@@ -118,163 +144,169 @@ msgstr ""
"غیر بھروسہ مند ذرائع سے پیکجز انسٹال کرنا ایک ممکنہ سیکورٹی رسک ہے! واقعی "
"انسٹال کرنے کی کوشش کریں <em>%h</em>؟"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "انسٹال کریں…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "کنفیگریشن ڈیٹا لوڈ ہو رہا ہے…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "پیکیج کی معلومات لوڈ ہو رہی ہے…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
#, fuzzy
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "دستی طور پر پیکیج انسٹال کریں"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "اپ گریڈ کی ضرورت ہے"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "اگلا صفحہ"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "کوئی معلومات دستیاب نہیں"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "کوئی پیکجز نہیں"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "\"<strong>%h</strong>\" سے مماثل کوئی پیکیج نہیں ہے۔"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "دستیاب نہیں ہے"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "انسٹال نہیں ہے"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "ٹھیک ہے"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "OPKG کنفیگریشن"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "دوسرے پیکجوں سے فائلوں کو اوور رائٹ کریں"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "پیکیج کا نام"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "پیکیج کا نام یا URL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "پچھلا صفحہ"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "واقعی انسٹال کرنے کی کوشش کریں <em>%h</em>؟"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "ہٹا دیا"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "پیکیج <em>%h</em> کو ہٹا دیں"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "الگ کرنا…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "لگ بھگ کی ضرورت ہے۔ انسٹال کرنے کے لیے %d پیکجز کے لیے %.1024mB سائز۔"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "لگ بھگ کی ضرورت ہے۔ انسٹال کرنے کے لیے %d پیکجز کے لیے %1024mB سائز۔"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "ورژن %h %h، انسٹال کردہ %h کی ضرورت ہے"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr "مطلوبہ انحصار پیکج <em>%h</em> کسی بھی ذخیرہ میں دستیاب نہیں ہے"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "%h %h تک اپ ڈیٹ کی ضرورت ہے"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "دوبارہ ترتیب دیں"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
#, fuzzy
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "کنفیگریشن ڈیٹا محفوظ ہو رہا ہے…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "سائز"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "سائز(.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "سافٹ ویئر"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "<em>opkg %h</em> کمانڈ <code>%d</code> کوڈ کے ساتھ ناکام ہوگئی۔"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr "<em>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."
msgstr "پیکیج <em>%h</em> کسی بھی ترتیب شدہ ذخیرہ میں دستیاب نہیں ہے"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
@@ -282,66 +314,84 @@ msgstr ""
"پیکیج <em>%h</em> کا ذخیرہ ورژن مطابقت نہیں رکھتا، %s کی ضرورت ہے لیکن صرف "
"%s دستیاب ہے۔"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "فلٹر کرنے کے لیے ٹائپ کریں…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "<em>opkg %s</em> کمانڈ پر عمل کرنے سے قاصر: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "پڑھنے سے قاصر%s: s%"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "%s پڑھنے سے قاصر: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "فہرستوں کو اپ ڈیٹ کریں…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "تازہ ترین"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "اپ گریڈ…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "پیکج اپ لوڈ کریں…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
msgstr ""
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "دوسرے پیکجوں سے فائلوں کو اوور رائٹ کریں"
diff --git a/applications/luci-app-opkg/po/vi/opkg.po b/applications/luci-app-opkg/po/vi/opkg.po
index c7dd187b10..83f762d13d 100644
--- a/applications/luci-app-opkg/po/vi/opkg.po
+++ b/applications/luci-app-opkg/po/vi/opkg.po
@@ -14,19 +14,23 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "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"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "Sẵn có"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -34,63 +38,77 @@ msgid ""
"changed but is usually not preserved by <em>sysupgrade</em>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "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"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
#, fuzzy
msgid "Configure opkg…"
msgstr "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"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "Mô tả"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "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
msgid "Errors"
msgstr "Lỗi"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "Lọc"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr ""
@@ -98,254 +116,283 @@ msgstr ""
msgid "Grant access to opkg management"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "Cài đặt "
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
#, fuzzy
msgid "Installed"
msgstr "Cài đặt "
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
#, fuzzy
msgid "Install…"
msgstr "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
msgid "Loading configuration data…"
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…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
#, fuzzy
msgid "Manually install package"
msgstr "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"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
#, fuzzy
msgid "No packages"
msgstr "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>\"."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
#, fuzzy
msgid "Not available"
msgstr "(%s 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
msgid "Not installed"
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"
msgstr "OK "
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
#, fuzzy
msgid "OPKG Configuration"
msgstr "Cấu hình OPKG-"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "Tên gói"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
#, fuzzy
msgid "Package name or URL…"
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"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "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>"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "Loại bỏ…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "Reset"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "Lưu"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "Dung lượng "
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "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>."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "Phiên bản"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
msgstr ""
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
msgstr ""
diff --git a/applications/luci-app-opkg/po/zh_Hans/opkg.po b/applications/luci-app-opkg/po/zh_Hans/opkg.po
index 8b4be3c8f6..01f19de696 100644
--- a/applications/luci-app-opkg/po/zh_Hans/opkg.po
+++ b/applications/luci-app-opkg/po/zh_Hans/opkg.po
@@ -16,19 +16,23 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\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"
msgstr "操作"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr "自动移除未使用的依赖"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "可用"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
@@ -39,61 +43,75 @@ msgstr ""
"置,<em>customfeeds.conf</em> 用于自定义仓库。其他配置文件的变更在<em>系统升"
"级</em>时默认不被保留。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "取消"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "清除"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "配置 opkg…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "依赖"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "描述"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "软件包 <em>%h</em> 详情"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "关闭"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "正在显示 %d-%d,共 %d"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "下载并安装软件包"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "错误"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "正在执行软件包管理器"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "筛选器"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "空闲空间"
@@ -101,248 +119,280 @@ msgstr "空闲空间"
msgid "Grant access to opkg management"
msgstr "授予访问 opkg 管理的权限"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "安装"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "已安装"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
msgstr "从未信任的源安装软件包有潜在的安全隐患!您确定要安装 <em>%h</em> 吗?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "安装…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "载入配置数据…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "载入软件包信息…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "手动安装软件包"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "需要升级"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "下一页"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "无可用信息"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "没有软件包"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "没有匹配“<strong>%h</strong>”的软件包。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "不可用"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "未安装"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "确认"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "OPKG 配置"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "覆盖其他软件包中的文件"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "软件包名称"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "软件包名称或 URL…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "上一页"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "确定要安装 <em>%h</em> 吗?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "移除"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "移除软件包 <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "移除…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "需要大约 %.1024mB 空间来安装 %d 个软件包。"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "需要大约 %1024mB 空间来安装 %d 个软件包。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "需要 %h %h 版本,已安装 %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr "依赖的软件包 <em>%h</em> 在所有仓库都未提供。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "需要更新到 %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "复位"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "保存"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "正在保存配置数据…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "大小"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "大小(.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "软件包"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "<em>opkg %h</em> 命令失败,代码 <code>%d</code>。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr "已安装的软件包 <em>%h</em> 版本不兼容,需要 %s 而 %s 已安装。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "软件包 <em>%h</em> 在所有已配置的仓库中都不存在。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
msgstr "软件包 <em>%h</em> 在仓库中的版本不兼容,需要 %s 但仅可提供 %s。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "输入以筛选…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "无法执行 <em>opkg %s</em> 命令:%s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "无法读取 %s:%s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "无法保存 %s:%s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "更新列表…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "更新"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "升级…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "上传软件包…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "版本"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "版本不兼容"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "等待命令 <em>opkg %h</em> 执行完成…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "未知"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB 已压缩"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB 已压缩"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB 已安装"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB 已安装"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "覆盖其他软件包中的文件"
#~ msgid ""
#~ "Require version %h %h,\n"
diff --git a/applications/luci-app-opkg/po/zh_Hant/opkg.po b/applications/luci-app-opkg/po/zh_Hant/opkg.po
index 03d6bf096f..35f878e6f8 100644
--- a/applications/luci-app-opkg/po/zh_Hant/opkg.po
+++ b/applications/luci-app-opkg/po/zh_Hant/opkg.po
@@ -12,83 +12,102 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.7-dev\n"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1044
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
msgid "Actions"
msgstr "動作"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:850
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
msgid "Automatically remove unused dependencies"
msgstr "自動移除不再使用的依賴項目"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1054
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1210
msgid "Available"
msgstr "可用的"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:775
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
msgid ""
"Below is a listing of the various configuration files used by <em>opkg</em>. "
"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
"custom repository entries. The configuration in the other files may be "
"changed but is usually not preserved by <em>sysupgrade</em>."
msgstr ""
-"下面列出了 <em>opkg</em> 使用的各種組態檔;<em>opkg.conf</em> 用於全域設定,<em>customfeeds.conf</"
-"em> 則用於自訂儲存庫項目。其他組態檔的變更可能在 <em>系統升級</em> 時不會被保留。"
+"下面列出了 <em>opkg</em> 使用的各種組態檔;<em>opkg.conf</em> 用於全域設定,"
+"<em>customfeeds.conf</em> 則用於自訂儲存庫項目。其他組態檔的變更可能在 <em>系"
+"統升級</em> 時不會被保留。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:697
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:743
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:790
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:949
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
msgid "Cancel"
msgstr "取消"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1031
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
msgid "Clear"
msgstr "清除"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1048
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1159
msgid "Configure opkg…"
msgstr "設定 opkg …"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
msgid "Dependencies"
msgstr "依賴項目"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:675
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:835
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1072
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1228
msgid "Description"
msgstr "描述"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:680
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
msgid "Details for package <em>%h</em>"
msgstr "套件 <em>%h</em> 的詳細資訊"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:923
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
msgid "Dismiss"
msgstr "關閉"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:332
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1164
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1181
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
msgid "Displaying %d-%d of %d"
msgstr "正在顯示第 %d 到 %d 筆,共 %d 筆"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1036
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
msgid "Download and install package"
msgstr "下載並安裝套件包"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:901
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
msgid "Errors"
msgstr "錯誤"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
msgid "Executing package manager"
msgstr "正在執行套件包管理員"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1028
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1139
msgid "Filter"
msgstr "過濾"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1023
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1134
msgid "Free space"
msgstr "剩餘空間"
@@ -96,245 +115,277 @@ msgstr "剩餘空間"
msgid "Grant access to opkg management"
msgstr "授予存取 opkg 管理的權限"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:705
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:721
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1194
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
msgid "Install"
msgstr "安裝"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:283
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:494
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1055
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
msgid "Installed"
msgstr "已安裝"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:727
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:936
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
msgid ""
"Installing packages from untrusted sources is a potential security risk! "
"Really attempt to install <em>%h</em>?"
msgstr "從不明來源安裝套件很危險! 確定要安裝 <em>%h</em> ?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:272
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
msgid "Install…"
msgstr "安裝…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:754
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
msgid "Loading configuration data…"
msgstr "載入組態資料中…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:977
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
msgid "Loading package information…"
msgstr "載入套件資訊中…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:939
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
msgid "MD5"
msgstr "MD5"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:935
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
msgid "Manually install package"
msgstr "手動安裝套件包"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:482
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
msgid "Needs upgrade"
msgstr "需要升級"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1063
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1237
msgid "Next page"
msgstr "下一頁"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:345
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
msgid "No information available"
msgstr "無可用資訊"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:333
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
msgid "No packages"
msgstr "無套件包"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:349
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
msgid "No packages matching \"<strong>%h</strong>\"."
msgstr "沒有與 \"<strong>%h</strong>\" 相符的軟體包。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:514
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
msgid "Not available"
msgstr "無法使用"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:499
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
msgid "Not installed"
msgstr "未安裝"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1039
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
msgid "OK"
msgstr "確定"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:801
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:815
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
msgid "OPKG Configuration"
msgstr "OPKG 設定"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692
-msgid "Overwrite files from other package(s)"
-msgstr "覆蓋其他套件包的檔案"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1069
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
msgid "Package name"
msgstr "套件包名稱"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1038
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
msgid "Package name or URL…"
msgstr "套件包名稱或網址…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1061
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1217
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
msgid "Previous page"
msgstr "上一頁"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:734
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
msgid "Really attempt to install <em>%h</em>?"
msgstr "確定安裝 <em>%h</em> ?"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:864
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
msgid "Remove"
msgstr "移除"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
msgid "Remove package <em>%h</em>"
msgstr "移除套件 <em>%h</em>"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:260
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
msgid "Remove…"
msgstr "移除…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:665
-msgid "Require approx. %.1024mB size for %d package(s) to install."
-msgstr "約需 %.1024mB 的空間來安裝 %d 個套件包。"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "約需 %1024mB 的空間來安裝 %d 個套件包。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:489
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:507
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
msgid "Require version %h %h, installed %h"
msgstr "需要版本 %h %h,現已安裝 %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:512
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
msgid ""
"Required dependency package <em>%h</em> is not available in any repository."
msgstr "依賴的套件 <em>%h</em> 不存在於任何的儲存庫。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:480
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
msgid "Requires update to %h %h"
msgstr "需要更新至 %h %h"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:350
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
msgid "Reset"
msgstr "重置"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:940
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
msgid "SHA256"
msgstr "SHA256"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:812
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
msgid "Save"
msgstr "儲存"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:802
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
msgid "Saving configuration data…"
msgstr "正在儲存設定值…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:683
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:843
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
msgid "Size"
msgstr "容量"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1071
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
msgid "Size (.ipk)"
msgstr "大小 (.ipk)"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1019
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
msgid "Software"
msgstr "軟體"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:906
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
msgstr "<em>opkg%h</em> 指令執行失敗,錯誤碼<code>%d</code>。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:485
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
msgid ""
"The installed version of package <em>%h</em> is not compatible, require %s "
"while %s is installed."
msgstr "已安裝的套件 <em>%h</em> 版本不相容,要求 %s 而 %s 已安裝。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:730
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
msgid "The package <em>%h</em> is not available in any configured repository."
msgstr "套件 <em>%h</em> 在所有已設定的儲存庫中不可用。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:502
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
msgid ""
"The repository version of package <em>%h</em> is not compatible, require %s "
"but only %s is available."
msgstr "套件包 <em>%h</em> 在儲存庫中的版本不相容,要求 %s 但僅有 %s 可用。"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1141
msgid "Type to filter…"
msgstr "輸入以進行過濾…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:925
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
msgid "Unable to execute <em>opkg %s</em> command: %s"
msgstr "無法執行 <em>opkg %s</em> 指令:%s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:768
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
msgid "Unable to read %s: %s"
msgstr "無法讀取 %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:807
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
msgid "Unable to save %s: %s"
msgstr "無法儲存 %s: %s"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
msgid "Update lists…"
msgstr "更新清單…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1212
msgid "Updates"
msgstr "可升級"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:249
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:278
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
msgid "Upgrade…"
msgstr "升級…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
msgid "Upload Package…"
msgstr "上傳套件包…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:682
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:842
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1070
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1226
msgid "Version"
msgstr "版本"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:491
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:509
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
msgid "Version incompatible"
msgstr "版本不相容"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:880
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
msgid "Waiting for the <em>opkg %h</em> command to complete…"
msgstr "等待 <em>opkg %h</em> 指令完成…"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:643
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:831
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1024
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1190
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1177
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1203
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
msgid "unknown"
msgstr "未知"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:829
-msgid "~%.1024mB compressed"
-msgstr "~%.1024mB 已壓縮"
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB 已壓縮"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB 已安裝"
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:827
-msgid "~%.1024mB installed"
-msgstr "~%.1024mB 已安裝"
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "覆蓋其他套件包的檔案"